SRX

 View Only
  • 1.  Ipv6 traffic profile

    Posted 04-10-2026 20:47

    I want to create a traffic profile with an ipv6 address. I want to know if anyone can help me? I'm on an srx300 but I imagine that the statement blocks are the same on any srx? Is there a "master" statement anywhere?



    ------------------------------
    Adrian Aguinaga
    B.S.C.M. I.T.T. Tech
    (Construction Management)
    A.A.S. I.T.T. Tech
    (Drafting & Design)
    ------------------------------


  • 2.  RE: Ipv6 traffic profile

    Posted 04-11-2026 22:41

    there are 3 key things

    1) Policer

    set firewall policer LIMIT-100M if-exceeding bandwidth-limit 100m

    set firewall policer LIMIT-100M if-exceeding burst-size-limit 1m

    set firewall policer LIMIT-100M then discard

    2) The filter

    set firewall family inet6 filter PROFILE-V6-USER term MATCH-IP from address YOUR/IPV6

    set firewall family inet6 filter PROFILE-V6-USER term MATCH-IP then policer LIMIT-100M

    set firewall family inet6 filter PROFILE-V6-USER term ALLOW-REST then accept

    3) Apply filter to the interace

    Set interfaces ge-0/0/10 unit 0 family inet6 filter input PROFILE-V6-USER

    -------------------------------------------



  • 3.  RE: Ipv6 traffic profile

    Posted 04-12-2026 15:02

    I had just referenced my statement blocks on terms. I am going to find out for this subject if accept and reject and vice versa applies in this situation as I have done with policies. Thx for the reply. COS is a part of traffic control profiles and im wondering about that too. More comment is always appreciated. This gets me started. I bet.



    ------------------------------
    Adrian Aguinaga
    B.S.C.M. I.T.T. Tech
    (Construction Management)
    A.A.S. I.T.T. Tech
    (Drafting & Design)
    ------------------------------



  • 4.  RE: Ipv6 traffic profile

    Posted 04-12-2026 19:16

    Hi

    Well in this case you filter it based on IP address, this means it will apply policer to that Ip range only, any other will not get shaped.

    Yes you can also do Class of service if you want to.

    Thanks

    -------------------------------------------