Linux修改IP
Posted 7q4w1e
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux修改IP相关的知识,希望对你有一定的参考价值。
修改IP地址
- 查看IP地址:ifconfig - 看地址
- 打开配置文件:vim /etc/sysconfig/network-scripts/ifcfg-eth0输入命令:service network restart
- BOOTPROTO参数的意义:none(禁止dhcp),static(静态IP),dhcp(自动获取),修改BOOTPROTO的参数为static
- 创建两个新参数IPADDR(IP地址)和NETMASK(子网掩码)
- 按下ESC,输入:wq保存退出
- 输入命令:service network restart
异常
Restarting network
问题描述: service network restart后报错:Restarting network (via systemctl): Job for network.service failed because the control process exited with error code. See "systemctl status network.service" and "journalctl -xe" for details.
原因:出现这种错误的原因就是HWADDR地址写错了,仔细对照MAC地址和你写的那个地址是不是一样的
Destination host unreachable
问题描述:ping ip主机提示Destination host unreachable
原因:连接方式不对
解决方案:将连接方式修改为“桥连接”
以上是关于Linux修改IP的主要内容,如果未能解决你的问题,请参考以下文章