<?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 RE: Extreme equivalent of trunking in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19118#M947</link>
    <description>most everything else is classroom stuff... there must be some extreme blogs in the wild... i'll go hunting... if you bump into anything please let me know...&lt;BR /&gt;
&lt;BR /&gt;
thanks a million...&lt;BR /&gt;</description>
    <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
    <dc:creator>brian_osgoiod</dc:creator>
    <dc:date>2016-03-31T18:28:00Z</dc:date>
    <item>
      <title>Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19104#M933</link>
      <description>I am having difficulty understanding how multiple vlans are transported between extreme switches (not stacked) and how they are physically cabled. With cisco i create two trunk ports directly connected between switches and pass multiple vlans between these switches on the connected trunk ports or lags. How is this physically performed with extreme. What i see in the extreme documentation is tagging, but I find nothing pertaining to how these tags are assembled on a trunk like port and passed amongst switches... &lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 17:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19104#M933</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-03-31T17:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19105#M934</link>
      <description>On Extreme you simply add all the vlans you want as tagged on the ports that link the switches, there is no special configuration required.&lt;BR /&gt;
&lt;BR /&gt;
Just in case:&lt;BR /&gt;
add vlan20 port 1:53 tagged&lt;BR /&gt;
&lt;BR /&gt;
Hope that helps</description>
      <pubDate>Thu, 31 Mar 2016 17:43:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19105#M934</guid>
      <dc:creator>davidj_cogliane</dc:creator>
      <dc:date>2016-03-31T17:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19106#M935</link>
      <description>This is one of those questions that is both very easy to answer, but also has some devil in the details.&lt;BR /&gt;
&lt;BR /&gt;
One thing you need to understand that Cisco is very port-centric in terms of config, and Extreme is very VLAN-centric.  This leads sometimes to some confusion as you go from one to the other.  I use both and I slightly prefer the VLAN approach when doing other things (eg: L3 routing) as the VLAN makes a bit more sense as the logical entity to which other things (eg: ports, IP addresses, etc.) are attached.&lt;BR /&gt;
&lt;BR /&gt;
With an Extreme switch, you create VLANs and then add ports to them, rather than specifying what VLAN(s) should be permitted on a port.&lt;BR /&gt;
&lt;BR /&gt;
If you add a VLAN untagged to the port, you're making it an access port (or setting the native VLAN if there are multiple other tagged VLANs on the port).  If you add one or more VLANs tagged to a port, then it is effectively a trunk port.&lt;BR /&gt;
&lt;BR /&gt;
There's no direct concept of just setting a port mode to trunk port and telling it to carry all VLANs.  On an Extreme switch, VLANs must be created and added to the ports in question - this can seem a real pain in the backside but you eventually end up liking it as it stops all manner of problems with loops.  For this reason, STP is disabled by default on an Extreme switch as it isn't really needed.&lt;BR /&gt;
&lt;BR /&gt;
So if I have three VLANs, 'work', 'guest' and 'wifi' I can do something like this on two switches:&lt;BR /&gt;
&lt;BR /&gt;
create vlan work tag 10&lt;BR /&gt;
create vlan guest tag 11&lt;BR /&gt;
create vlan wifi tag 12&lt;BR /&gt;
config vlan work add port 1 untagged&lt;BR /&gt;
config vlan guest add port 2 untagged&lt;BR /&gt;
config vlan wifi add port 3 untagged&lt;BR /&gt;
config vlan work add port 24 tagged&lt;BR /&gt;
config vlan guest add port 24 tagged&lt;BR /&gt;
config vlan wifi add port 24 tagged&lt;BR /&gt;
&lt;BR /&gt;
This will make port 24 a trunk port between the switches, and the VLANs mentioned will be on ports 1 2 and 3 (as access / native ports).&lt;BR /&gt;
&lt;BR /&gt;
If I created a new vlan:&lt;BR /&gt;
create vlan somethingelse tag 20&lt;BR /&gt;
&lt;BR /&gt;
and then added it like this&lt;BR /&gt;
config vlan somethingelse add port 4 untagged&lt;BR /&gt;
on both switches, it wouldn't appear automatically on the trunk.  You'd need to explicitly add it:&lt;BR /&gt;
config vlan somethingelse add port 24 tagged&lt;BR /&gt;
&lt;BR /&gt;
You could also add it untagged on the port:&lt;BR /&gt;
config vlan somethingelse del port 24&lt;BR /&gt;
config vlan somethingelse add port 24 untagged&lt;BR /&gt;
&lt;BR /&gt;
That would make VLAN 'somethingelse' the native VLAN on the trunk, with VLANs 'work', 'guest' and 'wifi' the trunked (tagged) vlans.&lt;BR /&gt;
&lt;BR /&gt;
You don't need to add 'untagged' to the end of the add port command, it is the default - but I've put it in here for clarity.&lt;BR /&gt;
&lt;BR /&gt;
Paul.&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 17:44:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19106#M935</guid>
      <dc:creator>Paul_Thornton</dc:creator>
      <dc:date>2016-03-31T17:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19107#M936</link>
      <description>Hi Brian,&lt;BR /&gt;
&lt;BR /&gt;
When a packet egress a tagged port through let's say vlan tag 10 then the ethernet frame is increased by 4 bytes which includes the 802.1a tag/ID 10. The other side port must be also tagged for vlan 10 so it can check the ethernet frame 802.1q value (10 in this case) and then assign the traffic to the correct vlan (vlan 10).&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;&lt;U&gt;Example:&lt;/U&gt;&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;PC1&lt;/B&gt; port 1 ==== &lt;B&gt;SW1&lt;/B&gt; port 5 ================ port 5 &lt;B&gt;SW2&lt;/B&gt; port 1 ==== &lt;B&gt;PC2&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;Vlans:&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;Sw1:                                             Sw2:&lt;/B&gt;&lt;BR /&gt;
vlan_10 tag 10                              vlan_10 tag 10&lt;BR /&gt;
vlan_20 tag 20                              vlan_20 tag 20&lt;BR /&gt;
vlan_30 tag 30                              vlan_30 tag 30&lt;BR /&gt;
&lt;BR /&gt;
&lt;U&gt;Configuration for both switches:&lt;/U&gt;&lt;BR /&gt;
&lt;BR /&gt;
create vlan vlan_10 tag 10&lt;BR /&gt;
create vlan vlan_20 tag 20&lt;BR /&gt;
create vlan vlan_30 tag 30&lt;BR /&gt;
&lt;BR /&gt;
configure vlan vlan_10 add port 5 tagged&lt;BR /&gt;
configure vlan vlan_20 add port 5 tagged&lt;BR /&gt;
configure vlan vlan_30 add port 5 tagged&lt;BR /&gt;
&lt;BR /&gt;
configure vlan vlan_10 add port 1 untagged&lt;BR /&gt;
configure vlan vlan_20 add port 1 untagged&lt;BR /&gt;
configure vlan vlan_30 add port 1 untagged&lt;BR /&gt;
&lt;BR /&gt;
Based on the above example the following is true:&lt;BR /&gt;
&lt;UL&gt; 
&lt;LI&gt;When a packet egress Sw1 port 5 through vlan_30, the packet will have 802.1q tagged frame (ID 30) included. When the packet ingress Sw2 port 5 it will read the ethernet frame 802.1q ID 30 and assign vlan_30 to it. When the packet egress port 1 (untagged) it will strip the 802.1q tagged frame (4 bytes) and then PC2 will be able to read the packet&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt; 
&lt;LI&gt;Same behavior will happen when the packet egress/ingress from/to the other vlans (10 and 20) 
&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 31 Mar 2016 17:46:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19107#M936</guid>
      <dc:creator>Henrique</dc:creator>
      <dc:date>2016-03-31T17:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19108#M937</link>
      <description>you meant&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;config&lt;/B&gt; vlan vlan_10 add port 5 tagged, etc.&lt;BR /&gt;
&lt;BR /&gt;
With 16.1 and later, you can also do :&lt;BR /&gt;
&lt;BR /&gt;
config vlan 10,20,30 add port 5 tagged&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 17:46:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19108#M937</guid>
      <dc:creator>Stephane_Grosj1</dc:creator>
      <dc:date>2016-03-31T17:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19109#M938</link>
      <description>Good catch &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
I updated Henrique's post (with his permission).&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 17:46:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19109#M938</guid>
      <dc:creator>Drew_C</dc:creator>
      <dc:date>2016-03-31T17:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19110#M939</link>
      <description>thanks for the speedy replies... it is a different paradigm than what i'm used to...&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19110#M939</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19111#M940</link>
      <description>Brian, you may want to take a look at  the &lt;A href="http://documentation.extremenetworks.com/PDFs/EXOS/EXOS_Quick_Guide.pdf" target="_blank" rel="nofollow noreferrer noopener"&gt;EXOS Quick Guide&lt;/A&gt;.&lt;BR /&gt;
There's also an "&lt;A href="http://packetflow.io/2015/01/extreme-networks-exos-cheat-sheet.html" target="_blank" rel="nofollow noreferrer noopener"&gt;EXOS Cheat Sheet&lt;/A&gt;" that someone has put together.&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19111#M940</guid>
      <dc:creator>Drew_C</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19112#M941</link>
      <description>yes, i just finished reading the quick guide.. i'll take a look at the cheat sheet...also looking at the user guide which the quick guide references as most useful... any other suggested reading sources are welcome... thank you&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19112#M941</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19113#M942</link>
      <description>Here's a thread that you may find helpful:  &lt;A href="https://community.extremenetworks.com/extreme/topics/extreme-networks-self-paced-training" target="_blank" rel="nofollow noreferrer noopener"&gt;Extreme Networks Self-Paced Training&lt;/A&gt;&lt;BR /&gt;
Also, welcome to The Hub!&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19113#M942</guid>
      <dc:creator>Drew_C</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19114#M943</link>
      <description>thank you...&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19114#M943</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19115#M944</link>
      <description>yes, i've already done those... are there any more like that?&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19115#M944</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19116#M945</link>
      <description>or more like that, but in pdf's?&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19116#M945</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19117#M946</link>
      <description>Those are the only ones I'm aware of, but that doesn't mean there isn't more.&lt;BR /&gt;
If it exists, it should be here: &lt;A href="http://www.extremenetworks.com/education" target="_blank" rel="nofollow noreferrer noopener"&gt;http://www.extremenetworks.com/education&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19117#M946</guid>
      <dc:creator>Drew_C</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19118#M947</link>
      <description>most everything else is classroom stuff... there must be some extreme blogs in the wild... i'll go hunting... if you bump into anything please let me know...&lt;BR /&gt;
&lt;BR /&gt;
thanks a million...&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Mar 2016 18:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19118#M947</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-03-31T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19119#M948</link>
      <description>The way cisco does it is, you set a port as a trunk and ALL vlans will egress that trunk port.  If you want to restrict the vlans that egress that trunk, you explicitly deny that to pass through the trunk with filtering.  Extreme / Enterasys and most everyone else... you simply just add each vlan to the port by tagging it.&lt;BR /&gt;
&lt;BR /&gt;
So for enterasys:&lt;BR /&gt;
&lt;BR /&gt;
set vlan egree 2,3,4,5,6,7,8,9,10 ge.1.1 tagged&lt;BR /&gt;
&lt;BR /&gt;
That would be similar to &lt;BR /&gt;
&lt;BR /&gt;
switchport encap dot1q&lt;BR /&gt;
switchport mode trunk&lt;BR /&gt;
&lt;BR /&gt;
On the cisco side, I would have to chop off vlan 4 and 5 from being egressed if I didn't want them to go over the trunk, everyone else you just simply don't include those vlans when tagging them on the port.&lt;BR /&gt;
&lt;BR /&gt;
That being said, you need to be sure to tag the vlans on the uplinks and everyone inbetween.  Cisco makes it easy, but it is less secure by default.</description>
      <pubDate>Fri, 01 Apr 2016 00:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19119#M948</guid>
      <dc:creator>Jeremy_Gibbs</dc:creator>
      <dc:date>2016-04-01T00:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19120#M949</link>
      <description>Likewise, on Extreme you create a vlan:&lt;BR /&gt;
&lt;BR /&gt;
create vlan Classroom102 tag 102&lt;BR /&gt;
configure Classroom102 add ports 1-48 untagged&lt;BR /&gt;
configure Classroom102 add ports 52 tagged&lt;BR /&gt;
&lt;BR /&gt;
Sadly, I don't think there is a faster way to do it with Extreme.  The naming of vlans is cool, but it would be nice to be able to tag multiple vlans on a port at once.&lt;BR /&gt;
&lt;BR /&gt;
But you get the idea.</description>
      <pubDate>Fri, 01 Apr 2016 00:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19120#M949</guid>
      <dc:creator>Jeremy_Gibbs</dc:creator>
      <dc:date>2016-04-01T00:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19121#M950</link>
      <description>yeah, i'm coming around to it... i prefer the cisco way, but it is what it is...&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Apr 2016 00:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19121#M950</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-04-01T00:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19122#M951</link>
      <description>You may have missed my comment above. With 16.1 and later, you can do :&lt;BR /&gt;
&lt;BR /&gt;
config vlan 10,20,30 add port 5 tagged&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Apr 2016 00:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19122#M951</guid>
      <dc:creator>Stephane_Grosj1</dc:creator>
      <dc:date>2016-04-01T00:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme equivalent of trunking</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19123#M952</link>
      <description>oh not at all, i saw that... i like that a lot better, and thank you...&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Apr 2016 00:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-equivalent-of-trunking/m-p/19123#M952</guid>
      <dc:creator>brian_osgoiod</dc:creator>
      <dc:date>2016-04-01T00:17:00Z</dc:date>
    </item>
  </channel>
</rss>

