I want to forward the 802.1x traffic from the WLAN controller to my RADIUS server which connects to the Customer router via a PPTP tunnel as per the below.
802.1x <---> (External IP: 192.168.0.9) RB1 (Internal IP: 10.0.0.226) <---PPtP---> (10.0.0.1) RB2 (10.0.50.1)<---> RADIUS Server (10.0.50.30)
I have configured the following dst-nat on RB1, but I don't think this will work as my understanding is that dst-nat can only be applied to local addresses, i.e. RB1 will not forward the traffic to RB2 via the PPTP tunnel.
Code: Select all
/ip firewall nat
add action=dst-nat chain=dstnat comment="Forward 802.1x traffic to 10.0.50.30" disabled=no dst-address=192.168.0.9 dst-port=\
1812 in-interface=internet protocol=udp to-addresses=10.0.50.30 to-ports=1812
add action=dst-nat chain=dstnat comment="Forward 802.1x traffic to 10.0.50.30" disabled=no dst-address=192.168.0.9 dst-port=\
1813 in-interface=internet protocol=udp to-addresses=10.0.50.30 to-ports=1813
Thanks,
Nico