Page 1 of 1

7750SR broadcast limit

Posted: 07 Apr 2014 07:33
by avalon19
Hi!
Does anybody know, how to restrict broadcast traffic on the network interface, without restricting multicast?
As far as I understand, on the sap-egress it is impossible to make?


Best regards,
Petr

Re: 7750SR broadcast limit

Posted: 25 Apr 2014 18:03
by cedric64
Hello Petr

I don't know if it is possible to make it on "sap-egress" but here is a try with "sap-ingress"

Code: Select all

qos
scheduler-policy "1G" create
            description "1G"
            tier 1
                scheduler "root" create
                    rate 1000000 cir 1000000
                exit all
qos
sap-ingress 11111 create
            description "1Gbps"
            queue 1 create
            exit
            queue 3 profile-mode create
                parent "root" cir-level 1
                rate 1000000 cir 1000000
            exit
            queue 11 multipoint create
                parent "root"
                rate 100 cir 100
            exit
            queue 12 multipoint profile-mode create
                parent "root"
                rate 1000000 cir 1000000
            exit
            queue 13 multipoint profile-mode create
                parent "root"
                rate 1000 cir 1000
            exit
            fc "af" create
                queue 3
                broadcast-queue 13
                multicast-queue 12
                unknown-queue 11
                profile in
            exit
            default-fc "af"
        exit all
Let me know if this is helpful.