<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Router on a stick! by Daniele Tedesco</title>
      <link>https://padlet.com/d_tedesco98/kby3v3eaws7o</link>
      <description>Produced by Daniele Tedesco 5AI</description>
      <language>en-us</language>
      <pubDate>2017-03-20 11:18:14 UTC</pubDate>
      <lastBuildDate>2024-11-13 10:55:16 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>What is &quot;Router on a stick&quot;?</title>
         <author>d_tedesco98</author>
         <link>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161275353</link>
         <description><![CDATA[<div>Router on a stick is a way to communicate between VLANs. There comes a time where your VLANs may need to <strong><em>communicate</em></strong>, for example, let say you have all your user computers on one VLAN and a file server on another. In order for your users to access files from that server there must be some kind of ‘interlan routing’ and <strong><em>‘router on a stick’</em></strong> is one way we can do this.</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-20 17:49:10 UTC</pubDate>
         <guid>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161275353</guid>
      </item>
      <item>
         <title></title>
         <author>d_tedesco98</author>
         <link>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161276963</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/184250683/5dcb718aeb22b0285be260701bb5dd4c/stick.jpg" />
         <pubDate>2017-03-20 17:52:44 UTC</pubDate>
         <guid>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161276963</guid>
      </item>
      <item>
         <title></title>
         <author>d_tedesco98</author>
         <link>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161280440</link>
         <description><![CDATA[<pre><strong>HOW DOES WE CAN CREATE ROUTER ON A STICK?</strong></pre>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-20 18:01:11 UTC</pubDate>
         <guid>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161280440</guid>
      </item>
      <item>
         <title>First Step: Let&#39;s configure the switch!</title>
         <author>d_tedesco98</author>
         <link>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161282236</link>
         <description><![CDATA[<pre><em>Switch(config)#vlan 5
Switch(config-vlan)#exit
Switch(config)#vlan 10
Switch(config-vlan)#exit
Switch(config)#vlan 15
Switch(config-vlan)#exit
Switch(config)#interface FastEthernet0/1
Switch(config-if)#switchport trunk encapsulation dot1q
Switch(config-if)#switchport mode trunk</em></pre><div><br></div><div>The <strong>switch config is pretty basic</strong>, we create VLANs 5, 10 and 15, then we make a trunk port to the router.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-20 18:05:17 UTC</pubDate>
         <guid>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161282236</guid>
      </item>
      <item>
         <title>                                                 Second Step: Now it&#39;s up to Router!</title>
         <author>d_tedesco98</author>
         <link>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161284301</link>
         <description><![CDATA[<pre><em>Router(config)#interface FastEthernet0/0
Router(config-if)#no ip address
Router(config-if)#interface FastEthernet0/0.5
Router(config-subif)#encapsulation dot1Q 5
Router(config-subif)#ip add 192.168.5.1 255.255.255.0
Router(config-subif)#interface FastEthernet0/0.10
Router(config-subif)#encapsulation dot1Q 10
Router(config-subif)#ip add 192.168.10.1 255.255.255.0
Router(config-subif)#interface FastEthernet0/0.15
Router(config-subif)#encapsulation dot1Q 15
Router(config-subif)#ip add 192.168.15.1 255.255.255.0</em></pre><div><br></div><div>On the router, we go to the interface connected to the switch and make sure there is no IP address. Then we configure our subinterfaces with 802.1q and the appropriate VLAN. Then we give each subinterface an IP address. Now we can see all the subinterfaces are up:<br><br></div><pre><em>Router#sh ip int b
</em><br><em>Interface              IP-Address      OK? Method Status  Protocol
FastEthernet0/0        unassigned      YES NVRAM  up      up
FastEthernet0/0.5      192.168.5.1     YES manual up      up
FastEthernet0/0.10     192.168.10.1    YES manual up      up
FastEthernet0/0.15     192.168.15.1    YES manual up      up</em></pre>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-20 18:10:19 UTC</pubDate>
         <guid>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161284301</guid>
      </item>
      <item>
         <title>We Have Done!</title>
         <author>d_tedesco98</author>
         <link>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161287737</link>
         <description><![CDATA[<div>Now we’ll verify connectivity by pinging the subinterfaces from the switch:<br><br></div><pre>Switch#ping 192.168.5.1
 
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.5.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/8 ms
 
Switch#ping 192.168.10.1
 
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.10.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/8 ms
 
Switch#ping 192.168.15.1
 
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.15.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/8 ms</pre><div><br>                           <strong><em>That’s it, we have a working router on a stick.</em></strong></div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-20 18:19:49 UTC</pubDate>
         <guid>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161287737</guid>
      </item>
      <item>
         <title>HERE AN EXAMPLE .PKT (Cisco Packet Tracer)</title>
         <author>d_tedesco98</author>
         <link>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161305691</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/184250683/bedb8b68aa17c1f8aaf67ca4cdc3deff/Router_on_a_stick.pkt" />
         <pubDate>2017-03-20 19:08:36 UTC</pubDate>
         <guid>https://padlet.com/d_tedesco98/kby3v3eaws7o/wish/161305691</guid>
      </item>
   </channel>
</rss>
