Greetings,
Welcome to the Microsoft Q&A Platform. Thank you for reaching out & I hope you are doing well.
To set up the routing for your Azure networking configuration, you’ll need to define routes that guide traffic appropriately through the various components you've outlined. Here's a step-by-step approach:
- Route Table Creation
Create a route table for your VNet and define routes for the traffic flow:
Route Table 1: VNet Routing
- Subnet Association: Associate this route table with the
Vnet-SD-WAN
subnet.
Destination | Next Hop Type | Next Hop Address |
---|---|---|
0.0.0.0/0 | Internet | (Default route for internet traffic) |
0.0.0.0/0 | Internet | (Default route for internet traffic) |
10.170.3.0/26 | Virtual Appliance | <Azure Firewall IP> |
10.170.1.0/28 | Virtual Appliance | <SD-WAN VMX IP> |
192.168.0.0/16 | Virtual Appliance | <On-prem MX67 IP> |
Route Table 2: SD-WAN Routing
- Subnet Association: Associate this route table with the
Sd-wan Vmx
subnet.
Destination | Next Hop Type | Next Hop Address |
---|---|---|
0.0.0.0/0 | Internet | (Default route for internet traffic) |
0.0.0.0/0 | Internet | (Default route for internet traffic) |
192.168.0.0/16 | Virtual Network | (Direct to On-prem network) |
- Subnet Routing Associations
- Vnet-SD-WAN Subnet:
- Associate Route Table 1 with the
Vnet-SD-WAN
subnet. - SD-WAN VMX Subnet:
- Associate Route Table 2 with the
Sd-wan Vmx
subnet.
- Associate Route Table 2 with the
- Associate Route Table 1 with the
- Configuration Steps
- Create Route Tables: Use Azure Portal, CLI
- Add Routes: Add the necessary routes as per the tables above.
- Associate Route Tables: Associate the route tables with the appropriate subnets.
Once configured, test the connectivity:
- From the internet to the Application Gateway.
- From the Application Gateway to the Azure Firewall.
- From the Azure Firewall to the SD-WAN VMX.
- From the SD-WAN VMX to the On-prem MX67.
Hope this clarifies.
Thanks,
Ganesh
Please don’t forget to close the thread by clicking "Accept the answer" wherever the information provided helps you, as this can be beneficial to other community members.