Advertisement
Guest User

Untitled

a guest
Jul 7th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 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 enp3s0
  11. iface enp3s0 inet static
  12. address 192.168.1.100
  13. netmask 255.255.255.0
  14. gateway 192.168.1.1
  15. dns-nameservers 192.168.1.1
  16.  
  17. auto br1
  18. iface br1 inet manual
  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