Advertisement
Guest User

Untitled

a guest
Jul 20th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. # This file describes the network interfaces available on your system
  2. # and how to activate them. For more information, see interfaces(5).
  3.  
  4. # The loopback network interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. # The primary network interface
  9. auto eth0
  10. iface eth0 inet dhcp
  11.  
  12. # This is an autoconfigured IPv6 interface
  13. iface eth0 inet6 auto
  14.  
  15. # Wireless interface
  16. auto wlan0
  17. iface wlan0 inet static
  18. address 192.168.50.5
  19. network 192.168.50.0
  20. netmask 255.255.255.0
  21. broadcast 192.168.50.55
  22.  
  23. wireless-mode master
  24. #wireless-channel 1
  25. wireless-essid Lan
  26. #wireless-key julebrus
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement