- 論壇徽章:
- 0
|
/ ip firewall filter add chain=forward content="octet-stream" action=drop comment="Blockade Thunder 1.Thread" disabled=no
相信大家都深受迅雷的折磨..痛苦啊..
現(xiàn)在教大家一套100%能防止局域網(wǎng)內(nèi)迅雷下載的辦法..
本人用了大半年了..效果非常的不錯..大家可以測試一下..
如果迅雷公司知道了這事后..我就怕這就不行了..呵..
不過..兵來將擋..水來土掩...
本方法是利用路由器的過濾關鍵字功能..把迅雷發(fā)向服務器請求資源的命令給攔截了..
這樣可以達到迅雷無法獲取資源而成了普通沒用的下載工具..
下面這個代碼是完全封鎖迅雷..即讓迅雷啥東西都下載不了..絕...
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
此腳本在本人開發(fā)的ROS腳本生成器1.6以上的版本都有此功能..而且不斷更新..
本文來自ChinaUnix博客,如果查看原文請點:http://blog.chinaunix.net/u/21251/showart_1193885.html |
|