openconfig/public

Missing paths for interface virtual gateway address

vsrx opened this issue · 1 comments

vsrx commented

Similar to VRRP, vendors allow configuring a virtual gateway address on interfaces and looks like we are missing support for that in OC. Our current use case is for defining a VXLAN anycast gateway address.

Arista:

interface Vlan10
   ip address 10.1.1.1/24
   ip virtual-router address 10.1.1.254

https://www.arista.com/en/um-eos/eos-varp#xx1156452

Juniper:

interfaces {
    irb {
        unit 1 {
            proxy-macip-advertisement;
            virtual-gateway-accept-data;
            family inet {
                address 10.1.1.1/24 {
                    virtual-gateway-address 10.1.1.254;
                }
            }
        }
}

https://www.juniper.net/documentation/us/en/software/junos/evpn-vxlan/topics/ref/statement/virtual-gateway-address-edit-interfaces.html

This issue is stale because it has been open 180 days with no activity. If you wish to keep this issue active, please remove the stale label or add a comment, otherwise will be closed in 14 days.