打开微信扫一扫,您还可以在这里找到我们哟
关注我们
备案 - 控制台 退出
备案 免费注册 登录
400-018-9935
09:00-17:30(工作日)
9:00-17:30(工作日)
请您点击以下按钮完成验证,进行域名检索。
会员相关
账号资产
财务相关
安全保障
域名
云虚拟主机
云服务器
服务器租用
服务器托管
智能建站
SSL证书
商标注册
CDN加速
云数据库
负载均衡
对象存储
IDC相关
云计算相关
网站服务相关
服务器常识
备案相关
备案服务
法律法规
使用规则
服务器常识 > Linux中iptables(防火墙)中如何打开指定的端口(CentOS6.x)
例:当修改了ssh远程连接端口,如何在iptables上放行新的端口(这里将默认22端口号修改为33端口号)。
[root@niaoyun ~]# iptables -I INPUT -p tcp --dport 33 -j ACCEPT
[root@niaoyun ~]# iptables -nvL Chain INPUT (policy ACCEPT 0 packets, 0 bytes) pkts bytes target prot opt in out source destination 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:33 295 23186 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED 34 2310 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 2342 200K REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) pkts bytes target prot opt in out source destination 0 0 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited Chain OUTPUT (policy ACCEPT 15 packets, 1412 bytes) pkts bytes target prot opt in out source destination
[root@niaoyun ~]# service iptables save iptables: Saving firewall rules to /etc/sysconfig/iptables:[ OK ]
[root@niaoyun ~]# service iptables restart iptables: Setting chains to policy ACCEPT: filter [ OK ] iptables: Flushing firewall rules: [ OK ] iptables: Unloading modules: [ OK ] iptables: Applying firewall rules: [ OK ]
iptables -I INPUT -p tcp --dport 80 -j ACCEPT && service iptables save && service iptables restart
这条帮助是否解决了您的问题? 已解决 未解决
在线咨询
微信扫码
客服热线
顶部