On Fri, 25 Mar 2011, Jake Jake wrote:

If I can have a config snippit it would be great.

Since a few people asked about this, I figured it would be OK to post to the list.

The configuration of an 802.1q trunk on a cFPC interface really isn't much different from configuring an 802.1q trunk on similarly capable interfaces. You can configure different sub-interfaces with different MTUs. The physical interface (and whatever is at the other end) should be using an MTU that's as large as, or larger than whatever you're using on the sub-ifs.

interfaces {
    xe-0/0/0 {
        description "10G trunk for XYZ aggregation";
        vlan-tagging;
        mtu 9192;
        unit 100 {
            description "Customer A";
            vlan-id 100;
            family inet {
                mtu 9000;
                filter {
                    input CUST-A-INGRESS;
                    output CUST-A-EGRESS;
                }
                address xxxxxxxx/27;
            }
            family inet6 {
                mtu 9000;
                filter {
                    input CUST-A-V6INGRESS;
                    output CUST-A-V6EGRESS;
                }
                address xxxxxxxx/64;
            }
        }
        unit 101 {
            description "Customer B";
            vlan-id 101;
            family inet {
                mtu 1500;
                filter {
                    input CUST-B-INGRESS;
                    output CUST-B-EGRESS;
                }
                address xxxxxxxx/29;
            }
        }
    }
}

This is on a 10G cFPC in an M120:

FPC 0            REV 05   710-015908   xxxxxx            M120 CFPC 10GE
  PIC 0                   BUILTIN      BUILTIN           1x 10GE(LAN/WAN) XFP
    Xcvr 0       REV 01   740-014279   xxxxxxxxxxxx      XFP-10G-LR

jms

On Fri, Mar 25, 2011 at 10:19AM, Justin M. Streiner <
strei...@cluebyfour.org> wrote:

On Fri, 25 Mar 2011, 2012j...@gmail.com wrote:

In a M120 with  Compact FPC 10 Gigabit Ethernet [M120-cFPC-1XGE-XFP] module
, can we use the 10G interface  to terminate multiple customers on different
sub-interfaces with 802.1q [vlan tagging enabled] and use it for layer 3
terminations.


Yes.  I use some 10G cFPCs in pretty much this manner on a pair of M120s at
work.  They've been running that way for the past 4 years with no major
issues.  I can send a config snippit if needed.

Also can double tagging  be configured on it as well. Please let me if any
one has based  any restriction on the cFPC 10G interfaces.


I don't know about double-tagging/QinQ support, as I don't use those
features.

jms
_______________________________________________
juniper-nsp mailing list juniper-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/juniper-nsp


_______________________________________________
juniper-nsp mailing list juniper-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/juniper-nsp

Reply via email to