The aforementioned MX router is a BRAS providing access for about 3,000 subscribers, using the 'dynamic-clients' functionality. Each subscriber demux interface gets assigned a specific firewall rate-limit filter according to their data plan. Most of these are low-bandwidth, 5 to 20 Mbit/s.
I need to let the subscribers bypass shaping to access a few IPs. I was able to make do by amending the input firewall filter with an address-matching term
like:
term BYPASS {
from {
address {
192.0.2.1/24;
}
}
then accept;
...before the actual term police
ruleset that defines traffic shaping.
This ostensibly works. Is this the best solution I might devise?
What are the best practices regarding traffic shaping/policing fine-tuning in JunOS, assuming I might want to add a few more non-shaped destinations in the future?