独学而无友,则孤陋而寡闻!
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
discuzX的常用全局变量 | 10338 | 0 | 0 | 2010-10-30 | |
discuz门户模板笔记 | 3900 | 0 | 0 | 2010-10-30 | |
龙芯openbsd下ONMP的安装 | 2691 | 0 | 0 | 2010-10-23 | |
PHP动态模块编译三步曲 | 1934 | 0 | 0 | 2010-10-22 | |
OpenBSD速度较快的源 | 1480 | 0 | 0 | 2010-10-21 | |
龙芯pmon使用小结 | 7691 | 0 | 1 | 2010-10-21 | |
龙芯盒子下的nginx+php-fcgi | 2050 | 0 | 0 | 2010-10-21 | |
Nginx优化配置 | 1225 | 0 | 0 | 2010-10-21 | |
spawn fastcgi 网址 | 1751 | 0 | 0 | 2010-10-20 | |
龙芯php5.3.3编译错误 | 2316 | 0 | 0 | 2010-10-20 | |
龙芯常用命令(debian) | 1447 | 0 | 0 | 2010-10-20 | |
debian与FreeBSD的不同 | 2918 | 0 | 0 | 2010-10-17 | |
claroline邮件系统附件设计 | 1204 | 0 | 0 | 2010-10-15 | |
claroline内部邮件系统分析 | 1512 | 0 | 0 | 2010-10-15 | |
claroline插入图片对话框过大的调整 | 1566 | 0 | 1 | 2010-10-13 | |
supesite与hdwiki、Discuz整合注意事项 | 2033 | 0 | 0 | 2010-10-09 | |
在supesite中添加一个外部数据调用的频道 | 1304 | 0 | 0 | 2010-10-09 | |
解决DISCUZ7.2和supesite聚合设置,提示“论坛路径错误的方法” | 1119 | 0 | 0 | 2010-10-09 | |
discuz的标签处理文件 | 925 | 0 | 0 | 2010-10-08 | |
类型函数集 | 1023 | 0 | 0 | 2010-10-07 |
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部分后则完全没有问题,实在是让我郁闷不已,望不吝赐教