byghis

Setting a Network Bridge br100 - Ubuntu

Jul 29th, 2011
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. edward@jaku:~$ cat /etc/network/interfaces
  2. # This file describes the network interfaces available on your system
  3. # and how to activate them. For more information, see interfaces(5).
  4.  
  5. # The loopback network interface
  6. auto lo
  7. iface lo inet loopback
  8.  
  9. # The primary network interface
  10. auto eth0
  11. iface eth0 inet dhcp
  12.  
  13. auto br100
  14. iface br100 inet dhcp
  15. bridge_ports eth0
  16. bridge_stp off
  17. bridge_maxwait 0
  18. bridge_fd 0
  19.  
  20. iface wlan0 inet dhcp
  21.  
  22. #
  23. #auto br-xen
  24. #iface br-xen inet static
  25. # address 139.82.2.182
  26. # netmask 255.255.255.192
  27. # gateway 139.82.2.129
  28. # bridge_ports eth0
  29. # bridge_maxwait 0
Advertisement
Add Comment
Please, Sign In to add comment