01-15-2024 02:20 PM
Just wanted to know how can I summarize individual ip routes from user vpn to a summary route to upstream devices.
01-15-2024 02:24 PM - edited 01-15-2024 02:33 PM
sure, if you run IGP like OSPF you can summary (summary address is same as VPN Pool subnet) address and advertise to Upstream device.
NOTE:- no need any more redistribute connect/static for any connect vpn route, this will lead to advertise all VPN /32 host IP.
MHM
01-15-2024 02:25 PM
@Pradip Bhattacharya create a summary route and redistribute using your dynamic routing protocol. Example:
prefix-list RAVPN-ROUTES seq 5 permit 192.168.14.0/24 le 32
!
route-map VPN-ROUTES permit 10
match ip address prefix-list RAVPN-ROUTES
!
router ospf 1
redistribute static subnets route-map VPN-ROUTES
01-15-2024 02:30 PM
Thank you
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide