Chinaunix首页 | 论坛 | 博客
  • 博客访问: 101358
  • 博文数量: 9
  • 博客积分: 2501
  • 博客等级: 少校
  • 技术积分: 510
  • 用 户 组: 普通用户
  • 注册时间: 2006-06-28 23:34
文章分类

全部博文(9)

文章存档

2011年(1)

2009年(1)

2008年(7)

我的朋友

分类: LINUX

2008-09-15 19:24:08

/ ip firewall filter add chain=forward content="octet-stream" action=drop comment="Blockade Thunder 1.Thread" disabled=no
 
 
 
 

相信大家都深受迅雷的折磨..痛苦啊..

现在教大家一套100%能防止局域网内迅雷下载的办法..

本人用了大半年了..效果非常的不错..大家可以测试一下..

如果迅雷公司知道了这事后..我就怕这就不行了..呵..

不过..兵来将挡..水来土掩...

本方法是利用路由器的过滤关键字功能..把迅雷发向服务器请求资源的命令给拦截了..

这样可以达到迅雷无法获取资源而成了普通没用的下载工具..

下面这个代码是完全封锁迅雷..即让迅雷啥东西都下载不了..绝...

ROS代码如下:

/ ip firewall filter add chain=forward content="octet-stream" action=drop comment="NO Thunder" disabled=no
/ ip firewall filter add chain=forward content="Pragma: no-cache" action=drop comment="" disabled=no
/ ip firewall filter add chain=forward content="Connection: close" action=drop comment="" disabled=no
/ ip firewall filter add chain=forward content="Range: bytes=" action=drop comment="" disabled=no
/ ip firewall filter add chain=forward content="Cookie: __utma=" action=drop comment="" disabled=no
/ ip firewall filter add chain=forward content="filename=" action=drop comment="" disabled=no
/ ip firewall filter add chain=forward content="Cookie rtime=" action=drop comment="" disabled=no
/ ip firewall filter add chain=forward content="Content-Disposition: attachment;" action=drop comment="" disabled=no

其它路由可以通过关键字过滤功能封锁以下关键字:

octet-stream
Pragma: no-cache
Connection: close 
Range: bytes= 
Cookie: __utma= 
filename= 
Cookie rtime= 
Content-Disposition: attachment;

下面这个代码是让迅雷成为普通的下载工具(即用原始线程下载,单线程,这样对宽带占用不大)

ROS代码如下:

/ ip firewall filter add chain=forward content="octet-stream" action=drop comment="Blockade Thunder 1.Thread" disabled=no

其它路由可以通过关键字过滤功能封锁以下关键字:

octet-stream

此脚本在本人开发的ROS脚本生成器1.6以上的版本都有此功能..而且不断更新..

阅读(2457) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~