1. 程式人生 > >Ubuntu設置靜態IP以及DNS

Ubuntu設置靜態IP以及DNS

linux

Introduce

安裝虛擬機無法DHCP獲取地址,搜了點資料設置成功,記下來以後好找文檔。

設置靜態IP

vi /etc/network/interfaces
# The primary network interface  
auto eth0  #表示讓網卡開機自動掛載eth0
iface eth0 inet static  
address 192.168.2.1  
gateway 192.168.2.254  
netmask 255.255.255.0

/etc/init.d/networking restart

設置DNS

vi  /etc/resolvconf/resolv.conf.d/base
#添加
nameserver 8.8.8.8
nameserver 8.8.4.4

resolvconf -u

Ubuntu設置靜態IP以及DNS