Re: [j-nsp] QinQ between Cisco/Juniper with layer2-tunneling and VPLS

2012-01-25 Thread Sebastian Wiesinger
* Payam Chychi pchy...@gmail.com [2012-01-25 00:36]:
 On 12-01-24 03:14 PM, Sebastian Wiesinger wrote:
 * Chris Kawchukjuniperd...@gmail.com  [2012-01-25 00:10]:
 Heh, then it's a different problem altogether. =)
 
 In your VPLS config, do you have any vlan-id settings set in the
 routing-instance? It's a long shot, else I have no idea why she
 ain't passing traffic...
 I have vlan-id all set in the instance and use outer-tag/inner-tag
 configuration on the interface unit. It's passing traffic just not the
 tunnel'd stuff.
 
 Regards
 
 Sebastian
 
 hey Sebastian,
 when doing a cisco to juniper youll have to (i could be wrong
 here... ) manually add pop/push for input/output vlan maps on the
 juniper side under the unit
 
 example:
 input-vlan-map pop;
 output-vlan-map push;

Hi,

that does not work with vlan-id all in VPLS.

 also on the cisco side make sure you are ignoring encapsulation
 mismatch and mtu mismatch
 
 example:
 ignore-encapsulation-mismatch;
 ignore-mtu-mismatch;

Why, I'm not doing a L2-circuit?

Regards

Sebastian


-- 
GPG Key: 0x93A0B9CE (F4F6 B1A3 866B 26E9 450A  9D82 58A2 D94A 93A0 B9CE)
'Are you Death?' ... IT'S THE SCYTHE, ISN'T IT? PEOPLE ALWAYS NOTICE THE SCYTHE.
-- Terry Pratchett, The Fifth Elephant
___
juniper-nsp mailing list juniper-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/juniper-nsp


[j-nsp] QinQ between Cisco/Juniper with layer2-tunneling and VPLS

2012-01-24 Thread Sebastian Wiesinger
Hi,

has anyone working QinQ between Cisco and Juniper running over VPLS
and with working layer2-tunneling? We have a setup like this:

EX4200 -- QinQ -- MX === VPLS === MX -- QinQ -- Cisco

We see that on both ends of the QinQ tunnel CTP/STP/LLDP Pakets are
encapsulated but on the other side nothing gets decapsulated.

Regards

sebastian

-- 
GPG Key: 0x93A0B9CE (F4F6 B1A3 866B 26E9 450A  9D82 58A2 D94A 93A0 B9CE)
'Are you Death?' ... IT'S THE SCYTHE, ISN'T IT? PEOPLE ALWAYS NOTICE THE SCYTHE.
-- Terry Pratchett, The Fifth Elephant
___
juniper-nsp mailing list juniper-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/juniper-nsp


Re: [j-nsp] QinQ between Cisco/Juniper with layer2-tunneling and VPLS

2012-01-24 Thread Chris Kawchuk
1. EX4200 - I assume this following:

ethernet-switching-options {
 dot1q-tunneling {
 ether-type 0x8100;
 }
}

vlans {
 My-QinQ-VLAN {
vlan-id 1000;
dot1q-tunneling {
layer2-protocol-tunneling {
all;
}
}
 }
}


2. Note that the EX4200's re-write the MAC Address when using QinQ (i.e. STP 
MAC 01:80:c2:00:00:00 becomes PVST+ MAC 01:00:0c:cc:cc:cd, for example). Ensure 
you are un-translating the MAC address at the far end MX or at the Cisco; else 
you end up with a regular RSTP Packet with the wrong Destination MAC Address.

3. Alternatively, POP the outer Tag on Ingress at the MX; and do the MAC 
destination re-write there (i.e. change it back to normal) before shoving it 
into the VPLS.

- Chris.




On 2012-01-25, at 8:23 AM, Sebastian Wiesinger wrote:

 Hi,
 
 has anyone working QinQ between Cisco and Juniper running over VPLS
 and with working layer2-tunneling? We have a setup like this:
 
 EX4200 -- QinQ -- MX === VPLS === MX -- QinQ -- Cisco
 
 We see that on both ends of the QinQ tunnel CTP/STP/LLDP Pakets are
 encapsulated but on the other side nothing gets decapsulated.
 
 Regards
 
 sebastian
 
 -- 
 GPG Key: 0x93A0B9CE (F4F6 B1A3 866B 26E9 450A  9D82 58A2 D94A 93A0 B9CE)
 'Are you Death?' ... IT'S THE SCYTHE, ISN'T IT? PEOPLE ALWAYS NOTICE THE 
 SCYTHE.
-- Terry Pratchett, The Fifth Elephant
 ___
 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


Re: [j-nsp] QinQ between Cisco/Juniper with layer2-tunneling and VPLS

2012-01-24 Thread Sebastian Wiesinger
* Chris Kawchuk juniperd...@gmail.com [2012-01-24 22:54]:
 2. Note that the EX4200's re-write the MAC Address when using QinQ
 (i.e. STP MAC 01:80:c2:00:00:00 becomes PVST+ MAC 01:00:0c:cc:cc:cd,
 for example). Ensure you are un-translating the MAC address at the
 far end MX or at the Cisco; else you end up with a regular RSTP
 Packet with the wrong Destination MAC Address.

Hi,

the Cisco should be decapsulating it (layer2-tunneling is active on
both ends) but it seems no packets are arriving to be decapsulated.

Regards,

Sebastian

-- 
GPG Key: 0x93A0B9CE (F4F6 B1A3 866B 26E9 450A  9D82 58A2 D94A 93A0 B9CE)
'Are you Death?' ... IT'S THE SCYTHE, ISN'T IT? PEOPLE ALWAYS NOTICE THE SCYTHE.
-- Terry Pratchett, The Fifth Elephant
___
juniper-nsp mailing list juniper-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/juniper-nsp


Re: [j-nsp] QinQ between Cisco/Juniper with layer2-tunneling and VPLS

2012-01-24 Thread Sebastian Wiesinger
* Chris Kawchuk juniperd...@gmail.com [2012-01-25 00:10]:
 Heh, then it's a different problem altogether. =)
 
 In your VPLS config, do you have any vlan-id settings set in the
 routing-instance? It's a long shot, else I have no idea why she
 ain't passing traffic...

I have vlan-id all set in the instance and use outer-tag/inner-tag
configuration on the interface unit. It's passing traffic just not the
tunnel'd stuff.

Regards

Sebastian

-- 
GPG Key: 0x93A0B9CE (F4F6 B1A3 866B 26E9 450A  9D82 58A2 D94A 93A0 B9CE)
'Are you Death?' ... IT'S THE SCYTHE, ISN'T IT? PEOPLE ALWAYS NOTICE THE SCYTHE.
-- Terry Pratchett, The Fifth Elephant
___
juniper-nsp mailing list juniper-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/juniper-nsp


Re: [j-nsp] QinQ between Cisco/Juniper with layer2-tunneling and VPLS

2012-01-24 Thread Payam Chychi

On 12-01-24 03:14 PM, Sebastian Wiesinger wrote:

* Chris Kawchukjuniperd...@gmail.com  [2012-01-25 00:10]:

Heh, then it's a different problem altogether. =)

In your VPLS config, do you have any vlan-id settings set in the
routing-instance? It's a long shot, else I have no idea why she
ain't passing traffic...

I have vlan-id all set in the instance and use outer-tag/inner-tag
configuration on the interface unit. It's passing traffic just not the
tunnel'd stuff.

Regards

Sebastian


hey Sebastian,
when doing a cisco to juniper youll have to (i could be wrong here... ) 
manually add pop/push for input/output vlan maps on the juniper side 
under the unit


example:
input-vlan-map pop;
output-vlan-map push;


also on the cisco side make sure you are ignoring encapsulation mismatch 
and mtu mismatch


example:
ignore-encapsulation-mismatch;
ignore-mtu-mismatch;


hope this helps
-Payam

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