Good day experts,
We have a problem setting QoS Shaping on NE40. At the same time, QoS Shaping works on the AR6300. Host, suppose 192.168.1.1, generates a lot of traffic. On thin channels, the distribution of this traffic should be limited, but not discarded. Therefore, we would like to use Shaping, not Policing.
Example for AR6300:
#
acl name S_AR 3999
rule 10 permit ip source 192.168.1.1 0
#
traffic classifier TEST1 operator or
if-match acl S_AR
#
traffic behavior TEST1
gts cir pct 10 queue-length 64
statistic enable
#
traffic policy TEST1
classifier TEST1 behavior TEST1
#
interface Serial6/0/1
link-protocol hdlc
ip address 1.1.1.1 255.255.255.252
traffic-policy TEST1 outbound
Example for NE40E:
#
acl name S_NE number 3999
rule 10 permit ip source 192.168.1.1 0
#
traffic classifier TEST1 operator or
if-match acl name S_NE
#
traffic behavior TEST1
car cir 20000 cbs 3740000 green pass red discard
traffic-statistic
#
traffic policy TEST1
undo share-mode
statistics enable
classifier TEST1 behavior TEST1
#
interface GigabitEthernet1/1/12
undo shutdown
ip address 10.10.10.10 255.255.255.252
traffic-policy TEST1 outbound
#
With such settings on NE40, packages coming from 192.168.1.1 are often dropped, which causes problems in operation. While there is no such problem with AR6300. Therefore, I would like to configure Shaping, not Policing, on the NE40.
Can you please tell me how you can get around this limitation, what settings are needed?