<?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: How to make 2 switches talk after connecting with fiber? in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25587#M3201</link>
    <description>but the other switches work on them fine.&lt;BR /&gt;
&lt;BR /&gt;
ps, thanks for all your quick replies</description>
    <pubDate>Thu, 18 Jan 2018 17:23:00 GMT</pubDate>
    <dc:creator>Adam_Joseph</dc:creator>
    <dc:date>2018-01-18T17:23:00Z</dc:date>
    <item>
      <title>How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25575#M3189</link>
      <description>Hi&lt;BR /&gt;
&lt;BR /&gt;
First off, I'm very new to this, so please bear with me as I'm learning. I've tried to research this but I don't know the keywords I need.&lt;BR /&gt;
&lt;BR /&gt;
I have 2 Summit X250e-48P switches. I have managed to create a VLAN, set a DHCP scope, and connect devices. They work great individually.&lt;BR /&gt;
&lt;BR /&gt;
I have connected them together via the SFP slots with LC connectors (labeled for use with Extreme switches).&lt;BR /&gt;
&lt;BR /&gt;
Should that be it, or do I need to configure the SFP ports?&lt;BR /&gt;
&lt;BR /&gt;
Sorry if I haven't given enough information.</description>
      <pubDate>Sat, 06 Jan 2018 18:16:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25575#M3189</guid>
      <dc:creator>Adam_Joseph</dc:creator>
      <dc:date>2018-01-06T18:16:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25576#M3190</link>
      <description>What is the purpose of connecting two individual networks into one?</description>
      <pubDate>Sat, 06 Jan 2018 18:20:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25576#M3190</guid>
      <dc:creator>Nick_Yakimenko</dc:creator>
      <dc:date>2018-01-06T18:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25577#M3191</link>
      <description>sorry - they are the same network. but will be in 2 different buildings.</description>
      <pubDate>Sat, 06 Jan 2018 18:39:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25577#M3191</guid>
      <dc:creator>Adam_Joseph</dc:creator>
      <dc:date>2018-01-06T18:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25578#M3192</link>
      <description>The only things you "may" need to do is to setup those ports as trunks to carry the multiple vlan's you setup between the switches (an assumption, based on your note about creating a vlan (there is one by default)). If you have more than one, simply add them both the each side of the link in the same fashion.  Personally, I prefer to "tag" all VLAN's in a trunk, that way it's easier to visualize the VLAN's when reading the config (when a port has an untagged vlan assigned, it's simply the default vlan for that port and is not as clearly identified).  For example, if you are connecting port 1 on the first switch to port 2 on the second switch, and you have 2 vlan's that need to be carried between the two (let's say v70 and v90), it would like like this:&lt;BR /&gt;
&lt;BR /&gt;
SW1:&lt;BR /&gt;
  conf default del port 1 (remove default vlan from port 1)&lt;BR /&gt;
  conf vlan "v70" add port 1 tagged (make port 1 a tagged member of this vlan)&lt;BR /&gt;
  conf vlan "v90" add port 1 tagged (also make that port a member of this vlan)&lt;BR /&gt;
&lt;BR /&gt;
SW2:&lt;BR /&gt;
  conf default del port 2 (the rest follow as above)&lt;BR /&gt;
  conf vlan "v70" add port 2 tagged&lt;BR /&gt;
  conf vlan "v90" add port 2 tagged&lt;BR /&gt;
&lt;BR /&gt;
Now, those ports act like a pipeline, connecting the two switches, and adding a small amount of info to the packet header telling the opposite switch which vlan each packet belongs to.  The switches strip this "tag" when the packet enters the switch port, looks up the other members of that VLAN in its local database and then forwards the packet on to those members.  If the member is in that vlan by default (untagged), then the header is not modified as it's not needed.  If the member port is a tagged member like the pipeline was, the tag is added back before sending it to that port so it can discern which vlan it's intended for.&lt;BR /&gt;
&lt;BR /&gt;
finally, add a description to the port to aid in documentation&lt;BR /&gt;
&lt;BR /&gt;
SW1:&lt;BR /&gt;
  conf port 1 display-description "TrunkToSw2P2"&lt;BR /&gt;
&lt;BR /&gt;
SW2:&lt;BR /&gt;
  conf port 2 display-description "TrunkToSw1P1"&lt;BR /&gt;
&lt;BR /&gt;
BigRic</description>
      <pubDate>Sat, 06 Jan 2018 21:29:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25578#M3192</guid>
      <dc:creator>Eric_Burke</dc:creator>
      <dc:date>2018-01-06T21:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25579#M3193</link>
      <description>And remove the DHCP scope on one of the switches because it isn't a great idea to have 2 scopes for the same network.</description>
      <pubDate>Sat, 06 Jan 2018 22:15:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25579#M3193</guid>
      <dc:creator>Ronald_Dvorak</dc:creator>
      <dc:date>2018-01-06T22:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25580#M3194</link>
      <description>great, i'll try this out next week. Thanks!</description>
      <pubDate>Sat, 06 Jan 2018 22:30:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25580#M3194</guid>
      <dc:creator>Adam_Joseph</dc:creator>
      <dc:date>2018-01-06T22:30:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25581#M3195</link>
      <description>OK, without any configuration, when i connect a single fiber cable it works fine. When I go through my fiber patch panel, it doesn't.&lt;BR /&gt;
&lt;BR /&gt;
However, if I connect it to an existing switch on a different network, the link is active. All 8 fiber patch cores work fine, so that's not the issue. I find it bizarre that it will talk to my other switch, but not the one I want it to.&lt;BR /&gt;
&lt;BR /&gt;
Is there a reason it would work over a 1m fiber cable and not a 80m cable, except for the SPF module? Because I have 6, 4 are rated 10k and the other 2 550m. And the module works fine when connecting to the switch on the other network.&lt;BR /&gt;
&lt;BR /&gt;
Any input would be great, thanks.&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Jan 2018 16:25:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25581#M3195</guid>
      <dc:creator>Adam_Joseph</dc:creator>
      <dc:date>2018-01-18T16:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25582#M3196</link>
      <description>you should not mess SM and MM modules,also carefully read other rates on SFP modules, especially those, who work on a single fiber (WDM)&lt;BR /&gt;
Those who are for 550m are probably for MM fiber, 850nm wave, dual fiber&lt;BR /&gt;
Others use TX1310/RX1550 (blue ones) and vise-versea (TX1550/RX1310nm, violet ones)&lt;BR /&gt;
&lt;BR /&gt;
You should find out which fiber is used between fiber patch panels: singlemode or multimode&lt;BR /&gt;
And which patchcords you use: traditionally orange are for multimode, yellow are for singlemode</description>
      <pubDate>Thu, 18 Jan 2018 16:25:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25582#M3196</guid>
      <dc:creator>Nick_Yakimenko</dc:creator>
      <dc:date>2018-01-18T16:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25583#M3197</link>
      <description>thanks - this definitely clears a few things up for me. But it didn't solve my problem. Modules in use are 850nm and all the cables at MM.</description>
      <pubDate>Thu, 18 Jan 2018 17:23:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25583#M3197</guid>
      <dc:creator>Adam_Joseph</dc:creator>
      <dc:date>2018-01-18T17:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25584#M3198</link>
      <description>They are for duplex (dual) fiber? Try change tx/rx (left/right) fibers&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Jan 2018 17:23:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25584#M3198</guid>
      <dc:creator>Nick_Yakimenko</dc:creator>
      <dc:date>2018-01-18T17:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25585#M3199</link>
      <description>they don't seem to be changeable on the patch cables i'm using. and the same patch cables are working with the other swicth on the same modules. ﻿</description>
      <pubDate>Thu, 18 Jan 2018 17:23:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25585#M3199</guid>
      <dc:creator>Adam_Joseph</dc:creator>
      <dc:date>2018-01-18T17:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25586#M3200</link>
      <description>fibers between patchpanels may be messed up</description>
      <pubDate>Thu, 18 Jan 2018 17:23:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25586#M3200</guid>
      <dc:creator>Nick_Yakimenko</dc:creator>
      <dc:date>2018-01-18T17:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25587#M3201</link>
      <description>but the other switches work on them fine.&lt;BR /&gt;
&lt;BR /&gt;
ps, thanks for all your quick replies</description>
      <pubDate>Thu, 18 Jan 2018 17:23:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25587#M3201</guid>
      <dc:creator>Adam_Joseph</dc:creator>
      <dc:date>2018-01-18T17:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to make 2 switches talk after connecting with fiber?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25588#M3202</link>
      <description>Ok one other thing you could look at is seeing what your light levels are if the optics you are using supports this.  Most modern sfp do support light readings.  &lt;BR /&gt;
&lt;BR /&gt;
Show port 49 (or 50) transceiver info detail... if your optics supports this command you will get transmit and receive power from both sides.  It will help determine if you have any layer one issues...&lt;BR /&gt;
&lt;BR /&gt;
output from a switch &lt;BR /&gt;
&lt;BR /&gt;
PLW_X430-24t_SS_W38thSt.1 # sh por 25 trans info det&lt;BR /&gt;
&lt;BR /&gt;
Port :  25&lt;BR /&gt;
&lt;BR /&gt;
    Media Type            : LX&lt;BR /&gt;
    Vendor Name           : FINISAR CORP.&lt;BR /&gt;
    Part Number           : FTRJ1319P1BTL-EX&lt;BR /&gt;
    Serial Number         : P8S0NZ0&lt;BR /&gt;
    Wavelength            : 1310 nm&lt;BR /&gt;
&lt;BR /&gt;
    Temp (Celsius)            :  41.12      Status               :  Normal&lt;BR /&gt;
          Low Warn Threshold  : -30.00      High Warn Threshold  :  93.00&lt;BR /&gt;
          Low Alarm Threshold : -40.00      High Alarm Threshold :  110.00&lt;BR /&gt;
&lt;BR /&gt;
    Voltage AUX-1/Vcc (Volts) :  3.31       Status               :  Normal&lt;BR /&gt;
          Low Warn Threshold  :  2.90       High Warn Threshold  :  3.70&lt;BR /&gt;
          Low Alarm Threshold :  2.70       High Alarm Threshold :  3.90&lt;BR /&gt;
&lt;BR /&gt;
    Tx Power (dBm)            : -4.31       Status               :  Normal&lt;BR /&gt;
          Low Warn Threshold  : -11.51      High Warn Threshold  : -1.00&lt;BR /&gt;
          Low Alarm Threshold : -13.51      High Alarm Threshold :  1.00&lt;BR /&gt;
&lt;BR /&gt;
    Rx Power (dBm)            : -6.67       Status               :  Normal&lt;BR /&gt;
          Low Warn Threshold  : -20.00      High Warn Threshold  : -1.00&lt;BR /&gt;
          Low Alarm Threshold : -23.97      High Alarm Threshold :  0.75&lt;BR /&gt;
&lt;BR /&gt;
    Tx Bias Current (mA):        21.11      Status               :  Normal&lt;BR /&gt;
          Low Warn Threshold  :  4.00       High Warn Threshold  :  70.00&lt;BR /&gt;
          Low Alarm Threshold :  2.00       High Alarm Threshold :  80.00&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Jan 2018 22:24:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-make-2-switches-talk-after-connecting-with-fiber/m-p/25588#M3202</guid>
      <dc:creator>EtherMAN</dc:creator>
      <dc:date>2018-01-18T22:24:00Z</dc:date>
    </item>
  </channel>
</rss>

