Advertisement
Guest User

interfaces

a guest
May 9th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. # interfaces(5) file used by ifup(8) and ifdown(8)
  2. # Include files from /etc/network/interfaces.d:
  3. source-directory /etc/network/interfaces.d
  4.  
  5. auto lo br0
  6. iface lo inet loopback
  7.  
  8. # wireless wlan0
  9. allow-hotplug wlan0
  10. iface wlan0 inet manual
  11.  
  12. # ethernet eth0
  13. allow-hotplug eth0
  14. iface eth0 inet manual
  15.  
  16. # Setup bridge
  17. iface br0 inet static
  18. bridge_ports wlan0 eth0
  19. address 192.168.1.1
  20. netmask 255.255.255.0
  21. # network 192.168.1.0
  22. # broadcast 192.168.1.255
  23. # dns-nameservers 192.168.1.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement