Create Server Dota Game Online in Mikrotik Tutorial

DOTA is one of the Warcraft games for the online version. GameNet games on this is the best-selling games in addition to games, other online games like ragnarok, sealonline, Pangya, deco and much more. other than these games for free, also very fun. Here I try to write about how to create the dota server in mikrotik.

Follow these steps on Mikrotik:

[admin@mikrotik] > ip firewall nat add chain=srcnat action=masquerade out-interface=Public

[admin@mikrotik] > ip address add address=202.xxx.xxx.xxx/32 interface=Public (xxx the content according to your public IP)

[admin@mikrotik] > ip firewall nat add chain=dstnat dst-address=202.xxx.xxx.xxx action=dst-nat to-addresses=192.168.***.*** (*** the content according to the local IP who want to create games)

[admin@mikrotik] > ip firewall nat add chain=srcnat src-address=192.168.***.*** action=src-nat to-addresses=202.xxx.xxx.xxx

In order for other clients on the LAN or within the same network can join, add the command:

[admin@mikrotik] > ip firewall nat add chain=dstnat dst-address=202.xxx.xxx.1-202.xxx.xxx.254 action=netmap to-addresses=192.168.***.1-192.168.***.254

[admin@mikrotik] > ip firewall nat add chain=srcnat src-address=192.168.***.1-192.168.***.254 action=netmap to-addresses=202.xxx.xxx.1-202.xxx.xxx.254

=====================================================

Fix Dota Rule on Mikrotik

Rules are suitable for the remote from outside the network, so that it can ping and certainly could see a graph bandwidth usage via Mikrotik MRTG / Cacti.

Rules like this:

ip firewall nat add chain=dstnat dst-address=202. x . x . x protocol=tcp dst-port=6113 action=dst-nat to-addresses=192.168. x . x to-ports=6113

ip firewall nat add chain=dstnat dst-address=202. x . x . x protocol=udp dst-port=6113 action=dst-nat to-addresses=192.168. x . x to-ports=6113

ip firewall nat add chain=srcnat src-address=192.168. x . x protocol=tcp src-port=6113 action=src-nat to-addresses=202. x . x . x to-ports=6113

ip firewall nat add chain=srcnat src-address=192.168. x . x protocol=udp src-port=6113 action=src-nat to-addresses=202. x . x . x to-ports=6113

ip firewall nat add chain=srcnat src-address=192.168. x . x -192.168. x . x action=netmap to-address=202. x . x . x -202. x . x . x to-ports=0-65535

source : harrychanputra.wordpress.com

 
Related Posts
  • Mikrotik Blocking Web
  • VLAN MIKROTIK TUTORIAL
  • Mikrotik Traffic Load Balancing Tutorial
  • Mikrotik Simple Firewall Tutorial
  • Mikrotik Hotspot and RADIUS Server Tutorial
  • Mikrotik Bandwidth Test Tutorial
  • Hardware Reset Mikrotik Tutorial
  • The Dude Network Monitoring From Mikrotik Tutorial
  • Load-balancing and Fail-over in MikroTik Tutorial
  • Setup Queue Tree Mikrotik with more than Two Interfaces Tutorial

1 comment

  1. safir says:

    pernjelasannya pleaseeee

Leave a Reply