Mikrotik Tools

Static Routing VPN Game Script Generator

pptp Game Routing Method

Script Result Output

######################################################
# VPN Game Script Generator By Mua.lat
# Date/Time:
# VPN Protocol: pptp
######################################################
/interface pptp-client
add connect-to="[Remote IP Required]" \
  disabled=no \
  name="VPN-GAME" \
  user="[Username Required]" \
  password="[Password Required]" \
  comment="VPN-GAME"
/ip firewall nat
add chain=srcnat out-interface="VPN-GAME" action=masquerade comment="VPN-GAME"
/ip route
add gateway="VPN-GAME" routing-mark=vpn-routing-game comment="VPN-GAME"
/ip firewall mangle
# Select games from sidebar to generate mangle rules...

Cleanup Commands (To Remove Rules)

/interface pptp-client remove [find comment="VPN-GAME"]
/ip route remove [find comment="VPN-GAME"]
/ip firewall nat remove [find comment="VPN-GAME"]
/ip firewall mangle remove [find new-routing-mark="vpn-routing-game"]