Source port for TCP endpoints should be permissive

fixes https://github.com/Azure/vagrant-azure/issues/201
This commit is contained in:
bryanwb 2017-08-30 06:37:44 +07:00
Родитель 1eb1d062d7
Коммит fade1f5dbc
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -56,7 +56,7 @@
"properties": {
"description": "Enable inbound custom ports.",
"protocol": "*",
"sourcePortRange": "<%= ports %>",
"sourcePortRange": "*",
"destinationPortRange": "<%= ports %>",
"sourceAddressPrefix": "*",
"destinationAddressPrefix": "*",
@ -70,7 +70,7 @@
"properties": {
"description": "Enabled outbound custom ports.",
"protocol": "*",
"sourcePortRange": "<%= ports %>",
"sourcePortRange": "*",
"destinationPortRange": "<%= ports %>",
"sourceAddressPrefix": "*",
"destinationAddressPrefix": "*",
@ -82,4 +82,4 @@
<% end %>
]
}
}
}