brutmus
December 7, 2021, 11:03am
1
I have NordVPN setup on RB5009 7.1 working with vlans.
I have problems accessing devices on different vlans internally, all routing seems to go through the tunnel.
/ip firewall mangle
add action=mark-connection chain=prerouting new-connection-mark=under_nordvpn
passthrough=yes src-address-list=under_nordvpn
I can’t figure this out, so please help me.
You need an exception to your Mangle-Rule.
Many ways to solve this Problem..
You can add an address-list with the IP`s and/or IP-Ranges you would like to exclude from NORDVPN
For exemple “LAN_List” and include add 10.10.0.0/24
/ip firewall mangle
add action=mark-connection chain=prerouting new-connection-mark=under_nordvpn
passthrough=yes src-address-list=under_nordvpn dst-address-list=!LAN_List
brutmus
December 7, 2021, 11:33am
3
Thank you! Working great!
Glad i could Help !
The new Mangle-Rule basicly says :
Every Client-IP listed under “under_nordvpn” schould go thru the VPN,
EXCEPT if the Destination-IP is listed under “LAN_List”