无法上网
# vi /etc/sysconfig/network-scripts/ifcfg-ens33
# DNBOOT=yes
# service network restart
yum 更新
yum update
安装网络工具
# yum install net-tools
//查看 IP
# ifconfig -a
安装下载工具
yum -y install wget
防火墙端口工具
yum install iptables-services
开放端口
// 编辑
vi /etc/sysconfig/iptables
// 添加
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
// 发布
service iptables restart
网友评论