dexterdev

Untitled

Sep 26th, 2011
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
  2.  
  3. # The loopback interface
  4. auto lo
  5. iface lo inet loopback
  6. # Wireless interfaces
  7. #
  8. # Example of an unencrypted (no WEP or WPA) wireless connection
  9. # that connects to any available access point:
  10. #
  11. iface wlan0 inet dhcp
  12. wireless_mode managed
  13. wireless_essid any
  14. #
  15. #
  16. # Same as above but locked to a specific access point:
  17. #
  18. #iface wlan0 inet dhcp
  19. # wireless_mode managed
  20. # wireless-essid some-essid
  21. #
  22. # A WEP encrypted connection locked to a specific access point:
  23. #
  24. #iface wlan0 inet dhcp
  25. # wireless-essid some-essid
  26. # wireless-key s:My-PlainText-Password
  27. # wireless-mode managed
  28. #
  29. # A WPA1 or WPA2 encrypted connection locked to a specific access point.
  30. # This is the best option for non-roaming, single-network usage.
  31. # Note that your card may require a firmware update to use WPA.
  32. # Some distributions install a temporary volatile firmware update on ifup.
  33. #
  34. #iface wlan0 inet dhcp
  35. # wpa-essid some-essid
  36. # wpa-psk My-PlainText-Password
  37. #
  38. # A WPA1 or WPA2 encrypted connection using an external configuration file
  39. # for wpa-supplicant. This is the way to go if you need to configure multiple
  40. # networks with different keys and / or WPA settings and roaming support.
  41. #
  42. # iface wlan0 inet dhcp
  43. # wpa-conf /etc/wpa_supplicant.conf
  44. # wpa-driver hostap
  45.  
  46.  
  47.  
  48. iface atml0 inet dhcp
  49.  
  50. # Wired or wireless interfaces
  51. auto eth0
  52. iface eth0 inet dhcp
  53. iface eth1 inet dhcp
  54.  
  55. # Ethernet/RNDIS gadget (g_ether) or LAN9514
  56. auto usb0
  57. iface usb0 inet dhcp
  58.  
  59. # Bluetooth networking
  60. iface bnep0 inet dhcp
Add Comment
Please, Sign In to add comment