返回列表 發帖

Mikrotik adblock script #block廣告#

本帖最後由 hklkf 於 2018-2-15 12:28 編輯

I found a ads block script after test it is work!!!
  1. /ip firewall nat
  2. add action=redirect chain=dstnat dst-port=53 in-interface=bridge protocol=udp
複製代碼
  1. /system script
  2. add name=adblock policy=\
  3. ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon source=":\
  4. log warning \"starting adblock update\";\r\
  5. \n\
  6. \n\
  7. \n:delay 20;\r\
  8. \n\
  9. \n\
  10. \n:log warning \"downloading adblock\";\r\
  11. \n\
  12. \n\
  13. \n\
  14. \n\
  15. \n:local hostScriptUrl \"https://www.micu.eu/adblock/adblock.php\";\
  16. \n\
  17. \n\
  18. \n\
  19. \n\r\
  20. \n:local scriptName \"adblock\";\
  21. \n\
  22. \n\
  23. \n\
  24. \n\r\
  25. \ndo {\
  26. \n\
  27. \n /tool fetch mode=http url=\$hostScriptUrl dst-path=(\"./\".\$scriptName\
  28. );\
  29. \n\
  30. \n\r\
  31. \n:delay 20;\
  32. \n\
  33. \n\r\
  34. \n:if ([:len [/file find name=\$scriptName]] > 0) do={\r\
  35. \n\
  36. \n\
  37. \n :log warning \"removing old adblock list\";\
  38. \n\
  39. \n\r\
  40. \n /ip dns static remove [/ip dns static find address=127.0.0.1];\
  41. \n\
  42. \n\r\
  43. \n :log warning \"importing new adblock list\";\r\
  44. \n\
  45. \n\
  46. \n /import file-name=\$scriptName;\r\
  47. \n\
  48. \n\
  49. \n /file remove \$scriptName;\r\
  50. \n\
  51. \n\
  52. \n :log warning \"adblock list imported\";\r\
  53. \n\
  54. \n\
  55. \n } else={\
  56. \n\
  57. \n \r\
  58. \n:log warning \"adblock list not downloaded, script stopped\";\r\
  59. \n\
  60. \n\
  61. \n }\r\
  62. \n\
  63. \n\
  64. \n} on-error={\
  65. \n\
  66. \n \r\
  67. \n:log warning \"adblock list download FAILED\";\
  68. \n\
  69. \n\r\
  70. \n};"
  71. /system scheduler
  72. add interval=1d name=adblock on-event=adblock policy=\
  73. ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon \
  74. start-time=startup
  75. add name=adblock_startup on-event=\
  76. ":delay 30;\r\
  77. \n/system script run adblock" policy=\
  78. ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon \
  79. start-time=startup
複製代碼

CHing这的script有什么用?

TOP

回復 2# 角色


    block廣告

TOP

本帖最後由 gfx86674 於 2018-2-16 22:12 編輯

有更快的方式匯入
打開網站https://www.micu.eu/adblock/adblock.php

上面的文字全複製下來 ,然後打開電腦的記事本將文字全貼上去.
將路徑設為您的桌面,檔名儲存為ad.txt

打開Winbox的Files視窗(檔案夾),將ad.txt從桌面用滑鼠拉進檔案夾內.

打開Winbox命令視窗(New Terminal),輸入import ad.txt後確定.
等提示匯入成功的文字後,即完成匯入.

TOP

打開script內這個網站
會發現它是這樣的格式127.0.0.1 name=ac3.msn.com

這原本應該是應用在windows上,
用 ...
gfx86674 發表於 2018-2-15 18:06


我的設備CCR1009-7G-1C-1S+ X86 ROS 1037U

TOP



need?

TOP

回復 6# carlchan


    no

TOP

返回列表