Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. ioan@amnesia:~$ 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. source /etc/network/interfaces.d/*
  6.  
  7. # The loopback network interface
  8. auto lo
  9. iface lo inet loopback
  10.  
  11. # The primary network interface
  12. allow-hotplug eth0
  13. auto br0
  14. iface br0 inet dhcp
  15. bridge_ports eth0
  16. bridge_fd 5
  17. bridge_stp yes
  18. iface br0 inet6 auto
  19.  
  20. # VLAN für gluon
  21. auto eth0.23
  22. iface eth0.23 inet manual
  23. vlan-raw-device eth0
  24.  
  25. auto br23
  26. iface br23 inet manual
  27. bridge_ports eth0.23
  28.  
  29. auto eth0.42
  30. iface eth0.42 inet manual
  31. vlan-raw-device eth0
  32.  
  33. auto br42
  34. iface br42 inet manual
  35. bridge_ports eth0.42
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement