Ubuntu Pastebin

Paste from twoj_ at Thu, 29 Jun 2017 23:55:16 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

# WAN interface
auto  eno1
iface eno1 inet dhcp

# LAN interface
auto  enp2s0f1
iface enp2s0f1 inet static
  address 192.168.0.1
  network 192.168.0.0
  netmask 255.255.255.0
  broadcast 192.168.0.255
  dns-nameservers 127.0.0.1
Download as text