Ubuntu Pastebin

Paste from bip at Tue, 5 May 2015 17:15:12 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
thor@thor:~$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
        address 192.168.0.100
        netmask 255.255.255.0
        network 192.168.0.1
        broadcast 192.168.0.255
        dns-nameservers 192.168.0.10 8.8.8.8
        gateway 192.168.0.254
Download as text