日期:2014-05-16  浏览次数:20689 次

在Linux系统中修改IP地址

    在Linux系统中,通过编辑网络配置文件,设置系统IP地址,当然要在root权限下执行,具体步骤如下:

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