<?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 VLAN configuration in Network Simulator</title>
    <link>https://community.hpe.com/t5/network-simulator/vlan-configuration/m-p/6972026#M273</link>
    <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;could anyone help me to create VLAN`s for this diagram.&lt;/P&gt;&lt;P&gt;I need to ping any address from any switch.&lt;/P&gt;&lt;P&gt;please find attached my diagram&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jul 2017 11:30:52 GMT</pubDate>
    <dc:creator>zied008</dc:creator>
    <dc:date>2017-07-27T11:30:52Z</dc:date>
    <item>
      <title>VLAN configuration</title>
      <link>https://community.hpe.com/t5/network-simulator/vlan-configuration/m-p/6972026#M273</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;could anyone help me to create VLAN`s for this diagram.&lt;/P&gt;&lt;P&gt;I need to ping any address from any switch.&lt;/P&gt;&lt;P&gt;please find attached my diagram&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 11:30:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/network-simulator/vlan-configuration/m-p/6972026#M273</guid>
      <dc:creator>zied008</dc:creator>
      <dc:date>2017-07-27T11:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: VLAN configuration</title>
      <link>https://community.hpe.com/t5/network-simulator/vlan-configuration/m-p/6973793#M290</link>
      <description>&lt;P&gt;Hello.&lt;BR /&gt;Haven't worked much with HP switches recently, but you can try the below for a starter, until somebody else responds.I believe this is not a production network.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;===================================================&lt;BR /&gt;SWITCH-HP-2920-24G&lt;BR /&gt;Assuming this is your core switch where you want to&lt;BR /&gt;do the routing, you need to add all vlans to this&lt;BR /&gt;L3 switch and give each vlan an IP. All NICs on&lt;BR /&gt;servers, clients and netowrk cameras will then use&lt;BR /&gt;these IPs as their default gateway.&lt;BR /&gt;Port 21 and 22 are used as a trunk VLAN 10&lt;BR /&gt;Port 23 and 24 are used as a trunk VLAN 20&lt;BR /&gt;===================================================&lt;BR /&gt;configure terminal&lt;BR /&gt;&amp;nbsp;ip routing&lt;BR /&gt;&amp;nbsp;spanning-tree&lt;BR /&gt;&amp;nbsp;spanning-tree priority 4&lt;BR /&gt;&amp;nbsp;interface 1&lt;BR /&gt;&amp;nbsp; name "connected-to-server"&lt;BR /&gt;&amp;nbsp; exit&lt;BR /&gt;&amp;nbsp;interface 21&lt;BR /&gt;&amp;nbsp; name "uplink-to-camera-switch-eth7"&lt;BR /&gt;&amp;nbsp; exit&lt;BR /&gt;&amp;nbsp;interface 22&lt;BR /&gt;&amp;nbsp; name "uplink-to-camera-switch-eth8"&lt;BR /&gt;&amp;nbsp; exit&lt;BR /&gt;&amp;nbsp;interface 23&lt;BR /&gt;&amp;nbsp; name "uplink-to-client-switch-eth23""&lt;BR /&gt;&amp;nbsp; exit&lt;BR /&gt;&amp;nbsp;interface24&lt;BR /&gt;&amp;nbsp; name "uplink-to-client-switch-eth24"&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;vlan 1&lt;BR /&gt;&amp;nbsp; name "Servers"&lt;BR /&gt;&amp;nbsp; tagged 23,24&lt;BR /&gt;&amp;nbsp; untagged 1-20&lt;BR /&gt;&amp;nbsp; ip address 192.168.1.254 255.255.255.0&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;vlan 10&lt;BR /&gt;&amp;nbsp; name "Camera"&lt;BR /&gt;&amp;nbsp; tagged 21,22&lt;BR /&gt;&amp;nbsp; ip address 192.168.10.254 255.255.255.0&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;vlan 20&lt;BR /&gt;&amp;nbsp; name "LAN"&lt;BR /&gt;&amp;nbsp; tagged 23,24&lt;BR /&gt;&amp;nbsp; ip address 192.168.20.254 255.255.255.0&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;trunk ethernet 21,22 trk1 lacp&lt;BR /&gt;trunk ethernet 23,24 trk2 lacp&lt;/P&gt;&lt;P&gt;write memory&lt;/P&gt;&lt;P&gt;===================================================&lt;BR /&gt;SWITCH-HP-POE-2530&lt;BR /&gt;Assuming this is an 8 port switch, interfaces 7 and&lt;BR /&gt;8 are uplinked to interfaces 21 and 22 on the Core&lt;BR /&gt;===================================================&lt;BR /&gt;configure terminal&lt;BR /&gt;&amp;nbsp;spanning-tree&lt;/P&gt;&lt;P&gt;&amp;nbsp;interface 1&lt;BR /&gt;&amp;nbsp; name "connected-to-camera"&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;interface 7&lt;BR /&gt;&amp;nbsp; name "trunked-to-Core-eth-21"&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;interface 8&lt;BR /&gt;&amp;nbsp; name "trunked-to-Core-eth-22"&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;vlan 10&lt;BR /&gt;&amp;nbsp; name "Camera"&lt;BR /&gt;&amp;nbsp; tagged 7,8&lt;BR /&gt;&amp;nbsp; untagged 1-6&lt;BR /&gt;&amp;nbsp; no ip address&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;trunk ethernet 7,8 trk1 lacp&lt;BR /&gt;&amp;nbsp;exit&lt;/P&gt;&lt;P&gt;write memory&lt;/P&gt;&lt;P&gt;===================================================&lt;BR /&gt;SWITCH-HP-1920-24G&lt;BR /&gt;Interfaces 23 and 24 are uplinked to interfaces 23&lt;BR /&gt;and 24 on the Core&lt;BR /&gt;===================================================&lt;BR /&gt;configure terminal&lt;BR /&gt;&amp;nbsp;spanning-tree&lt;/P&gt;&lt;P&gt;&amp;nbsp;interface 1&lt;BR /&gt;&amp;nbsp; name "connected-to-laptop"&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;interface 23&lt;BR /&gt;&amp;nbsp; name "trunked-to-Core-eth-23"&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;interface 24&lt;BR /&gt;&amp;nbsp; name "trunked-to-Core-eth-24"&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;vlan 20&lt;BR /&gt;&amp;nbsp; name "LAN"&lt;BR /&gt;&amp;nbsp; tagged 23,24&lt;BR /&gt;&amp;nbsp; untagged 1-21&lt;BR /&gt;&amp;nbsp; no ip address&lt;BR /&gt;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;trunk ethernet 23,24 trk2 lacp&lt;BR /&gt;&amp;nbsp;exit&lt;/P&gt;&lt;P&gt;write memory&lt;/P&gt;&lt;P&gt;===================================================&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 13:55:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/network-simulator/vlan-configuration/m-p/6973793#M290</guid>
      <dc:creator>javeedt</dc:creator>
      <dc:date>2017-08-14T13:55:16Z</dc:date>
    </item>
  </channel>
</rss>

