Tag: 限制

流量限制工具 PHREL

nick | linux, open | 2011-09-13
PHREL 是一个针对每个主机的网络流量限制工具,它会跟踪每个输入流量情况,并通过在 iptables 来配置流量限制。 The inserted chain may either rate limit or block the offending host for a period of time. The inserted chain is automatically removed when the offending host’s traffic levels return to normal. PHREL is particula... [阅读全文]

nginx.conf控制指定的代理ip和ip访问的设置手记

nick | nginx | 2010-10-23
工作中有一次用到利用nginx的配置来让只有公司ip的访问才能打开指定的后台url,于是有了下面的记录。 在nginx中if很弱,http://www.nginxcn.com/doc/standard/httprewrite.html,基本上不能写太复杂的条件或者是嵌套。 因为公司我(54chen)网络的设置,过去打到服务器的ip有可能是几个ip,同时也有可能是代理的ip,所以在if判断的时候,可能有多个条件。... [阅读全文]

深悉正则(pcre)最大回溯/递归限制

nick | js, php | 2010-06-14
对于如下的正则: /<script>.*?<\/script>/is 当要匹配的字符串长度大于100014的时候, 就不会得出正确结果: $reg = "/<script>.*?<\/script>/is"; $str = "<script>********</script>"; //长度大于100014 $ret = preg_repalce($reg, "", $str); //返回NULL 难道正则对匹配的串有长度限制? 不是, 当然不是, 原... [阅读全文]
Ɣ回顶部