Advertisement
Guest User

linux eth0 usb0 bridge

a guest
Jun 13th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. source /etc/network/interfaces.d/*
  2.  
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. auto eth0
  7. allow-hotplug eth0
  8. iface eth0 inet manual
  9.  
  10. auto usb0
  11. allow-hotplug usb0
  12. iface usb0 inet manual
  13.  
  14. auto br0
  15. iface br0 inet dhcp
  16. # address 192.168.1.160
  17. # netmask 255.255.255.0
  18. # gateway 192.168.1.1
  19. bridge_ports eth0 usb0
  20. bridge_stp off
  21. bridge_waitport 15
  22. bridge_fd 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement