Вы находитесь на странице: 1из 1

brctl

brctl show
brctl addbr br0
ifconfig br0 up
ifconfig br0
brctl show
brctl addif br0 eth1
brctl addif br0 eth2

auto eth1
iface eth1 inet manual
up ip link set $IFACE promisc on arp off up
down ip link set $IFACE promisc off down
post-up ethtool -G $IFACE rx ; for i in rx tx sg tso ufo gso gro lro; do etht$
post-up echo 1 > /proc/sys/net/ipv6/conf/$IFACE/disable_ipv6
auto eth2
iface eth2 inet manual
up ip link set $IFACE promisc on arp off up
down ip link set $IFACE promisc off down
post-up ethtool -G $IFACE rx ; for i in rx tx sg tso ufo gso gro lro; do etht$
post-up echo 1 > /proc/sys/net/ipv6/conf/$IFACE/disable_ipv6
auto br0
iface br0 inet manual
bridge_ports eth1 eth2
up ip link set $IFACE promisc on arp off up
down ip link set $IFACE promisc off down
post-up ethtool -G $IFACE rx ; for i in rx tx sg tso ufo gso gro lro; do etht$
post-up echo 1 > /proc/sys/net/ipv6/conf/br0/disable_ipv6

Вам также может понравиться