Advertisement
Guest User

Untitled

a guest
Oct 14th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. # cat /etc/network/interfaces
  2.  
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. auto eth0
  7. iface eth0 inet static
  8. address 10.82.2.200
  9. netmask 255.255.252.0
  10. dns-nameserver 8.8.8.8 8.8.4.4
  11.  
  12. auto wlan0
  13. iface wlan0 inet static
  14. address 192.168.1.1
  15. netmask 255.255.255.0
  16. network 192.168.1.0
  17. broadcast 192.168.1.255
  18. madwifi-base wifi0
  19. madwifi-mode master
  20.  
  21.  
  22. # PPPoE connection
  23. auto dsl-provider
  24. iface dsl-provider inet ppp
  25. pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf
  26. provider dsl-provider
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement