作者:释之
问题现象
主机网络不通,登录主机看网卡没有正确配置
解决方法
尝试重启网卡,发现ifdown ifup命令不存在:
通过ifconfig 配置IP信息
ifconfig <网卡> < IP > netmask <掩码>
然后添加路由:
route add -net 0.0.0.0/0 gw <公网网关>
如果是经典网络需要配置上内外网卡ip和路由,路由命令:
route add -net 10.0.0.0/8 gw <内网网关>
route add -net 100.64.0.0/10 gw <内网网关>
网络通了后运行命令:
yum install initscripts
安装上ifup ifdown相关的包。