Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. #auto lo
  2.  
  3. #iface lo inet loopback
  4. #iface eth0 inet dhcp
  5.  
  6. #allow-hotplug wlan0
  7. #iface wlan0 inet manual
  8. #wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
  9. #iface default inet dhcp
  10.  
  11. # This file describes the network interfaces available on your system
  12. # and how to activate them. For more information, see interfaces(5).
  13.  
  14. auto lo br0
  15. iface lo inet loopback
  16.  
  17. allow-hotplug eth0
  18. iface eth0 inet manual
  19.  
  20. allow-hotplug wlan0
  21. iface wlan0 inet manual
  22.  
  23. # Bridge setup
  24.  
  25. # for dhcp address
  26. #iface br0 inet dhcp
  27. # bridge_ports eth0 wlan0
  28.  
  29. # for static ip
  30. iface br0 inet static
  31. bridge_ports eth0 wlan0
  32. # adapt with your network settings
  33. address 192.168.1.162
  34. netmask 255.255.255.0
  35. network 192.168.1.0
  36. broadcast 192.168.1.255
  37. gateway 192.168.1.1
  38. # dns-* options are implemented by the resolvconf package, if installed
  39. dns-nameservers 192.168.1.1
  40. dns-search localdomain
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement