ubuntu server靜態IP和DNS服務器設置
Ubuntu的網絡參數保存在文件 /etc/network/interfaces中,
默認設置使用dhcp,動態IP獲取。
www.2cto.com
設置靜態ip的方法如下:
1) 編輯 /etc/network/interfaces
1.1)將dhcp 一行屏蔽
# The primary network interface
auto eth0
#iface eth0 inet dhcp
1.2)添加和靜態ip有關的參數
# The primary network interface
iface eth0 inet static
address 192.168.1,151
netmask 255.255.255.0
gateway 192.168.1.1
www.2cto.com
2)編輯 /etc/resolv.conf,設置dns,如果重啟還原,則還需要修改
/etc/resolvconf/resolv.conf.d/base文件,兩個內容一樣
nameserver 192.168.1.1 #路由網關
nameserver 8.8.8.8 #google的dns服務器
3)執行下面兩個命令,啟用新設置
$sudo ifdown eth0
$sudo ifup eth0