Hi,
We have an MX connected to a MS and then, to an ISR.
MX <--> MS <--> ISR
The ISR is our Voice Gateway, which is VLAN 30 (IP = 10.10.30.1), and it has a Management interface which stands in VLAN 10 (IP = 10.10.10.1).
In order to access our voice vlan from the ClientVPN, I added a static route in the ISR with:
ip route 192.168.102.0 255.255.255.0 10.10.30.254
where 192.168.102.0 is our ClientVPN subnet and 10.10.30.254 is the MX IP for VLAN 30.
Everything good so far, but if I try to access the ISR's management interface I get this error in the MX log:
The only way that I achieved to make it work, is adding a second static route like this:
ip route 192.168.102.0 255.255.255.0 10.10.10.254
where 10.10.10.254 is the MX IP.
My question is, how can I reach both subnets without adding two static routes?