在Linux系統中修改IP位址

2021-12-29 21:24:44 字數 1425 閱讀 1048

在linux系統中修改ip位址

1、切換路徑到/etc/sysconfig/network-scripts

[root@compile network-scripts]# pwd

/etc/sysconfig/network-scripts

2、檢視ifcfg-eth0檔案屬性,確保具有編輯許可權

[root@compile network-scripts]# ls -l ifcfg-eth0

-rw-r--r--. 1 root root 258 9月  24 18:05 ifcfg-eth0

3、編輯檔案ifcfg-eth0,新增如下資訊

onboot=yes

bootproto=static

ipaddr=192.168.30.175

netmask=255.255.255.0

gateway=192.168.30.1

命令如下:[root@compile network-scripts]# vi ifcfg-eth0

device=eth0

type=ethernet

uuid=9d3f1462-d7ac-49fe-8b1b-d729866d3bc7

onboot=yes

nm_controlled=yes

bootproto=static

hwaddr=00:23:ae:a8:d7:1e

ipaddr=192.168.30.175

netmask=255.255.255.0

gateway=192.168.30.1

ipv4_failure_fatal=yes

ipv6init=no

name="system eth0"

4、重啟網路服務

[root@compile network-scripts]# /etc/init.d/network  restart

正在關閉介面 eth0: 裝置狀態:3 (斷開連線)

[確定]

關閉環迴介面:                                             [確定]

彈出環迴介面:                                             [確定]

彈出介面 eth0: 活躍連線狀態:啟用的

活躍連線路徑:/org/freedesktop/networkmanager/activeconnection/2

[確定]

5、通過命令方式設定網路ip,可以立即生效

[root@compile network-scripts]# ifconfig eth0 192.168.30.175 netmask 255.255.255.0

[root@compile network-scripts]# route add default gateway 192.168.30.1

linux 修改IP位址

一臨時修改 1.首先用ifconfig檢視網絡卡裝置標識,比如eth0。2.執行ifconfig eth0 ip mask。比如 ifconfig eth0 10.2.45.20 255.255.255.二永久修改 1.首先用ifconfig檢視網絡卡裝置標識,比如eth0。2.進入目錄 etc s...

linux 修改ip位址

設定linux ip位址 兩個步驟 1 修改配置檔案 etc sysconfig network script ifcfg etho 2 重啟網路服務或網絡卡 service network restart ifconfig eth0 down ifdown eth0 ifconfig eth0 u...

Linux修改IP位址

1.檢視本機ip位址,自動獲取192.168.1.12,我們將它改為192.168.1.100的內網ip,將網絡卡改為橋接模式 root localhost ifconfigenp0s3 flags 4163mtu 1500 inet 192.168.1.12 netmask 255.255.255...