Advertisement
Guest User

Untitled

a guest
Jul 7th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 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. auto br1
  11. iface br1 inet static
  12. address 192.168.1.100
  13. netmask 255.255.255.0
  14. gateway 192.168.1.1
  15. bridge_ports enp3s0
  16. bridge_stp off
  17. bridge_fd 0
  18. bridge_maxwait 0
  19. dns-nameservers 192.168.1.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement