Advertisement
filipecoelho

interfaces.BBG

Aug 11th, 2016
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 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 use: -> connmanctl
  19.  
  20. # Ethernet/RNDIS gadget (g_ether)
  21. # Used by: /opt/scripts/boot/autoconfigure_usb0.sh
  22. iface usb0 inet static
  23.     address 192.168.7.2
  24.     netmask 255.255.255.252
  25.     network 192.168.7.0
  26.     gateway 192.168.7.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement