Advertisement
Guest User

Untitled

a guest
Jul 7th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 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. source /etc/network/interfaces.d/*
  5.  
  6. # The loopback network interface
  7. auto lo
  8. iface lo inet loopback
  9.  
  10.  
  11. auto br1
  12. iface br1 inet static
  13. address 192.168.1.100
  14. netmask 255.255.255.0
  15. gateway 192.168.1.1
  16. network 192.168.1.0
  17. broadcast 192.168.1.255
  18. dns-nameservers 8.8.8.8 192.168.1.1
  19. bridge_ports enp3s0
  20. bridge_stp off
  21. bridge_fd 0
  22. bridge_maxwait 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement