1。文件
文件/etc/ssh/ipblock
包含如下所示的行:
2012-01-01 12:00 192.0.2.201
2012-01-01 14:15 198.51.100.123
2012-02-15 09:45 192.0.2.15
2012-03-12 21:45 192.0.2.14
2012-04-25 00:15 203.0.113.243
2。命令
命令iptables -nL somechain
的输出如下所示:
Chain somechain (2 references) target prot opt source destination DROP all -- 172.18.1.4 anywhere DROP all -- 198.51.100.123 anywhere DROP all -- 172.20.4.16 anywhere DROP all -- 192.0.2.125 anywhere DROP all -- 172.21.1.2 anywhere
第3。手头的任务
iptables -A somechain -d IP -j DROP
4。背景
我希望扩展我的awk-fu,所以我一直试图使用一个可以在没有参数的情况下执行的awk脚本。但我失败了。
我知道我可以使用getline
命令从命令中获取输出,这样我就可以获得时间和日期。我也知道可以使用getline foo < file
读取文件。但是我只有很多次尝试将这些内容组合成一个有效的awk脚本。
我意识到我可以使用其他编程语言或shell脚本。但这可以通过一个可以不带参数运行的awk脚本来完成吗?
答案 0 :(得分:3)
我认为这几乎就是你要找的东西。这个工作,一个文件,代码我猜是几乎不言自明...... 易于适应,可扩展...
<强> USAGE:强>
./foo.awk CHAIN ip.file
<强> foo.awk:强>
#!/usr/bin/awk -f
BEGIN {
CHAIN= ARGV[1]
IPBLOCKFILE = ARGV[2]
while((getline < IPBLOCKFILE) > 0) {
IPBLOCK[$3] = 1
}
command = "iptables -nL " CHAIN
command |getline
command |getline
while((command |getline) > 0) {
IPTABLES[$4] = 1
}
close(command)
print "not in IPBLOCK (will be appended):"
command = "date +'%Y-%m-%d %H:%M'"
command |getline DATE
close(command)
for(ip in IPTABLES) {
if(!IPBLOCK[ip]) {
print ip
print DATE,ip >> IPBLOCKFILE
}
}
print "not in IPTABLES (will be appended):"
# command = "echo iptables -A " CHAIN " -s " //use for testing
command = "iptables -A " CHAIN " -s "
for(ip in IPBLOCK) {
if(!IPTABLES[ip]) {
print ip
system(command ip " -j DROP")
}
}
exit
}
答案 1 :(得分:1)
做1&amp; 3:
comm -13 <(awk '{print $3}' /etc/ssh/ipblock | sort) <(iptables -nL somechain | awk '/\./{print $4}' | sort) | xargs -n 1 echo `date '+%y-%m-%d %H:%M'` >> /etc/ipblock
做2&amp; 4:
comm -13 <(awk '{print $3}' /etc/ssh/ipblock | sort) <(iptables -nL somechain | awk '/\./{print $4}' | sort) | xargs -n 1 iptables -A somechain -d IP -j DROP
该命令由以下构建块构成:
fifo
文件,它基本上“包含”给定命令的输出。在我们的例子中,输出将是ip地址。awk
脚本的输出传递给comm
程序,两个awk
脚本都非常简单:它们只是打印ip地址。在第一种情况下,所有ips都包含在第三列中(因此$3
),而在第二种情况下,所有ips都包含在第四列中,但是必须删除列标题(“destination”字符串),如此简单的正则表达式使用/\./
:它过滤掉所有不包含点的字符串。comm
要求对两个输入进行排序,因此使用awk
sort
的输出进行排序
comm
程序收到两个ip地址列表。如果没有给出选项,它会打印三列:FILE1独有的行,FILE2独有的行,两个文件中的行。通过将-23
传递给它,我们只获得FILE1唯一的行。同样,传递-13
会使输出行对FILE2唯一。xargs
基本上是bash中的“foreach”循环,它为每个输入行执行一个给定的命令(感谢-n 1
)。第二个是非常明显的(这是所需的iptables
调用)。第二个也不复杂:它只是让date
以适当的格式输出当前时间。