06-18-2024 07:12 AM
so I'm migrating an l2tp tunnel to an eompls link i'd like to to attach the same rate-limiter ex: (2 cisco 2900's)
class-map match-all L2TPV3-TRAFFIC match access-group 130 policy-map L2TP_PM_OUT class L2TPV3-TRAFFIC shape average 40000000 class class-default policy-map TUN_PM_OUT class class-default shape average 50000000 service-policy L2TP_PM_OUT access-list 130 permit 115 any any int tunnel1 .... service-policy output TUN_PM_OUT
with l2tp i could select the traffic by protocol, but eompls is just mpls traffic?
the new config is pretty simple, however i'll have multiple pseudowires terminating on one device so i'd like to apply it at the tunnel level .
interface GigabitEthernet0/0 no ip address duplex auto speed auto no lldp transmit no lldp receive no cdp enable xconnect 192.168.1.2 1 encapsulation mpls
06-18-2024 07:19 AM
I think you can do that under Pseudo class, which later add with xconnect command
MHM
06-20-2024 10:18 AM
@kevin.r719 wrote:so I'm migrating an l2tp tunnel to an eompls link i'd like to to attach the same rate-limiter ex: (2 cisco 2900's)
class-map match-all L2TPV3-TRAFFIC match access-group 130 policy-map L2TP_PM_OUT class L2TPV3-TRAFFIC shape average 40000000 class class-default policy-map TUN_PM_OUT class class-default shape average 50000000 service-policy L2TP_PM_OUT access-list 130 permit 115 any any int tunnel1 .... service-policy output TUN_PM_OUTwith l2tp i could select the traffic by protocol, but eompls is just mpls traffic?
the new config is pretty simple, however i'll have multiple pseudowires terminating on one device so i'd like to apply it at the tunnel level .
interface GigabitEthernet0/0 no ip address duplex auto speed auto no lldp transmit no lldp receive no cdp enable xconnect 192.168.1.2 1 encapsulation mpls
Here's how you can rate-limit MPLS pseudowires on your Cisco 2900s, similar to how you policed L2TP traffic:
1. Class-Map for MPLS Pseudowire Traffic:
First, define a class-map to identify the MPLS pseudowire traffic you want to rate-limit. You can achieve this in two ways:
class-map MATCH-MPLS-PW match dscp ef ! Replace "ef" with your actual DSCP marking
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