Ubuntu Pastebin

Paste from Christian Ehrhardt at Tue, 2 Aug 2016 10:13:57 +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
27
28
29
30
31
root@xenial-verify-nameserver-not-considered-issue:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# default I had
#auto eth0
#iface eth0 inet dhcp

# converted config to static
auto eth0
iface eth0 inet static
address 10.0.4.185
netmask 255.255.255.0
broadcast 10.0.4.255
gateway 10.0.4.1
network 10.0.4.0
# working - seen rendered into /etc/resolv.conf
#dns-nameserver 10.0.4.1
# trying two server, working as well
dns-nameservers 10.0.4.1 8.8.8.8
dns-search lxd
root@xenial-verify-nameserver-not-considered-issue:~# cat /etc/resolv.conf 
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 10.0.4.1
nameserver 8.8.8.8
search lxd
Download as text