独学而无友,则孤陋而寡闻!
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
在线反解php Zend加密的文件 | 4259 | 0 | 0 | 2013-12-10 | |
【推荐】 PostGreSql下的FreeRadius 清除非正常掉线用户 | 5946 | 1 | 2 | 2013-12-07 | |
2013版:PostgreSql和mysql的插入,检索对比 | 2676 | 0 | 0 | 2013-11-02 | |
FreeBSD9.2下安装php-fpm | 2956 | 0 | 0 | 2013-10-13 | |
【推荐】 MPD+FreeRadius做PPPoE限制用户多次登录 | 6148 | 0 | 1 | 2013-10-09 | |
Claroline 1.11.8中文utf-8修改版 | 5640 | 8 | 0 | 2013-09-30 | |
H3C 交换机的IP接口数 | 1993 | 0 | 0 | 2013-08-08 | |
虚拟中的BT | 1509 | 0 | 0 | 2013-07-15 | |
Claroline中在课程首页添加课程元素 | 2290 | 0 | 0 | 2013-06-11 | |
FreeRadius用md5加密方式保存pppoe密码 | 6691 | 0 | 0 | 2013-06-09 | |
windows的telnet到Unix,是单字符发送而不是整行发送 | 7643 | 0 | 0 | 2013-06-08 | |
源代码中的FreeBSD版本信息 | 1738 | 0 | 0 | 2013-05-12 | |
vi常用的选择命令 | 1562 | 0 | 0 | 2013-05-10 | |
FreeBSD 9-stable后的ifconfig设置IP的变化 | 2890 | 0 | 0 | 2013-05-02 | |
jQuery中用.each遍历输入框举例 | 2736 | 0 | 0 | 2013-04-22 | |
常见LED显示器点距一览表 | 9060 | 0 | 0 | 2013-04-12 | |
Jquery中this与$(this)的区别 | 1553 | 0 | 0 | 2013-04-10 | |
PHP手册中shm常用函数及部分解释——Semaphore模块 | 3597 | 0 | 0 | 2013-04-07 | |
ats的proxy.config.system.mmap_max竟然没有使用? | 2465 | 0 | 0 | 2013-03-22 | |
【推荐】 FreeBSD下获得coredump | 2953 | 0 | 0 | 2013-03-19 |
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部分后则完全没有问题,实在是让我郁闷不已,望不吝赐教