Hello Colleagues,
I want to configure static IP address from DHCP I am using right now.
Here is config of my /etc/network/interfaces
Code:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.200.107
netmask 255.255.255.0
gateway 192.168.200.254
dns-nameserver 192.168.200.254
And here is my /etc/NetworkManager/NetworkManager.conf
Code:
[main]
plugins=ifupdown,keyfile,ofono
#dns=dnsmasq
[ifupdown]
managed=true
When I implemented those changes I don't have working name resolution / dns.
My resolv.conf is empty.
What am I doing wrong here?
Bookmarks