mikrotik_snippets/linux/bridge-stp.sh
2017-08-23 12:16:38 -03:00

9 lines
126 B
Bash

#
# Bridge between two interfaces.
#
brctl addbr BRNAME
brctl stp BRNAME off
brctl addif BRNAME eth1
brctl addif BRNAME eth2