Forum Discussion
Virtual Network Gateway
https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-coexist-resource-manager
Thanks for your response.
Basically we wanted to achieve as shown in below:
With out forcing the traffic to PAFW I can successfully establish the tunnel. Spoke to Spoke communication also working as expected. But I wanted force the traffic PA first then pass on to VPNGW in order to establish the tunnel. Similarly from outbound after VPN lands on VPNGW it should be pass thru PAFW.
- ChrisBradshawJan 27, 2022Iron Contributor
Have you implemented any User-defined routes here? I would suggest that your spoke subnets might need a default route where the next hop is the Virtual Appliance address of the firewall. The firewall in turn would then have a next hop of the VPN connection:
Some details on User Defined Routes here: https://docs.microsoft.com/en-us/azure/virtual-network/virtual-networks-udr-overview
- ramakrishnanvFeb 05, 2022Copper ContributorYes Chris,
Placed the UDR with default route done at the spoke. Found the issue. there should be another route in the NVA(PAFW) has to be in place which pointing to Gatewaysubnet default gateway IP(in our case 10.0.0.1 < subnet 1st ip>) , so that traffic would be pick up by VPN gateway in order to encrypt and send them over to internet. Thanks for your response.