Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 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. # The primary network interface
  11. auto br0
  12. iface br0 inet dhcp
  13. bridge_ports ens6
  14.  
  15. auto enp3s4f0
  16. #iface enp3s4f0 inet dhcp
  17. iface enp3s4f0 inet static
  18. address 10.1.1.2
  19. netmask 255.255.255.0
  20. gateway 10.1.1.1
  21. dns-nameservers 10.1.1.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement