当前位置:   article > 正文

CentOS开启关闭端口方法_centeros 快速关闭某个端口

centeros 快速关闭某个端口
  • 打开端口:
[root@host ~]# /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT 
[root@host ~]# /etc/init.d/iptables save   
[root@host ~]# service iptables restart    
  • 1
  • 2
  • 3
  • 关闭端口
[root@host ~]# /sbin/iptables -I INPUT -p tcp --dport 8080 -j DROP 
[root@host ~]# /etc/init.d/iptables save  
[root@host ~]# service iptables restart   
  • 1
  • 2
  • 3
  • 查看端口打开状态
[root@host ~]# service iptables status
Table: filter
Chain INPUT (policy ACCEPT)
num  target     prot opt source               destination
1    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:8080

Chain FORWARD (policy ACCEPT)
num  target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
num  target     prot opt source               destinationn
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/701933
推荐阅读
相关标签
  

闽ICP备14008679号