Description

I could not find any documentation around creating static VXLAN tunnels for running 23.4R2-S4.11-EVO.

Looking at the available options in configuration mode, there is "vtep-remote-interface" for which there is no public documentation.


Please provide details instructions to configure static vxlan tunnel on a router running Junos evo.

Symptoms

# set switch-options ?

Possible completions:

...

> vtep-remote-interface Remote VTEP interface

> vtep-source-interface Source layer-3 IFL for VXLAN

 

Solution

The vxlan config was removed from default-switch from 23.4R1-EVO.

So now they are available only on mac-vrf instances & virtual switch.

 

https://www.juniper.net/documentation/us/en/software/junos/evpn/topics/concept/mac-vrf-routing-instance-overview.html

 

Virtual Switch:

   test {

    instance-type virtual-switch;

    vtep-source-interface lo0.0;

    remote-vtep-list <ip>;

    vlans {

      vlan-test {

        vlan-id <>;

        interface <>;

        l3-interface <>;

        vxlan {

          vni <>;

          ingress-node-replication;

          static-remote-vtep-list <remote-vtep-ip>

        }

      }

    }

  }

Modification History

2025-08-01 : Article Created