<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Moving from PPPoE to QinQ in ExtremeSwitching (Other)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-other/moving-from-pppoe-to-qinq/m-p/10468#M1496</link>
    <description>hi guys, i have a link i want to configure qing. now on this link there is a PPPoe connection and other vlans for other services through the same port. how can i use Qinq.</description>
    <pubDate>Tue, 14 Jul 2015 01:41:00 GMT</pubDate>
    <dc:creator>holacia_button</dc:creator>
    <dc:date>2015-07-14T01:41:00Z</dc:date>
    <item>
      <title>Moving from PPPoE to QinQ</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/moving-from-pppoe-to-qinq/m-p/10468#M1496</link>
      <description>hi guys, i have a link i want to configure qing. now on this link there is a PPPoe connection and other vlans for other services through the same port. how can i use Qinq.</description>
      <pubDate>Tue, 14 Jul 2015 01:41:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/moving-from-pppoe-to-qinq/m-p/10468#M1496</guid>
      <dc:creator>holacia_button</dc:creator>
      <dc:date>2015-07-14T01:41:00Z</dc:date>
    </item>
    <item>
      <title>RE: Moving from PPPoE to QinQ</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/moving-from-pppoe-to-qinq/m-p/10469#M1497</link>
      <description>Holacia, &lt;BR /&gt;
&lt;BR /&gt;
You don't mention if your switches are running EXOS or EOS. The following commands correspond to EXOS. If it's EOS I'll let somebody else answer as I'm not all that familiar with it.&lt;BR /&gt;
&lt;BR /&gt;
In EXOS QinQ is called a VMAN (Virtual Metropolitan Area Network) and you can think of it as a Service Provider VLAN, whose objective is to transport customer traffic transparently, preserving its VLAN tags (which are called Customer VLAN IDs or CVIDs).&lt;BR /&gt;
&lt;BR /&gt;
Like a VLAN, a VMAN has tagged and untagged ports. Network or tagged ports are called Provider Network Ports or &lt;B&gt;PNP&lt;/B&gt;. Access or untagged ports are called Customer Network Ports or &lt;B&gt;CNP&lt;/B&gt;. There's a second type of access port, called a Customer Edge Port, or &lt;B&gt;CEP&lt;/B&gt;. I'll talk later about &lt;B&gt;CEPs&lt;/B&gt;.&lt;BR /&gt;
&lt;BR /&gt;
&lt;P class="fancybox-image"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="ac72db061e334c5eb4018889a773a323_21775-c2crwu_inline.png"&gt;&lt;img src="https://community.extremenetworks.com/t5/image/serverpage/image-id/4071iBAD17244498DE16E/image-size/large?v=v2&amp;amp;px=999" role="button" title="ac72db061e334c5eb4018889a773a323_21775-c2crwu_inline.png" alt="ac72db061e334c5eb4018889a773a323_21775-c2crwu_inline.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;
&lt;BR /&gt;
Anything that enters the VMAN through a &lt;B&gt;CNP&lt;/B&gt;  (untagged port) gets tagged with the VMAN ID (which is called the SVID or Service VLAN ID), and transmitted through &lt;B&gt;PNPs&lt;/B&gt; to other switches. Upon reaching its destination and exiting through another &lt;B&gt;CNP&lt;/B&gt; (untagged, again) the SVID is removed, leaving the traffic exactly as it entered the VMAN.&lt;BR /&gt;
&lt;BR /&gt;
The commands are very similar to VLAN commands but replacing the &lt;B&gt;vlan&lt;/B&gt; keyword with &lt;B&gt;vman&lt;/B&gt;:&lt;BR /&gt;
create vman &lt;I&gt;vman_name&lt;/I&gt; &lt;BR /&gt;
configure vman &lt;I&gt;vman_name&lt;/I&gt; tag &lt;I&gt;vman_tag&lt;/I&gt; &lt;BR /&gt;
configure vman &lt;I&gt;vman_name&lt;/I&gt; add ports &lt;I&gt;port_list&lt;/I&gt; {untagged | tagged} There are other commands that let you do things not available for vlans. A &lt;B&gt;CNP&lt;/B&gt; will take all traffic and encapsulate inside a single VMAN. But, what if you want certain CVIDs to go to a VMAN and othres to another one? That port is the Customer Edge Port, or &lt;B&gt;CEP&lt;/B&gt;, we mentioned earlier &lt;BR /&gt;
&lt;BR /&gt;
A &lt;B&gt;CEP &lt;/B&gt; supports multiple VMANs and is configured to map certain CVIDs to a certain VMAN with the following command: &lt;BR /&gt;
configure vman  &lt;I&gt;vman_name&lt;/I&gt; add ports &lt;I&gt;port_list&lt;/I&gt; cep cvid &lt;I&gt;first_cvid - last_cvid&lt;/I&gt; {untagged | tagged}There are other commands that let you translate CVIDs, add a CVID to untagged traffic, or filter CVIDs so only certain CVIDs in a VMAN exit through a &lt;B&gt;CNP&lt;/B&gt; or &lt;B&gt;CEP&lt;/B&gt;, but you probably don't need that. In any case it is clearly explained in the &lt;B&gt;EXOS User Guide&lt;/B&gt;.&lt;BR /&gt;
 &lt;BR /&gt;
An important thing to remember is that, since VMANs add a SVID to the frames, you must enable &lt;B&gt;Jumbo Frames&lt;/B&gt; in all the ports involved, using the command:&lt;BR /&gt;
enable jumbo-frame ports &lt;I&gt;port_list&lt;/I&gt;Now, what is not clear is what you are trying to accomplish.&lt;BR /&gt;
&lt;BR /&gt;
Are you trying to encapsulate PPPoE and VLANs inside a VMAN to transport them somewhere else?&lt;BR /&gt;
Are you trying to establish a VMAN that will share a port with PPPoE and VLANs?&lt;BR /&gt;
&lt;BR /&gt;
All those combinations are supported, but only in certain devices (see table). Also, the &lt;B&gt;CEP&lt;/B&gt; functionality  is available starting with EXOS v12.6.&lt;BR /&gt;
&lt;P class="fancybox-image"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="ac72db061e334c5eb4018889a773a323_22541-1fudfpd_inline.png"&gt;&lt;img src="https://community.extremenetworks.com/t5/image/serverpage/image-id/3877i5EB4208E56D9F316/image-size/large?v=v2&amp;amp;px=999" role="button" title="ac72db061e334c5eb4018889a773a323_22541-1fudfpd_inline.png" alt="ac72db061e334c5eb4018889a773a323_22541-1fudfpd_inline.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;
&lt;BR /&gt;
﻿</description>
      <pubDate>Wed, 15 Jul 2015 17:38:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/moving-from-pppoe-to-qinq/m-p/10469#M1497</guid>
      <dc:creator>dflouret</dc:creator>
      <dc:date>2015-07-15T17:38:00Z</dc:date>
    </item>
  </channel>
</rss>

