As above.
The demand of customer is split the total bandwidth of
eth-channel interface as 40% for Cam and 60% for ATM.
We can use QoS on the interface eth-channel and limit the traffic for ATM and Cam.
#
system-view
#
acl ad 3000
permit source ATM-ip & dest ATM-IP respectively
#
acl ad 3500
permit source CameraIP & dest CameraIP respectively
#
traffic classifier ATM
if-match acl 3000
#
traffic classifier CAM
if-match acl 3500
#
traffic behavior ATM
car cir percent 60
#
traffic behavior CAM
car cir percent 40
#
qos policy car
classifier ATM behavior ATM
classifier CAM behavior CAM
#
interface eth-channel 1/0:0
qos apply policy car outboud
qos apply policy car inboud
#
interface eth-channel 1/1:0
qos apply policy car outboud
qos apply policy car inboud
#