Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. # Set up the local loopback interface
  2. auto lo
  3. iface lo inet loopback
  4.  
  5. # Set up the external interface
  6. #
  7. # Don't forget to change eth0 to the proper name of the external
  8. # interface if applicable.
  9. #
  10. auto eth0
  11. iface eth0 inet dhcp
  12.  
  13. # Set up the internal wireless network
  14. #
  15. # Don't forget to change wlan0 to the proper name of the internal
  16. # wireless network interface if applicable.
  17. #
  18. # If you would like to use WEP, uncomment the line 'wireless-key'
  19. # and replace '<key goes here>' with a WEP key.
  20. #
  21. # You may also change the network essid and channel.
  22. #
  23. auto ath0
  24. iface ath0 inet static
  25. wireless-mode master
  26. wireless-essid UbuntuWireless
  27. wireless-channel 1
  28. #wireless-key <key goes here>
  29. address 192.168.0.1
  30. network 192.168.0.0
  31. netmask 255.255.255.0
  32. broadcast 192.168.0.255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement