大概一年多沒有碰 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
- auto 隨著 network 自動啟動,同 CentOS 的 ONBOOT。
- iface 設定你裝置的 IP type,dhcp or static。
- address 即 IP 位址。
- netmask 即子網路遮罩。
- gatewat 即網路閘道。
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 裡面
參考: