免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2103 | 回复: 8
打印 上一主题 下一主题

[网络配置] shell的do循环中取不到变量(去掉uniq -c解决了) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-04-27 11:03 |只看该作者 |倒序浏览
本帖最后由 du_liang 于 2013-04-27 11:40 编辑

white_list="192.168.1.8|192.168.1.102"

cat $iplist|while read line
do
    access_times=`echo $line|awk '{print $1}'`
    access_ipadd=`echo $line|awk '{print $2}'|grep -Ev $white_list`|uniq -c
echo ${access_ipadd} 这
echo ${line}
    if [ $access_times -gt 10 ];then
        iptables -A INPUT -s $access_ipadd -j DROP
    fi
done

调试:
+ read line
++ echo 57 192.168.1.137
++ awk '{print $1}'
+ access_times=57
++ echo 57 192.168.1.137
++ awk '{print $2}'
+ uniq -c
++ grep -Ev '192.168.1.8|192.168.1.102'
+ access_ipadd=192.168.1.137
+ echo

+ echo 57 192.168.1.137
57 192.168.1.137
+ '[' 57 -gt 10 ']'
+ iptables -A INPUT -s -j DROP
Bad argument `DROP'
Try `iptables -h' or 'iptables --help' for more information.
+ read line

论坛徽章:
0
2 [报告]
发表于 2013-04-27 11:12 |只看该作者
+ read line
++ echo 57 192.168.1.137
++ awk '{print $1}'
+ access_times=57
++ echo 57 192.168.1.137
++ awk '{print $2}'
+ uniq -c
++ grep -Ev '192.168.1.8|192.168.1.102'
+ access_ipadd=192.168.1.137
+ echo
http://v.zjjga.gov.cn/
+ echo 57 192.168.1.137
57 192.168.1.137
+ '[' 57 -gt 10 ']'
+ iptables -A INPUT -s -j DROP
Bad argument `DROP'
Try `iptables -h' or 'iptables --help' for more information.
这时c++语言吗?
+ read line

论坛徽章:
0
3 [报告]
发表于 2013-04-27 11:13 |只看该作者
这是shell啊

论坛徽章:
0
4 [报告]
发表于 2013-04-27 11:21 |只看该作者
iptables -A INPUT -s ${access_ipadd} -j DROP

论坛徽章:
0
5 [报告]
发表于 2013-04-27 11:30 |只看该作者
回复 4# pix77

不行,前面的echo 都取不到的哦


   

论坛徽章:
0
6 [报告]
发表于 2013-04-27 11:40 |只看该作者
access_ipadd=`echo $line|awk '{print $2}'|grep -Ev $white_list |uniq -c`

论坛徽章:
0
7 [报告]
发表于 2013-04-27 11:45 |只看该作者
回复 6# pix77

去掉后面的就OK了


   

论坛徽章:
33
ChinaUnix元老
日期:2015-02-02 08:55:39CU十四周年纪念徽章
日期:2019-08-20 08:30:3720周年集字徽章-周	
日期:2020-10-28 14:13:3020周年集字徽章-20	
日期:2020-10-28 14:04:3019周年集字徽章-CU
日期:2019-09-08 23:26:2519周年集字徽章-19
日期:2019-08-27 13:31:262016科比退役纪念章
日期:2022-04-24 14:33:24
8 [报告]
发表于 2013-04-28 18:07 |只看该作者
sub shell的问题,打开ABS,看看第295页。

Advanced Bash-Scripting Guide 3.9.1 中文版.pdf
http://bbs.chinaunix.net/thread-1610033-1-1.html

论坛徽章:
0
9 [报告]
发表于 2013-05-07 13:28 |只看该作者

回复 8# Shell_HAT

谢谢啊


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP