centos網路設定

2022-07-04 08:33:09 字數 1335 閱讀 4124

1.修改對應網絡卡的ip位址的配置檔案

# vi /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0 #描述網絡卡對應的裝置別名,例如ifcfg-eth0的檔案中它為eth0

bootproto=static #設定網絡卡獲得ip位址的方式,可能的選項為static,dhcp或bootp,分別對應靜態指定的 ip位址,通過dhcp協議獲得的ip位址,通過bootp協議獲得的ip位址

broadcast=192.168.0.255 #對應的子網廣播位址

hwaddr=00:07:e9:05:e8:b4 #對應的網絡卡實體地址

ipaddr=12.168.1.2 #如果設定網絡卡獲得 ip位址的方式為靜態指定,此字段就指定了網絡卡對應的ip位址

ipv6init=no

ipv6_autoconf=no

netmask=255.255.255.0 #網絡卡對應的網路掩碼

network=192.168.1.0 #網絡卡對應的網路位址

onboot=yes #系統啟動時是否設定此網路介面,設定為yes時,系統啟動時啟用此裝置

2.centos修改閘道器(不是必須的)

/etc/sysconfig/network

networking=yes(表示系統是否使用網路,一般設定為yes。如果設為no,則不能使用網路,而且很多系統服務程式將無法啟動)

hostname=centos(設定本機的主機名,這裡設定的主機名要和/etc/hosts中設定的主機名對應)

gateway=192.168.1.1(設定本機連線的閘道器的ip位址。例如,閘道器為10.0.0.2)

3.修改dns

/etc/resolv.conf

nameserver 8.8.8.8 #google網域名稱伺服器

nameserver 8.8.4.4 #google網域名稱伺服器

4.重啟網路配置

# service network restart

或# /etc/init.d/network restart

5.修改 ip 位址

即時生效:

# ifconfig eth0 192.168.0.2 netmask 255.255.255.0

6.啟動生效:

修改 /etc/sysconfig/network-scripts/ifcfg-eth0

7.修改閘道器 default gateway

即時生效:

# route add default gw 192.168.0.1 dev eth0

8.修改 host name

即時生效:

# hostname centos1

centos網路設定

1.修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static 設定網絡卡獲得ip位址的方式,可能的選項為...

centos網路設定

一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 gedit etc sysconfig network scripts ifcfg eth0 修改以下內容 1 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 2 ootproto s...

CentOS 網路設定

centos 網路設定有兩種方式配置網路可以連線外網 自動分配與手動設定ip 一,自動分配ip 新裝的centos6.0,用ifconfig只顯示ifcfg lo的資訊,可以用ifup eth0的命令啟動。檢視並修改 etc sysconfig network scripts ifcfg eth0,...