独学而无友,则孤陋而寡闻!
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
为Claroline练习的成绩追踪加上IP信息 | 1528 | 0 | 0 | 2012-03-12 | |
解决Claroline在查看练习统计时页面慢的问题 | 1474 | 0 | 0 | 2012-03-11 | |
Magento的交易状态 | 1958 | 0 | 0 | 2011-11-08 | |
Magento显示商品的附加条件 | 1744 | 0 | 0 | 2011-10-23 | |
magento无法使用Firefox登录后台 | 2004 | 0 | 0 | 2011-10-22 | |
magento的支付插件源码 | 1648 | 0 | 0 | 2011-10-21 | |
magento使用小记 | 1801 | 0 | 0 | 2011-10-16 | |
SEOMOZ对于页面优化的建议 | 1354 | 0 | 0 | 2011-08-11 | |
http协议content-encoding & transfer-encoding | 1925 | 0 | 0 | 2011-08-10 | |
discuz、dede、typo3网站模板比较 | 1457 | 0 | 0 | 2011-07-12 | |
discuz网址带forum.php的问题 | 1774 | 0 | 0 | 2011-06-29 | |
汉字转为百分号的网址的转换 | 15588 | 0 | 0 | 2011-06-08 | |
claroline的课程讲义中不显示文件扩展名的方法 | 3368 | 0 | 0 | 2011-06-03 | |
Claroline1.10.2在选择课程分类时无反应 | 1569 | 0 | 0 | 2011-03-31 | |
Claroline1.10.2中文修正版 | 7011 | 0 | 0 | 2011-03-28 | |
Claroline习题导入、导出乱码的解决 | 4745 | 0 | 0 | 2011-03-26 | |
Claroline模块:userweb | 3338 | 0 | 0 | 2011-03-26 | |
DiscuzX1.5中DIY的数据来源模块 | 2344 | 0 | 0 | 2011-03-16 | |
discuz插件编写(三) | 1825 | 0 | 0 | 2011-03-07 | |
dedecms调用discuz论坛日志,头像相册方法整理贴 | 12409 | 0 | 0 | 2011-02-13 |
adx1102011-06-18 19:43
superzjq2011-06-10 23:38
非常感谢老师的关注:)使用skipto可以解决这个问题
但还有点疑问,one_pass不是只跟nat和pipe有关吗,limit应该是属于动态规则吧 ?
在下不才 针对两种情况进行了测试
net.inet.ip.fw.one_pass = 0
# ipfw show
00100 9 529 allow ip from 192.168.1.0/24 to any in via em1 limit src-addr 100
00200 0 0 nat 1 ip from 192.168.1.0/24 to any out via em0
00300 0 0 nat 1 ip from any to me in via em0
00400 3 373 allow ip from any to any(用来匹配所有重新进入ipfw的数据包)
65535 0 0 deny ip from any to any
net.inet.ip.fw.one_pass = 1
# ipfw show
00100 8 480 allow ip from 192.168.1.0/24 to any in via em1 limit src-addr 100
00200 0 0 nat 1 ip from 192.168.1.0/24 to any out via em0
00300 0 0 nat 1 ip from any to me in via em0
00400 0 0 allow ip from any to 192.168.1.0/24 out via em1
65535 45 1262 deny ip from any to any
其中em0接外网,em1接内网,有没one_pass都一样,数据包一被limit匹配后就没了下文
只能跟skipto一起使用,不知道是不是BUG,还是说有哪些地方需要设置
我用的是FreeBSD 8.2,内核配置都是默认的
superzjq2011-05-26 17:59
老师您好,能否帮我看下这段配置
ipfw add allow ip from 192.168.1.0/24 to any in via em1 limit src-addr 10
ipfw add nat 1 ip from 192.168.1.0/24 to any out via em0
ipfw add nat 1 ip from any to me in via em0
ipfw nat 1 config if em0 log
ipfw add allow ip from any to any
em0接外网,em1接内网,做了NAT,想限制每IP连接数,已经明确指定了方向和接口,但不知为何数据包被第一条limit匹配后就无法到达第二条的nat上了,去掉第一条的limit部分后则完全没有问题,实在是让我郁闷不已,望不吝赐教