Skip to content

Latest commit

 

History

History
75 lines (58 loc) · 3.42 KB

mikrotik-tutorial.en.md

File metadata and controls

75 lines (58 loc) · 3.42 KB

BYPASS DPI USING MIKROTIK

Indonesia | English

Following this instruction is in your own risk. I'm not responsible for content you are trying to access after following this tutorial or the damage you done during the installation process. Please use it wisely and follow the instruction carefully

Steps

  1. Login into your RouterOS and open Terminal
  2. Run this command to bypass National DNS: (Choose one)

[ BLOCK AD ]

# Script by BebasID Community

/ip firewall nat add action=dst-nat chain=dstnat comment="BebasID DNS" dst-port=53 protocol=tcp to-addresses=103.87.68.24 to-ports=1753
/ip firewall nat add action=dst-nat chain=dstnat comment="BebasID DNS" dst-port=53 protocol=udp to-addresses=103.87.68.24 to-ports=1753

[ BLOCK MALWARE ]

# Script by BebasID Community
/ip firewall nat add action=dst-nat chain=dstnat comment="BebasID DNS" dst-port=53 protocol=tcp to-addresses=103.87.68.23 to-ports=1753
/ip firewall nat add action=dst-nat chain=dstnat comment="BebasID DNS" dst-port=53 protocol=udp to-addresses=103.87.68.23 to-ports=1753

[ BLOCK VIRUS, ADULT CONTENT & GAMBLING ]

# Script by BebasID Community
/ip firewall nat add action=dst-nat chain=dstnat comment="BebasID DNS" dst-port=53 protocol=tcp to-addresses=103.87.68.72 to-ports=1753
/ip firewall nat add action=dst-nat chain=dstnat comment="BebasID DNS" dst-port=53 protocol=udp to-addresses=103.87.68.72 to-ports=1753
  1. Run this command as well to bypass Kominfo DPI:
# Script by BebasID Community

/ip firewall filter add comment="BebasIT | Bypass DPI" chain=forward protocol=tcp in-interface=[YOUR WAN INTERFACE] content="Location: http://lamanlabuh.aduankonten.id/" action=drop
/ip firewall filter add comment="BebasIT | Bypass DPI" chain=forward protocol=tcp in-interface=[YOUR WAN INTERFACE] tcp-flags=rst,ack action=drop

Change [YOUR WAN INTERFACE] with your internet source interface like this:

# Script by BebasID Community

/ip firewall filter add comment="BebasIT | Bypass DPI" chain=forward protocol=tcp in-interface=ether1 content="Location: http://lamanlabuh.aduankonten.id/" action=drop
/ip firewall filter add comment="BebasIT | Bypass DPI" chain=forward protocol=tcp in-interface=ether1 tcp-flags=rst,ack action=drop

FOR INDOSAT USERS, PLEASE ADD THIS RULE DUE TO INDOSAT ALSO SEND ADDITIONAL REQUEST OTHER THAN LAMANLABUH FOR HTTP BLOCKING

# Script by BebasID Community

/ip firewall filter add comment="BebasIT | Bypass DPI" chain=forward protocol=tcp in-interface=[INTERFACE WAN ANDA] content="Location: http://ads.indosatooredoo.com/ads-request" action=drop

FOR MYREPUBLIC USERS, PLEASE ADD THIS RULE DUE TO MYREPUBLIC ALSO SEND ADDITIONAL REQUEST OTHER THAN LAMANLABUH FOR HTTP BLOCKING

# Script by BebasID Community

/ip firewall filter add comment="BebasIT | Bypass DPI" chain=forward protocol=tcp in-interface=[INTERFACE WAN ANDA] content="Location: https://block.myrepublic.co.id" action=drop
  1. All set and let's try!