From 9763154d99f7852e3fd8a50f8ecaf10b27b4ad0f Mon Sep 17 00:00:00 2001 From: Viacheslav Hletenko Date: Fri, 25 Aug 2023 12:12:29 +0000 Subject: T4825: Add interface type veth Add interface type veth (Virtual ethernet) One of the usecases it's interconnect different vrf's and default vrf via bridge set interfaces virtual-ethernet veth0 peer-name 'veth1010' set interfaces virtual-ethernet veth1010 address '10.0.0.10/24' set interfaces virtual-ethernet veth1010 peer-name 'veth0' set interfaces virtual-ethernet veth1010 vrf 'foo' set interfaces bridge br0 address '10.0.0.1/24' set interfaces bridge br0 member interface veth0 vyos@r1:~$ ping 10.0.0.10 count 1 PING 10.0.0.10 (10.0.0.10) 56(84) bytes of data. 64 bytes from 10.0.0.10: icmp_seq=1 ttl=64 time=0.082 ms --- python/vyos/ifconfig/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python/vyos/ifconfig/__init__.py') diff --git a/python/vyos/ifconfig/__init__.py b/python/vyos/ifconfig/__init__.py index c5d83d24b..a18e315db 100644 --- a/python/vyos/ifconfig/__init__.py +++ b/python/vyos/ifconfig/__init__.py @@ -36,4 +36,5 @@ from vyos.ifconfig.pppoe import PPPoEIf from vyos.ifconfig.wireless import WiFiIf from vyos.ifconfig.l2tpv3 import L2TPv3If from vyos.ifconfig.macsec import MACsecIf +from vyos.ifconfig.veth import VethIf from vyos.ifconfig.wwan import WWANIf -- cgit v1.2.3