So I have an issue with RDP being slow and sending video over VPN connections and traced it down to FastTrack, disabling would allow the videos to load, RDP and overall performance increased. From MT forum I created the rules below and at this point everything seems to work now. We want to use “Usermanger” for our level 2 admins to add clients on the fly so they do not have to enter the core router (MT Radius and Userman beautiful, thank you). I seems there is no way to add VPN interface to WAN interface-list list to bypass the “drop all from WAN not DSTNATed” rule. Since I have the accept rules before the “drop all from WAN not DSTNATed” rule this should be ok even though I believe they are not technically DSTNated unless it considers the router the DST.
Can I get some thoughts, is this safe?
add action=accept chain=input comment="Allow SSTP" dst-port=1443 in-interface=ether2 protocol=tcp
add action=accept chain=input comment="Allow IPsec NAT" dst-port=4500 in-interface=ether2 protocol=udp
add action=accept chain=input comment="Allow IKE" dst-port=500 in-interface=ether2 protocol=udp
add action=accept chain=input comment="Allow L2TP" dst-port=1701 in-interface=ether2 protocol=udp
add action=accept chain=input comment="Allow PPTP" dst-port=1723 in-interface=ether2 protocol=tcp
add action=accept chain=input in-interface=ether2 protocol=gre
add action=accept chain=input in-interface=ether2 protocol=ipsec-esp
add action=accept chain=input in-interface=ether2 protocol=ipsec-ah
add chain=output comment="Default Firewall - Start of Basic Firewall" disabled=yes
add action=drop chain=input comment="Default Firewall - DNS Block TCP" connection-state=new dst-port=53 in-interface=ether2 protocol=tcp
add action=drop chain=input comment="Default Firewall - DNS Block UDP" connection-state=new dst-port=53 in-interface=ether2 protocol=udp
add action=accept chain=input comment="Default Firewall - Accept established,related,untracked" connection-state=established,related,untracked
add action=drop chain=input comment="Default Firewall - Drop Invalid Connections" connection-state=invalid
add action=accept chain=input comment="Default Firewall - Accept ICMP" protocol=icmp
add action=drop chain=input comment="Default Firewall - drop all not coming from LAN" in-interface-list=!LAN
add action=accept chain=forward comment="Default Firewall - Fasttrack Connection Manager" connection-state=established,related,untracked
add action=drop chain=forward comment="Default Firewall - Drop Invalid Connections" connection-state=invalid
add action=accept chain=forward comment="Default Firewall - Accept in ipsec policy" ipsec-policy=in,ipsec
add action=accept chain=forward comment="Default Firewall - Accept out ipsec policy" ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="Default Firewall - Fasttrack disable for IPsec VPN Connections" connection-mark=!ipsec connection-state=established,related
add action=fasttrack-connection chain=forward comment="Default Firewall - Fasttrack Connection Manager" connection-state=established,related
add action=drop chain=forward comment="Default Firewall - drop all from WAN not DSTNATed" connection-nat-state=!dstnat in-interface-list=WAN
add chain=output comment="Default Firewall - End of Basic Firewall" disabled=yes