This article provides a procedure to create a working configuration to set up traffic shaping on SRX.
Consider a scenario where an SRX has multiple interfaces. One of the interfaces connects to the ISP and has 1Gb bandwidth. You do not want this link to be consumed by traffic coming from a particular subnet.
Assume you want to limit traffic coming from the subnet 10.132.245.0/24 to 50Mbps on the outgoing interface ge-0/0/0 . Here is how you do it:
10.132.245.0/24
50Mbps
ge-0/0/0
Note : Monitor the ddn queue and ddn scheduler .
ddn
ddn scheduler
Select a firewall filter to filter the traffic coming from source 10.132.245.0/24 to forward the traffic to a particular forwarding-class.
firewall { family inet { filter ddn-traffic { term 1 { from { source-address { 10.132.245.0/24; } } then { forwarding-class ddn; accept; } } term default { then { forwarding-class best-effort; accept; } } } } }
Apply the firewall filter as output on the egress interface. This firewall will filter out the traffic when the traffic is leaving ge-0/0/0. Enable per-unit-scheduling on the interface, so that all the units will be applied with the CoS configuration.
interfaces { ge-0/0/0 { per-unit-scheduler; unit 0 { family inet { filter { output ddn-traffic; } address 1.1.1.2/24; } } }
Select different kinds of schedulers that configure the priority rate and the amount of traffic that can be transmitted. Map the individual scheduler to the forwarding class in scheduler-maps.
class-of-service { forwarding-classes { <---Map the queues to the forwarding classes. queue 1 real-time; queue 2 burst-hi; queue 0 best-effort; queue 3 network-control; queue 4 ddn; } interfaces { ge-0/0/0 { <---Define the interface to which the class-of-service needs to be applied. unit * { scheduler-map cos-map; shaping-rate 1g; } } } scheduler-maps { cos-map { forwarding-class real-time scheduler rt-scheduler; forwarding-class burst-hi scheduler bh-scheduler; forwarding-class best-effort scheduler be-scheduler; forwarding-class network-control scheduler nc-scheduler; forwarding-class ddn scheduler ddn-scheduler; } } schedulers { nc-scheduler { transmit-rate 70k; buffer-size percent 5; priority high; } rt-scheduler { transmit-rate 50k; buffer-size percent 1; priority high; } bh-scheduler { transmit-rate 100k; buffer-size percent 10; priority medium-high; } be-scheduler { transmit-rate { remainder; } buffer-size { remainder; } priority low; } ddn-scheduler { transmit-rate { 50m; exact; } priority low; } } }
Procedure
2020-09-26: Article reviewed for accuracy. No changes required. Article is correct and complete. 2017-05-01: Minor formatting edits.