use simpler interfaces
This commit is contained in:
parent
ba9edf8d6d
commit
e6b76ce688
@ -1,18 +1,17 @@
|
|||||||
|
# This file describes the network interfaces available on your system
|
||||||
|
# and how to activate them. For more information, see interfaces(5).
|
||||||
|
|
||||||
# The loopback network interface
|
# The loopback network interface
|
||||||
auto lo
|
auto lo
|
||||||
iface lo inet loopback
|
iface lo inet loopback
|
||||||
|
|
||||||
# The primary network interface
|
# The primary network interface
|
||||||
|
auto eth0
|
||||||
|
iface eth0 inet manual
|
||||||
|
up ifconfig $IFACE 0.0.0.0 up
|
||||||
|
down ifconfig $IFACE down
|
||||||
|
|
||||||
auto br0
|
auto br0
|
||||||
iface br0 inet dhcp
|
iface br0 inet dhcp
|
||||||
bridge_ports eth0
|
bridge_ports eth0
|
||||||
bridge_fd 9 ## from the libvirt docs (forward delay time)
|
|
||||||
bridge_hello 2 ## from the libvirt docs (hello time)
|
|
||||||
bridge_maxage 12 ## from the libvirt docs (maximum message age)
|
|
||||||
bridge_stp off ## from the libvirt docs (spanning tree protocol)
|
|
||||||
|
|
||||||
iface eth0 inet manual
|
|
||||||
up ifconfig $IFACE 0.0.0.0 up
|
|
||||||
up ip link set $IFACE promisc on
|
|
||||||
down ip link set $IFACE promisc off
|
|
||||||
down ifconfig $IFACE down
|
|
||||||
|
Loading…
Reference in New Issue
Block a user