#CONFIGURE Bridge interface brctl addbr br0 brctl stp br0 off brctl addif br0 enp3s4f1 ifconfig br0 up #EBTABLES to redirect mac addresses of incoming packets to physical device ebtables -t broute -A BROUTING -i enp3s4f1 -j redirect --redirect-target DROP #CONFIGURE static route ip route add 192.168.20.192/27 dev enp3s4f1 ip route add 192.168.20.224/27 dev enp3s4f1 #TEE packets to 192.168.100.100 iptables -t mangle -A PREROUTING -i enp3s4f1 -p udp --dport 67:68 --sport 67:68 ! -d 192.168.100.0/24 -j TEE --gateway 192.168.100.100