Site icon Mr. 沙先生

Ubuntu 16.04 設定 Network interfaces、DNS

大概一年多沒有碰 Ubuntu 了,最近因為工作開始要大量的玩 Ubuntu 順手記錄一下以前沒有記錄到的資訊

 

此篇是紀錄  Ubuntu 16.04 在網路、DNS 的設定教學

 

Ubuntu 設定 Network static

$ vi /etc/network/interfaces

auto eth0
iface eth0 inet static 
address 192.168.10.10
netmask 255.255.255.0
gateway 192.168.1.254

 

 

 

Ubuntu 設定 DNS nameserver

$ vi /etc/network/interfaces

dns-nameservers 168.95.1.1
dns-nameservers 8.8.8.8

由於 Ubuntu 從 12.04 就開始棄用 /etc/resolv.conf 了,所以只要重開機,resolv.conf 都會被重置,所以必須將 nameserver 寫到 interfaces 裡面

 

 

 

參考:

Ubuntu resolvconf

Exit mobile version