Skip to content

Commit

Permalink
fixed routing
Browse files Browse the repository at this point in the history
  • Loading branch information
woodp committed Jun 26, 2018
1 parent f919b6b commit f0a137d
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions hybrid-networking/hub-spoke/hub-nva.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"value": [
{
"type": "VirtualMachine",
"resourceGroupName": "hub-nva-rg",
"settings": {
"vmCount": 1,
"namePrefix": "nva",
Expand Down Expand Up @@ -46,7 +47,8 @@
},
{
"type": "RouteTable",
"settings": [
"resourceGroupName": "hub-nva-rg",
"settings":[
{
"name": "hub-gateway-rt",
"routes": [
Expand All @@ -56,8 +58,13 @@
"nextHop": "VnetLocal"
},
{
"name": "toSpokes",
"addressPrefix": "0.0.0.0/0",
"name": "toSpoke1",
"addressPrefix": "10.1.0.0/16",
"nextHop": "10.0.0.36"
},
{
"name": "toSpoke2",
"addressPrefix": "10.2.0.0/16",
"nextHop": "10.0.0.36"
}
],
Expand All @@ -75,7 +82,8 @@
},
{
"type": "RouteTable",
"settings": [
"resourceGroupName": "hub-nva-rg",
"settings":[
{
"name": "spoke1-rt",
"routes": [
Expand Down Expand Up @@ -105,7 +113,8 @@
},
{
"type": "RouteTable",
"settings": [
"resourceGroupName": "hub-nva-rg",
"settings":[
{
"name": "spoke2-rt",
"routes": [
Expand Down

0 comments on commit f0a137d

Please sign in to comment.