Contents
  1. 1. 查看当前配置
  2. 2. 在文件中存储iptables
  3. 3. 参考

最近捣鼓ipsec vpn,需要用到iptables相关知识,搜到了debian网站上的这篇文章,顺手翻译一下,以备查阅

文章来源 www.kowen.cn

原文连接(English)

Iptables 提供包过滤,网络地址转换(NAT)等包处理功能。

防火墙NAT是iptables提供的普通功能中最重要的两个。

手动配置iptables对新手来说是个不小的挑战。幸运的是,有很多可用的辅助配置工具:比如fwbuilderbastilleferm(wiki),ufw(来自Ubuntu的简单防火墙)

查看当前配置

查看当前配置,输入以下命令:

1
iptables -L

可以得到类似下面的输出结果:

1
2
3
4
5
6
7
8
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

以上规则允许所有访问。

在文件中存储iptables

Note:iptables-persistent包可以帮助你来完成。

我们来创建一个测试iptables文件来加深记忆:

1
editor /etc/iptables.test.rules

在文件中输入一些基本的规则:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
*filter
# Allows all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0
-A INPUT -i lo -j ACCEPT
-A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT
# Accepts all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Allows all outbound traffic
# You could modify this to only allow certain traffic
-A OUTPUT -j ACCEPT
# Allows HTTP and HTTPS connections from anywhere (the normal ports for websites)
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT
# Allows SSH connections
# The --dport number is the same as in /etc/ssh/sshd_config
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
# Now you should read up on iptables rules and consider whether ssh access
# for everyone is really desired. Most likely you will only allow access from certain IPs.
# Allow ping
# note that blocking other types of icmp packets is considered a bad idea by some
# remove -m icmp --icmp-type 8 from this line to allow all kinds of icmp:
# https://security.stackexchange.com/questions/22711
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
# log iptables denied calls (access via 'dmesg' command)
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7
# Reject all other inbound - default deny unless explicitly allowed policy:
-A INPUT -j REJECT
-A FORWARD -j REJECT
COMMIT

看起来很复杂,其实一条一条的看,你会发现我们只留下了80、443和ssh端口允许访问,其他的全都关闭了,其中80和443是浏览器用到的端口。

启用测试规则:

1
iptables -restore < /etc/iptables.test.rules

查看变化

1
iptables -L

结果会提示我们只开启了被允许的端口,其余的都关闭了。

如果你愿意的话, 可以把新规则添加到主iptables文件中。

1
iptables -save > /etc/iptables.up.rules

为了确保iptables在重启后被启用,我们需要新建一个文件:

1
editor /etc/network/if-pre-up.d/iptables

再在文件中添加几行:

1
2
#!/bin/sh
/sbin/iptables-restore < /etc/iptables.up.rules

然后给文件添加执行权限:

1
chmod +x /etc/network/if-pre-up.d/iptables

Note:这篇指引是由Geejay贡献给wiki.openvz.org 作为容器安装指引的一部分

参考

Contents
  1. 1. 查看当前配置
  2. 2. 在文件中存储iptables
  3. 3. 参考