一、設置IP地址、網關網絡
cp /etc/network/interfaces /etc/network/interfaces.bak # 備份原有配置文件oop
vi /etc/network/interfaces # 編輯網網卡配置文件
rest
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0 # 開機自動鏈接網絡
allow-hotplug eth0
iface eth0 inet static # static表示使用固定ip,dhcp表述使用動態ip
address 192.168.21.166 # 設置ip地址
netmask 255.255.255.0 # 設置子網掩碼
gateway 192.168.21.2 # 設置網關
server
按 ESC 鍵,而後輸入 :eq 保存並退出。dns
下面的版本便於複製, 由於配置文件裏最好不要有中文:ip
# The loopback network interface
auto lo
iface lo inet loopback配置
# The primary network interface
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.21.166
netmask 255.255.255.0
gateway 192.168.21.1network
二、設置dnsservice
cp /etc/resolv.conf /etc/resolv.conf.bak # 備份原有dns配置文件im
vi /etc/resolv.conf # 編輯配置文件
nameserver 127.0.0.1
nameserver 8.8.8.8 # 設置首選dns
nameserver 8.8.4.4 # 設置備用dns
按 ESC 鍵,而後輸入 :eq 保存並退出。
下面的版本便於複製, 由於配置文件裏最好不要有中文:
nameserver 127.0.0.1
三、重啓網絡
service networking restart # 重啓網絡
至此,IP地址、網關、DNS配置完成,如今系統已經能夠上網了。