Linux下IPTABLES配置详解

发表于:2014-4-02 10:02

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:蜗牛大侠    来源:51Testing软件测试网采编

  如果你的IPTABLES基础知识还不了解,建议先去看看.
  开始配置
  我们来配置一个filter表的防火墙.
  (1)查看本机关于IPTABLES的设置情况
[root@tp ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target       prot opt source                 destination
Chain FORWARD (policy ACCEPT)
target       prot opt source                 destination
Chain OUTPUT (policy ACCEPT)
target       prot opt source                 destination
Chain RH-Firewall-1-INPUT (0 references)
target       prot opt source                 destination
ACCEPT       all    --    0.0.0.0/0              0.0.0.0/0
ACCEPT       icmp --    0.0.0.0/0              0.0.0.0/0             icmp type 255
ACCEPT       esp    --    0.0.0.0/0              0.0.0.0/0
ACCEPT       ah     --    0.0.0.0/0              0.0.0.0/0
ACCEPT       udp    --    0.0.0.0/0              224.0.0.251           udp dpt:5353
ACCEPT       udp    --    0.0.0.0/0              0.0.0.0/0             udp dpt:631
ACCEPT       all    --    0.0.0.0/0              0.0.0.0/0             state RELATED,ESTABLISHED
ACCEPT       tcp    --    0.0.0.0/0              0.0.0.0/0             state NEW tcp dpt:22
ACCEPT       tcp    --    0.0.0.0/0              0.0.0.0/0             state NEW tcp dpt:80
ACCEPT       tcp    --    0.0.0.0/0              0.0.0.0/0             state NEW tcp dpt:25
REJECT       all    --    0.0.0.0/0              0.0.0.0/0             reject-with icmp-host-prohibited
  可以看出我在安装linux时,选择了有防火墙,并且开放了22,80,25端口.
  如果你在安装linux时没有选择启动防火墙,是这样的
  [root@tp ~]# iptables -L -n
  Chain INPUT (policy ACCEPT)
  target       prot opt source                 destination
  Chain FORWARD (policy ACCEPT)
  target       prot opt source                 destination
  Chain OUTPUT (policy ACCEPT)
  target       prot opt source                 destination
  什么规则都没有.
  (2)清除原有规则.
  不管你在安装linux时是否启动了防火墙,如果你想配置属于自己的防火墙,那就清除现在filter的所有规则.
  [root@tp ~]# iptables -F        清除预设表filter中的所有规则链的规则
  [root@tp ~]# iptables -X        清除预设表filter中使用者自定链中的规则
  我们在来看一下
[root@tp ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target       prot opt source                 destination
Chain FORWARD (policy ACCEPT)
target       prot opt source                 destination
Chain OUTPUT (policy ACCEPT)
target       prot opt source                 destination
  什么都没有了吧,和我们在安装linux时没有启动防火墙是一样的.(提前说一句,这些配置就像用命令配置IP一样,重起就会失去作用),怎么保存.
  [root@tp ~]# /etc/rc.d/init.d/iptables save
  这样就可以写到/etc/sysconfig/iptables文件里了.写入后记得把防火墙重起一下,才能起作用.
  [root@tp ~]# service iptables restart
  现在IPTABLES配置表里什么配置都没有了,那我们开始我们的配置吧
31/3123>
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号