Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VirtualNetworkGateway: Enabling connection on priavte ip. #8222

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@
"message": {
"type": "string",
"readOnly": true,
"description": "Optional field indicating the warning or error message related to the vm in case of partial failure"
"description": "Optional field indicating the warning or error message related to the vm in case of partial failure."
}
},
"required": [
Expand Down Expand Up @@ -682,7 +682,7 @@
},
"nextLink": {
"type": "string",
"description": "Gets or sets the URL to get the next set of results."
"description": "The URL to get the next set of results."
}
},
"description": "Response for all the Bastion Shareable Link endpoints."
Expand Down Expand Up @@ -766,7 +766,7 @@
},
"nextLink": {
"type": "string",
"description": "Gets or sets the URL to get the next set of results."
"description": "The URL to get the next set of results."
}
},
"description": "Response for GetActiveSessions."
Expand Down Expand Up @@ -802,7 +802,7 @@
},
"nextLink": {
"type": "string",
"description": "Gets or sets the URL to get the next set of results."
"description": "The URL to get the next set of results."
}
},
"description": "Response for DisconnectActiveSessions."
Expand All @@ -822,10 +822,10 @@
"items": {
"type": "string"
},
"description": "List of session ids"
"description": "List of session IDs."
}
},
"description": "List of session ids."
"description": "List of session IDs."
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"routingWeight": 0,
"sharedKey": "Abc123",
"enableBgp": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"ingressBytesTransferred": 0,
Expand Down Expand Up @@ -120,6 +121,7 @@
"routingWeight": 0,
"sharedKey": "Abc123",
"enableBgp": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"ingressBytesTransferred": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"routingWeight": 0,
"sharedKey": "Abc123",
"enableBgp": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"connectionProtocol": "IKEv1",
"routingWeight": 0,
"enableBgp": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
Expand Down Expand Up @@ -57,6 +58,7 @@
"connectionProtocol": "IKEv2",
"routingWeight": 0,
"enableBgp": false,
"useLocalAzureIpAddress": true,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"enablePrivateIpAddress": false,
"activeActive": false,
"vpnClientConfiguration": {
"vpnClientProtocols": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"enablePrivateIpAddress": false,
"activeActive": false,
"vpnClientConfiguration": {
"vpnClientProtocols": [],
Expand Down Expand Up @@ -78,6 +79,7 @@
"properties": {
"provisioningState": "Succeeded",
"privateIPAllocationMethod": "Dynamic",
"privateIPAddress": "10.1.0.7",
"publicIPAddress": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/vpngw2-ip"
},
Expand All @@ -96,6 +98,7 @@
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"enablePrivateIpAddress": true,
"activeActive": false,
"vpnClientConfiguration": {
"vpnClientProtocols": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
"enableBgp": false,
"activeActive": false,
"enableDnsForwarding": true,
"enablePrivateIpAddress": false,
"inboundDnsForwardingEndpoint": "10.0.1.14",
"vpnClientConfiguration": {
"vpnClientProtocols": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2240,6 +2240,11 @@
"$ref": "./network.json#/definitions/SubResource",
"description": "The reference to the public IP resource."
},
"privateIPAddress": {
"readOnly": true,
"type": "string",
"description": "Private IP Address for this gateway."
},
"provisioningState": {
"readOnly": true,
"$ref": "./network.json#/definitions/ProvisioningState",
Expand Down Expand Up @@ -2322,6 +2327,10 @@
"type": "boolean",
"description": "Whether BGP is enabled for this virtual network gateway or not."
},
"enablePrivateIpAddress": {
"type": "boolean",
"description": "Whether private IP needs to be enabled on this gateway for connections or not."
},
"activeActive": {
"type": "boolean",
"description": "ActiveActive flag."
Expand Down Expand Up @@ -2898,6 +2907,10 @@
"type": "boolean",
"description": "EnableBgp flag."
},
"useLocalAzureIpAddress": {
nalinrajgupta marked this conversation as resolved.
Show resolved Hide resolved
"type": "boolean",
"description": "Use private local Azure IP for the connection."
},
"usePolicyBasedTrafficSelectors": {
"type": "boolean",
"description": "Enable policy-based traffic selectors."
Expand Down