Ubuntu Pastebin

Paste from sypher at Tue, 15 Nov 2016 19:14:41 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eno1
iface eno1 inet static
    address x.x.138.27/29
    gateway x.x.138.25
    dns-nameservers 8.8.8.8 8.8.4.4

iface eno1 inet6 static
    address x:x:x:5cd6::100/64
    gateway x:x:x:5cd6::1
    dns-nameservers 2001:4860:4860::8888 2001:4860:4860::8844
    up   ip addr add x:x:x:5cd6::200/64 dev $IFACE
    down ip addr del x:x:x:5cd6::200/64 dev $IFACE
    up   ip addr add x:x:x:5cd6::300/64 dev $IFACE
    down ip addr del x:x:x:5cd6::300/64 dev $IFACE
    up   ip addr add x:x:x:5cd6::400/64 dev $IFACE
    down ip addr del x:x:x:5cd6::400/64 dev $IFACE
Download as text