Ubuntu 的網路配置與 CentOS 相比區別不大,具體方法如下:
1. 使用編輯器打開網卡的配置文件,這裡預設使用 eth0
vi /etc/network/interfaces
輸入以下內容
# The loopback network interface
auto lo
iface lo inet loopback
The primary network interface#
auto eth0 #自動配置 eth0
iface eth0 inet static #設置為靜態配置,需要動態獲取 ip 時可選 dhcp
address 192.168.0.100 #IP 地址
broadcast 192.168.0.255 #對應的子網廣播地址
netmask 255.255.255.0 #子網掩碼
network 192.168.0.0 #網路地址
gateway 192.168.0.1 #網關地址,可選設定
2. 修改 DNS 解析,編輯 resolv.conf 文件
vi /etc/resolv.conf
輸入
nameserver 8.8.8.8
nameserver 8.8.4.4
修改完 resolv.conf 後 dns 解析會立即生效
3. 重啟網路配置
/etc/init.d/networking restart