在Linux系统中修改IP地址

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

    在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

 

发布者:admin,转转请注明出处:http://www.yc00.com/web/1754879637a5212179.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信