Hi All,
Im trying to create some traffic shaping on a nexus 9K all I need to do is match an access list and set the limit of that traffic to 200meg.
I know how to do that on ios but not in NXOS.
Below is what I'm trying to do in NXOS:
ip access-list extended ACL-Shaper
permit ip host 10 permit 10 any 10.128.19.0 0.0.0.128
!
class-map match-any Class-Shaper
match access-group name ACL-Shaper
!
policy-map Policy-Shaper
class Class-Shaper
shape average 200000000
class class-default
fair-queue
!
int gi0/0/1
service-policy output Policy-Shaper