Debian設定IP位址 閘道器 DNS

2021-07-09 12:54:27 字數 1036 閱讀 6074

說明:

系統:debian 6.0.4

子網掩碼:255.255.255.0

閘道器:192.168.21.2 

dns:8.8.8.8

8.8.4.4

操作:系統運維 

www.osyunwei.com

1、設定ip位址、閘道器

nano /etc/network/inte***ces  /etc/network/inte***cesbak   #備份原有配置檔案

nano /etc/network/inte***ces   #編輯網網絡卡配置檔案

auto lo

auto eth0  #開機自動連線網路

iface lo inet loopback

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    #設定閘道器

ctrl+o   #儲存配置

ctrl+x   #退出

2、設定dns

cp  /etc/resolv.conf   /etc/resolv.confbak    #備份原有dns配置檔案

nano /etc/resolv.conf   #編輯配置檔案

nameserver 8.8.8.8   #設定首選dns

nameserver8.8.4.4   #設定備用dns

ctrl+o   #儲存配置

ctrl+x   #退出

系統運維 

www.osyunwei.com

3、重啟網路

service networking restart   #重啟網路

至此,ip位址、閘道器、dns配置完成,現在系統已經可以上網了。

Debian設定IP位址 閘道器 DNS

說明 系統 debian 6.0.4 子網掩碼 255.255.255.0 閘道器 192.168.21.2 dns 8.8.8.8 8.8.4.4 操作 系統運維 www.osyunwei.com 1 設定ip位址 閘道器 nano etc network inte ces etc network...

SUSE 設定IP位址 閘道器 DNS

說明 ip 172.18.4.107 子網掩碼 255.255.255.0 閘道器 172.18.4.254 dns 172.18.0.6 1 設定ip位址 vi etc sysconfig network ifcfg eth0 編輯配置檔案 bootproto static 靜態ip broadc...

Centos 下設定IP 閘道器 DNS位址

1.ip設定有兩種方式,一種是臨時的,設定後,不需要重啟網路,立即生效 另一種,修改配置檔案,需要重啟網路,但是不會因為系統重啟失效。一 採用臨時ip設定方式,本方式一旦系統重啟後,本次ip設定將失效,恢復到原來的ip。命令如下 設定ipifconfig eth0 192.168.245.9 net...