Routing

 View Only
last person joined: 18 hours ago 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  VPLS DSCP

    Posted 10-11-2009 21:26

    Hi Everyone,

    Does VPLS support DSCP classification? ie.,

     

    interfaces {
        ge-0/0/0 {
            per-unit-scheduler;
            vlan-tagging;
            encapsulation flexible-ethernet-services;
            gigether-options {
                no-auto-negotiation;
            }
            unit 99 {
                encapsulation vlan-vpls;
                vlan-id 99;
                family vpls ;     

                }
            }
        }

     

     class-of-service {
        classifiers {
            dscp dscp_classifier {
                forwarding-class gold {
                    loss-priority low code-points 000000;
                }
            }

     

         forwarding-classes {
            queue 0 bronze;
            queue 1 silver;
            queue 2 gold;
            queue 3 network-control;
        }

     

        interfaces {
            ge-0/0/0 {
                unit 99 {
                    classifiers {
                        dscp dscp_classifier;
                    }
                }
            }

     

    I couldn't seem to get traffic to be classfied to forwarding class gold, but can do so for ieee802.1p

     

    Thanks,

    Wendy



  • 2.  RE: VPLS DSCP
    Best Answer

    Posted 10-12-2009 12:17

    To my knowledge, DSCP classification on bridge/VPLS interfaces is supported by means of firewall filter, on MX platform only, since JUNOS 9.0:

     

    [edit] user@mxrouter# set firewall family bridge filter filter1 term 0 from ? Possible completions: + destination-port Match TCP/UDP destination port + destination-port-except Do not match TCP/UDP destination port + dscp Match Differentiated Services (DiffServ) code point + dscp-except Do not match Differentiated Services (DiffServ) code point + icmp-code Match ICMP message code + icmp-code-except Do not match ICMP message code + icmp-type Match ICMP message type + icmp-type-except Do not match ICMP message type > ip-address Match IP source or destination address > ip-destination-address Match IP destination address + ip-precedence Match IP precedence value + ip-precedence-except Do not match IP precedence value + ip-protocol Match IP protocol type + ip-protocol-except Do not match IP protocol type > ip-source-address Match IP source address + port Match TCP/UDP source or destination port + port-except Do not match TCP/UDP source or destination port + source-port Match TCP/UDP source port + source-port-except Do not match TCP/UDP source port tcp-flags Match TCP flags [edit]

     

     

     



  • 3.  RE: VPLS DSCP

    Posted 07-01-2010 15:45

    I'm interested to understand this a little more.

     

    Are we talking about CoS within a VPLS instance. If so this is something I've been trying to find out for while.