Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. root@dra7xx-evm:~# cat /etc/network/interfaces
  2. # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
  3.  
  4. # The loopback interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. # Wireless interfaces
  9. #auto wlan0
  10. #iface wlan0 inet dhcp
  11. # udhcpc_opts --retries 5 --background
  12.  
  13. # Wired or wireless interfaces
  14. auto br0
  15. iface br0 inet static
  16. address 192.168.1.100
  17. netmask 255.255.255.0
  18. bridge_stp off
  19. bridge_waitport 0
  20. bridge_fd 0
  21.  
  22. auto br1
  23. iface br1 inet static
  24. address 192.168.4.102
  25. netmask 255.255.255.0
  26. bridge_ports eth0
  27. bridge_stp off
  28. bridge_waitport 0
  29. bridge_fd 0
  30.  
  31. auto br2
  32. #iface br2 inet dhcp
  33. # udhcpc_opts --retries 5 --background
  34.  
  35. # Ethernet/RNDIS gadget (g_ether)
  36. # ... or on host side, usbnet and random hwaddr
  37. #iface usb0 inet dhcp
  38.  
  39. # Bluetooth networking
  40. #iface bnep0 inet dhcp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement