Marcus,
If you already have appropriate PIC installed in the box it''ll be in the list of installed hardware:

l...@edge-b2> show chassis hardware
Hardware inventory:
Item             Version  Part number  Serial number     Description
.......
FPC 2            REV 03   710-013038   JK2095            M320 FPC Type 1
 CPU            REV 04   710-009141   JK5523            M320 FPC CPU
 PIC 0          REV 08   750-005395   JH3869            1x Tunnel

If you don't have it installed you can by one ... or connect 2 new physical interfaces to each other and use them instead of logical tunnels. It's a trade between prices of Tunnel PIC and physical interface PIC. In the first case can by low-performance (limited bandwith) Tunnel PIC. In the latter case better you go with Gigabit SFP based interfaces because they will allow you to use vlan subintefaces with different encapsulations for many different customers.

For info about lt interfaces take a look on this page:
http://www.juniper.net/techpubs/software/junos/junos93/swconfig-services/configuring-a-logical-tunnel-interface.html#id-14359583

Regards,
Angel Bardarov


Marcus Eide wrote:
Angel,
Thanks, Now I know that I'm on the right path at least.

I'm unsure on what kind of PIC I have, how can I confirm it has the
capabilities I need?

On Fri, 09 Jan 2009 15:50:09 +0200, angel <[email protected]>
wrote:
So here is a working config I just checked in my lab:
PE1-----------------MPLS----------------PE2
l2circuit------------------------------------l2circuit
vrf aaa-------------------------------------vrf aaa
192.168.3.1-------------------------------192.168.3.2

for PE1:

l...@edge-a1-re0# show interfaces lt-2/1/0
unit 0 {
    encapsulation ethernet-ccc;
    peer-unit 1;
    family ccc;
}
unit 1 {
    encapsulation ethernet;
    peer-unit 0;
    family inet {
        address 192.168.3.2/24;
    }
}

l...@edge-a1-re0# show protocols l2circuit
neighbor x.x.x.x {
    interface lt-2/1/0.0 {
        virtual-circuit-id 777;
    }
}

l...@edge-a1-re0# show routing-instances aaa
instance-type vrf;
interface lt-2/1/0.1;
route-distinguisher 1:1;
vrf-target target:2:2;
vrf-table-label;

for PE2:

l...@edge-a2-re0# show interfaces lt-2/1/0
unit 0 {
    encapsulation ethernet-ccc;
    peer-unit 1;
}
unit 1 {
    encapsulation ethernet;
    peer-unit 0;
    family inet {
        address 192.168.3.1/24;
    }
}

l...@edge-a2-re0# show protocols l2circuit
neighbor y.y.y.y {
    interface lt-2/1/0.0 {
        virtual-circuit-id 777;
    }
}

l...@edge-a2-re0# show routing-instances aaa
instance-type vrf;
interface lt-2/1/0.1;
route-distinguisher 1:1;
vrf-target target:2:2;
vrf-table-label;

Verification:

{master}
l...@edge-a2-re0> show interfaces lt-2/1/0.0 | match packets Input packets : 30
    Output packets: 29

{master}
l...@edge-a2-re0> ping routing-instance aaa 192.168.3.2

PING 192.168.3.2 (192.168.3.2): 56 data bytes
64 bytes from 192.168.3.2: icmp_seq=0 ttl=64 time=0.859 ms
64 bytes from 192.168.3.2: icmp_seq=1 ttl=64 time=0.836 ms
64 bytes from 192.168.3.2: icmp_seq=2 ttl=64 time=0.796 ms
64 bytes from 192.168.3.2: icmp_seq=3 ttl=64 time=0.903 ms
64 bytes from 192.168.3.2: icmp_seq=4 ttl=64 time=0.834 ms
^C
--- 192.168.3.2 ping statistics ---
5 packets transmitted, 5 packets received, 0% packet loss
round-trip min/avg/max/stddev = 0.796/0.846/0.903/0.035 ms

{master}
l...@edge-a2-re0> show interfaces lt-2/1/0.0 | match packets Input packets : 35
    Output packets: 34

Regards,
Angel Bardarov



Marcus Eide wrote:
Hi,
I don't know if this is even possible, but I thought I'd ask you: Does
anyone know if it's possible to connect an l2circuit to an vrf type
routing-instance?

I found some information that stated this could be done with logical
tunnel
interfaces, so I tried the following:


interface lt-1/2/0 {
    unit 0 {
        encapsulation ethernet-ccc;
        peer-unit 1;
        family ccc;
    }
    unit 1 {
        encapsulation ethernet;
        peer-unit 0;
        family inet {
            address 192.168.3.1/24;
        }
    }
}

protocol l2circuit {
    neighbor 172.16.0.2 {
        interface lt-1/2/0.0 {
            virtual-circuit-id 7777;
        }
    }
}

routing-instance VRF1003 {
    instance-type vrf;
    interface lo0.1003;
    interface lt-1/2/0.1003;
    route-distinguisher 65000:1003;
    vrf-target target:65000:1003;
    vrf-table-label;
}

The l2circuit shows up, but there's no traffic coming through.

Any thoughts on the subject is appreciated.

/Marcus
_______________________________________________
juniper-nsp mailing list [email protected]
https://puck.nether.net/mailman/listinfo/juniper-nsp




_______________________________________________
juniper-nsp mailing list [email protected]
https://puck.nether.net/mailman/listinfo/juniper-nsp

Reply via email to