Advertisement
Emmentaler

Untitled

Mar 19th, 2015
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 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. # Example to keep MAC address between reboots
  12. #hwaddress ether DE:AD:BE:EF:CA:FE
  13.  
  14. # The secondary network interface
  15. #auto eth1
  16. #iface eth1 inet dhcp
  17.  
  18.  
  19. # Ethernet/RNDIS gadget (g_ether)
  20. # ... or on host side, usbnet and random hwaddr
  21. # Note on some boards, usb0 is automaticly setup with an init script
  22. iface usb0 inet static
  23. address 192.168.7.2
  24. netmask 255.255.255.0
  25. network 192.168.7.0
  26. gateway 192.168.7.1
  27.  
  28.  
  29. # WiFi Example
  30. auto wlan0
  31. iface wlan0 inet dhcp
  32. wpa-ssid "NETWORK"
  33. wpa-psk "mypassword"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement