Advertisement
Guest User

BBB interfaces

a guest
Jul 11th, 2014
267
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. # WiFi Example
  19. #auto wlan0
  20. #iface wlan0 inet dhcp
  21. # wpa-ssid "essid"
  22. # wpa-psk "password"
  23.  
  24. # Ethernet/RNDIS gadget (g_ether)
  25. # ... or on host side, usbnet and random hwaddr
  26. # Note on some boards, usb0 is automaticly setup with an init script
  27. iface usb0 inet static
  28. address 192.168.7.2
  29. netmask 255.255.255.0
  30. network 192.168.7.0
  31. gateway 192.168.7.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement