查看端口被哪个程序占用
netstat -lnp|grep 43088
iptables操作
# 添加记录: iptables -I INPUT -p tcp --dport 43088 -j ACCEPT # 查看记录: iptables -L # 删除记录: iptables -D INPUT -p tcp --dport 43088 -j ACCEPT
2023-11-03 16:07:04
查看端口被哪个程序占用
netstat -lnp|grep 43088
iptables操作
# 添加记录: iptables -I INPUT -p tcp --dport 43088 -j ACCEPT # 查看记录: iptables -L # 删除记录: iptables -D INPUT -p tcp --dport 43088 -j ACCEPT