Azure NVA WAN Sides

Ali El Husseiny 320 Reputation points
2026-07-25T19:06:45.3566667+00:00

I am looking to design my Azure NVA and for the egress part i am looking to segregate two kinds of traffic : my on prem traffic (IPSEC) and my in/out traffic to internet , thus we are talking about two public ip addresses here .

My concern is which of the below options are the best practice for this design :

  1. Attaching the two wan-network interface cards to the same wan subnet of my NVA which both are associated with a public ip address , having a one route table pointing default route to Internet
  2. Attaching each wan-network interface card of my NVA to its own wan subnet in the hub vnet , having two route tables pointing default route to Internet

Thanks for advising and if you have anything I have missed it out most appreciated !

Azure Virtual Network
Azure Virtual Network

An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.

0 comments No comments

3 answers

Sort by: Most helpful
  1. kagiyama yutaka 5,165 Reputation points
    2026-07-26T05:36:40.7+00:00

    I think the two WAN‑NICs should stay in separate subnets with separate UDRs, and this keeps each NIC tied to one stable source IP, which many IPsec gateways and Internet firewalls rely on for policy matching. Azure’s subnet‑level routing makes this the simplest way to keep both paths predictable.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  2. Marcin Policht 106.3K Reputation points MVP Volunteer Moderator
    2026-07-25T22:06:30.2733333+00:00

    AFAIK, in general, the recommended approach is to place each WAN-facing network interface in its own dedicated subnet. This provides better traffic isolation, clearer routing boundaries, and simplifies applying different UDRs, NSGs, and monitoring policies for each traffic type. It also makes future troubleshooting and expansion easier.

    Using two WAN interfaces in the same subnet is generally supported by Azure if the NVA vendor supports multiple NICs on the same network segment, but it offers little benefit. Both interfaces share the same routing domain, making it more difficult to enforce separate routing policies or independently manage IPsec and Internet traffic. It can also complicate asymmetric routing scenarios if traffic inadvertently leaves through a different interface than it arrived on.

    If your goal is to segregate on-premises IPsec traffic from Internet ingress/egress, consider assigning each WAN interface to its own subnet. The NVA can then use separate routing policies or policy-based routing internally, while Azure UDRs direct the appropriate traffic to the correct interface. This design aligns with the principle of separating trust boundaries and is generally easier to operate in production.

    However, the final design should also follow your NVA vendor's reference architecture, as some appliances have specific requirements or recommendations for multi-NIC deployments, asymmetric routing, and source NAT. Vendor guidance whould take precedence where it differs from generic Azure networking practices.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    Was this answer helpful?

    1 person found this answer helpful.

  3. Vipulkumar Patel 0 Reputation points
    2026-07-27T07:43:02.5966667+00:00

    Hi Ali Husseiny,

    1. Keep both WAN interface on separate subnets will gives you more control for traffic management, granular using NSG
    2. Better control on NVA NAT configuration and Routing

    For deployment, follow NVA OEM reference architecture; using the same appliance for north-south and east-west traffic is referred to combined or common firewall architecture. Since you are trying to use combined architecture on a single device/pair of devices, use segmentation for traffic separation and control on Azure as well as NVA.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.