linux 基本环境

2021-05-17  本文已影响0人  全栈无用

无法上网

# 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
上一篇下一篇

猜你喜欢

热点阅读