I'm trying to send multiples routes (10.0.0.0/8 network and 172.16.0.0/12 network) to my L2TP client (Windows 7), but I'm only getting the 10.0.0.0/8 network being installed in Windows routing table
Code: Select all
> ppp secret print detail
Flags: X - disabled
0 name="tomasi" service=l2tp caller-id="" password="Pa$$worD" profile=default local-address=10.19.19.1 remote-address=10.19.19.2 \
routes="10.0.0.0/8 172.16.0.0/12" limit-bytes-in=0 limit-bytes-out=0 last-logged-out=jan/16/2021 09:55:33
On client side (Windows 7) the 10.0.0.0/8 network is being automagically installed in route table.
Default route is not being installed (great, my aim is to send only specific traffic inside the L2TP tunnel)
Code: Select all
C:\Windows\system32>route print
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.25.254 192.168.25.192 25
10.0.0.0 255.0.0.0 10.19.19.1 10.19.19.2 26
10.19.19.2 255.255.255.255 On-link 10.19.19.2 281
Is there a way to install multiple routes (10.0.0.0/8 + 172.16.0.0/12) via L2TP?
Thanks!