CentOS6配置靜態IP

2022-07-22 09:54:19 字數 2942 閱讀 1797

centos6配置靜態ip

1. 編輯網絡卡配置 vi /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0

hwaddr=不需要改

type=ethernet

uuid=不需要改

onboot=yes

nm_controlled=yes

bootproto=static

ipaddr=192.168.1.110

netmask=255.255.255.0

network=192.168.1.0

broadcast=192.168.1.255

2. 修改閘道器 vi /etc/sysconfig/network

networking=yes

networking_ipv6=no

hostname=不需要改

gateway=192.168.1.1

3. 修改dns vi /etc/resolv.conf

nameserver 114.114.114.114

nameserver

8.8.8.8

解決方案:

1. 進入/etc/sysconfig/network-scripts 目錄,發現有ifcfg-eth0,即網絡卡(驅動)存在但未啟用。

2. 輸入ifconfig -a命令,可顯示eth0和lo。

3. 輸入ifconfig eth0 up,啟用網絡卡。此時用ifconfig,只能看到inet6(ipv6?)的位址,沒有inet的位址(即xshell連線輸入的ip)。

4. 修改/etc/sysconfig/network-scripts/ifcfg-eth0 檔案, 把onboot=no 改為 onboot=yes。

5. service network restart,重啟。出現shutdown eth0 ok,bring up eth0 ok,determine ip for

eth0 ok。

6. 輸入ifconfig,出現eth0的inet位址。用xshell連線成功。

1 在/etc/sysconfig/network-scripts/ifcfg-eth0(確認onboot=yes),其中eth0是裝置名;23

device:網絡卡名稱(一定是寫eth0)

4 onboot=yes(相當於啟動這個網絡卡的開關,你要用eth0這個一定要yes,表示開)

5 bootproto=none(這個是表示你使用什麼樣的路由協議,有三種不同寫法,如果是none和static表示你用的是靜態路由,那麼你在接下來的專案裡就必須填寫ipaddr、netmask、gateway這三個選項。如果是dhcp表示你使用動態路由協議,那ipaddr、netmask、gateway這些選項就可以不必填寫。如果填寫了,就以你填寫的值為準)67

8netmask:子網掩碼

9 gateway:閘道器

device=eth0

hwaddr=不需要改

type=ethernet

uuid=不需要改

onboot=yes

nm_controlled=yes

bootproto=static

ipaddr=192.168.1.110

netmask=255.255.255.0

network=192.168.1.0

broadcast=192.168.1.255

2. 修改閘道器 vi /etc/sysconfig/network

networking=yes

networking_ipv6=no

hostname=不需要改

gateway=192.168.1.1

3. 修改dns vi /etc/resolv.conf

nameserver 114.114.114.114

nameserver

8.8.8.8

解決方案:

1. 進入/etc/sysconfig/network-scripts 目錄,發現有ifcfg-eth0,即網絡卡(驅動)存在但未啟用。

2. 輸入ifconfig -a命令,可顯示eth0和lo。

3. 輸入ifconfig eth0 up,啟用網絡卡。此時用ifconfig,只能看到inet6(ipv6?)的位址,沒有inet的位址(即xshell連線輸入的ip)。

4. 修改/etc/sysconfig/network-scripts/ifcfg-eth0 檔案, 把onboot=no 改為 onboot=yes。

5. service network restart,重啟。出現shutdown eth0 ok,bring up eth0 ok,determine ip for

eth0 ok。

6. 輸入ifconfig,出現eth0的inet位址。用xshell連線成功。

1 在/etc/sysconfig/network-scripts/ifcfg-eth0(確認onboot=yes),其中eth0是裝置名;23

device:網絡卡名稱(一定是寫eth0)

4 onboot=yes(相當於啟動這個網絡卡的開關,你要用eth0這個一定要yes,表示開)

5 bootproto=none(這個是表示你使用什麼樣的路由協議,有三種不同寫法,如果是none和static表示你用的是靜態路由,那麼你在接下來的專案裡就必須填寫ipaddr、netmask、gateway這三個選項。如果是dhcp表示你使用動態路由協議,那ipaddr、netmask、gateway這些選項就可以不必填寫。如果填寫了,就以你填寫的值為準)67

8netmask:子網掩碼

9 gateway:閘道器

centOS6配置靜態IP

vim etc sysconfig network scripts ifcfg eth0 device eth0 bootproto static hwaddr 00 0c 29 c5 9d 1e ipv6init yes nm controlled yes onboot yes type ethe...

CentOS6靜態IP配置

在新裝系統後,需配置靜態ip 1 使用dhcp獲取ip 檢視當前是否聯網 ifconfig 取得當前ip,以及子網掩碼 netstat rn 獲取閘道器位址 以0.0.0.0開頭的行為預設閘道器位址 禁用dhcp和ipv6 service networkmanager stop service ip...

CentOS 6設定靜態IP教程

centos 6.3設定靜態ip教程 區域網裡有臺安裝有centos6.3的電腦,掉電或重啟,它的ip會被dhcp重新分配,如果要遠端控制這台電腦,不得不去開啟顯示器去檢視它的新ip,這樣太麻煩了。於是需要將這台電腦的ip設定成靜態的。1 找到 etc sysconfig network scrip...