Linux下如何修改IP位址

2021-06-17 18:59:03 字數 2168 閱讀 9655

a、修改ip位址

即時生效:

# ifconfig eth0 192.168.0.20 netmask 255.255.255.0

啟動生效:

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

b、修改default gateway

即時生效:

# route add default gw 192.168.0.254

啟動生效:

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

c、修改dns

修改/etc/resolv.conf

修改後可即時生效,啟動同樣有效

d、修改host name

即時生效:

# hostname fc2

啟動生效:

修改/etc/sysconfig/network

新啟動網路配置

/etc/init.d/network restart

前提:redhat 系統

ip, 掩碼:

ipaddr=192.168.0.1

netmask=255.255.255.0

閘道器:networking=yes

hostname=xx

gateway=192.168.0.100

dns:

nameserver=202.96.209.5

linux下修改網絡卡ip和閘道器

建議通過終端字元方式下來修改

一修改ip位址

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

device=eth0

bootproto=none

broadcast=192.168.1.255

ipaddr=192.168.1.33

netmask=255.255.255.0

network=192.168.1.0

onboot=yes

userctl=no

peerdns=no

type=ethernet

~vi /etc/sysconfig/network-scripts/ifcfg-eth1

device=eth1

onboot=yes

bootproto=none

ipaddr=192.168.2.34

netmask=255.255.255.0

userctl=no

peerdns=no

type=ethernet

network=192.168.2.0

broadcast=192.168.2.255

二修改閘道器

vi /etc/sysconfig/network

networking=yes

hostname=aaron

gateway=192.168.1.1

三重新啟動網路配置

/etc/init.d/network restart

——————————————————————————

修改配置檔案

/etc/sysconfig/network-scripts/ 下有配置檔案

比如檔案:ifcfg-eth0 代表是乙太網實際網絡卡0的配置檔案

比如檔案:ifcfg-eth0:1 代表是乙太網實際網絡卡0的配置檔案

網域名稱伺服器配置檔案:/etc/ resolv.conf

修改ip位址

即時生效:

# ifconfig eth0 192.168.0.20 netmask 255.255.255.0

啟動生效:

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

修改default gateway

即時生效:

# route add default gw 192.168.0.254

啟動生效:

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

修改dns

修改/etc/resolv.conf

修改後可即時生效,啟動同樣有效

修改host name

即時生效:

# hostname fc2

啟動生效:

修改/etc/sysconfig/network

Linux系統下如何修改ip位址

1.登陸系統,輸入 ifconfig 可以檢視到當前本機的ip位址資訊。2.設定臨時ip位址。ifconfig eth0 192.168.137.66 3.永久修改ip位址。vi etc sysconfig network scripts ifcfg eth0 device eth0 網絡卡對應的裝...

linux下修改ip位址

os fc2 nic eth0 host name fc2 ip 192.168.0.20 24 default gateway 192.168.0.254 直接執行 setup 然後會彈出選項視窗,設定一下就可以了 或者修改配置檔案 etc sysconfig network scripts 下有...

linux下修改IP位址

linux修改ip和dns 以red hat enterprise linux 5.2為例 1 最常用的給網絡卡配置ip的命令為 ifconfig eth0 192.168.0.1 netmask 255.255.255.0 up 說明 eth0是第乙個網絡卡,其他依次為eth1,eth 192.1...