配置Ubuntu 靜態IP

Ubuntu的網絡配置信息是保存在 /etc/network/interfaces 文件中,使用Vim打開配置文件,默認是自動獲取IP的配置.以下:
# The primary network interface
auto lo
auto eth0
iface eth0 inet dhcp

咱們如今須要把dhcp 改成static,而後接着在下面設置IP地址,設置後該配置文件內容以下,
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.0.102
netmask 255.255.255.0
gateway 192.168.0.1
網絡


配置DNS Server

修改/etc/resolv.conf
dom

sudo vi /etc/resolv.conf
在裏面輸入, 
search domainname.com
nameserver 192.168.0.104
注:以上修改會在機器重啓後被覆蓋,  若是重啓機器後這次修改繼續生效的話,須要在文件   /etc/resolvconf/resolv.conf.d/base裏輸入以上內容,
相關文章
相關標籤/搜索