<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CCIE Lab &#187; CCNA</title>
	<atom:link href="http://ccielab.ro/category/ccna/feed/" rel="self" type="application/rss+xml" />
	<link>http://ccielab.ro</link>
	<description>Cry in the Lab, Laugh in the Datacenter</description>
	<lastBuildDate>Wed, 09 May 2012 12:02:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Private VLANs</title>
		<link>http://ccielab.ro/2012/05/private-vlans/</link>
		<comments>http://ccielab.ro/2012/05/private-vlans/#comments</comments>
		<pubDate>Wed, 09 May 2012 12:02:36 +0000</pubDate>
		<dc:creator>Marius Bunget</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[Switching]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=243</guid>
		<description><![CDATA[PVLANs provide layer 2 isolation between ports within the same broadcast domain. There are three types of PVLAN ports:

Promiscuous— A promiscuous port can communicate with all interfaces, including the isolated and community ports within a PVLAN.
Isolated— An isolated port has complete Layer 2 separation from the  other ports within the same PVLAN, but not [...]]]></description>
			<content:encoded><![CDATA[<p><span>PVLANs provide layer 2 isolation between ports within the same broadcast domain. There are three types of PVLAN ports:</span></p>
<ul>
<li>Promiscuous— A promiscuous port can communicate with all interfaces, including the isolated and community ports within a PVLAN.</li>
<li>Isolated— An isolated port has complete Layer 2 separation from the  other ports within the same PVLAN, but not from the promiscuous ports.  PVLANs block all traffic to isolated ports except traffic from  promiscuous ports. Traffic from an isolated port is forwarded only to  promiscuous ports.</li>
<li>Community— Community ports communicate among themselves and with promiscuous ports. These interfaces are separated at Layer 2 from  all other interfaces in other communities or isolated ports within their  PVLAN.</li>
</ul>
<p><strong><span style="text-decoration: underline">IP Addressing</span></strong><br />
All the members of the Private VLAN can share a common IP Space where  the IP space is assigned to the Primary VLAN. The hosts connected to  isolated or community ports can have the addresses assigned from the  address space of the Primary VLAN.</p>
<p style="text-align: center">
<p style="text-align: center"><img class="aligncenter size-full wp-image-246" src="http://ccielab.ro/wp-content/uploads/2012/04/pvlan1.png" alt="pvlan" width="483" height="271" /></p>
<p style="text-align: left">
<p><strong><span style="text-decoration: underline"><span style="text-decoration: underline">Steps to Configure Private VLAN</span></span></strong></p>
<p>1. Set VTP mode to transparent<br />
2. Create Primary and Secondary VLANs<br />
3. Map secondary VLANs to Primary VLANs<br />
3. Configure ports in Secondary VLANs and assign VLAN memberships<br />
4. Configure Promiscuous ports and map them to primary-secondary VLAN pairs</p>
<p style="text-align: left">Configuration:</p>
<p style="text-align: left">Switches S1 and S2  must be configured as follows:</p>
<p style="text-align: left">Create vlans 101 and 102 and then associate them to the primary Vlan 100.</p>
<pre>vlan 100
  private-vlan primary
  private-vlan association 101-102
!
vlan 101
  private-vlan community
!
vlan 102
  private-vlan community</pre>
<p style="text-align: left">
<p>On S1:</p>
<pre>interface FastEthernet0/1
 switchport private-vlan mapping 100 101-102
 switchport mode private-vlan promiscuous
!
interface FastEthernet0/3
 switchport private-vlan host-association 100 101
 switchport mode private-vlan host
!
interface FastEthernet0/5
 switchport private-vlan host-association 100 102
 switchport mode private-vlan host
!
interface FastEthernet0/13
 switchport trunk encapsulation dot1q
 switchport mode trunk

On S2:
<pre>interface GigabitEthernet0/4
 switchport private-vlan host-association 100 101
 switchport mode private-vlan host
!
interface GigabitEthernet0/6
 switchport private-vlan host-association 100 102
 switchport mode private-vlan host
!
interface GigabitEthernet0/13
 switchport trunk encapsulation dot1q
 switchport mode trunk</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2012/05/private-vlans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ACL case study: The hidden defaults of ACLs</title>
		<link>http://ccielab.ro/2011/12/the-hidden-defaults-of-acls/</link>
		<comments>http://ccielab.ro/2011/12/the-hidden-defaults-of-acls/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 10:42:45 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[acl]]></category>
		<category><![CDATA[any]]></category>
		<category><![CDATA[deny]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[permit]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=164</guid>
		<description><![CDATA[Unlike Linux&#8217;s iptables, Cisco&#8217;s filtering via Access Control Lists sometimes has hidden behavior.
Let us test how ACL filtering works using the following topology. We assume that we have Layer 3 connectivity via static routes. We will apply ACLs on the outbound direction of F1/0 on R2 (we want it to be somewhere in the path [...]]]></description>
			<content:encoded><![CDATA[<p>Unlike Linux&#8217;s iptables, Cisco&#8217;s filtering via Access Control Lists sometimes has hidden behavior.</p>
<p>Let us test how ACL filtering works using the following topology. We assume that we have Layer 3 connectivity via static routes. We will apply ACLs on the outbound direction of F1/0 on R2 (we want it to be somewhere in the path from R1 to R3)</p>
<p><img class="aligncenter size-medium wp-image-165" src="http://ccielab.ro/wp-content/uploads/2011/12/3r-300x148.png" alt="3r" width="300" height="148" /></p>
<p>With no ACLs applied anywhere, <strong>all </strong>traffic will flow.</p>
<blockquote><p>R1#ping 3.3.3.3 source 1.1.1.1<br />
Packet sent with a source address of 1.1.1.1<br />
!!!!!<br />
Success rate is 100 percent</p></blockquote>
<p>Let&#8217;s start with the basics and make a classic standard access list that denies R1&#8217;s loopback.</p>
<blockquote><p>R2(config)#access-list 42 deny host 1.1.1.1<br />
R2(config)#int f1/0<br />
R2(config-if)#ip access-group 42 out</p></blockquote>
<p>The loopback on R1 is blocked&#8230;</p>
<blockquote><p>R1#ping 3.3.3.3 source 1.1.1.1<br />
U.U.U<br />
Success rate is 0 percent (0/5)</p></blockquote>
<p>&#8230; but so is any other traffic that goes out of R2&#8217;s F1/0.</p>
<blockquote><p>R1#ping 3.3.3.3 source F0/0<br />
U.U.U<br />
Success rate is 0 percent (0/5)</p></blockquote>
<p>The first rule of Cisco&#8217;s ACLs is that <strong>there is an implicit deny (ip) all (all) rule at the end of every ACL</strong>. But this is <strong>not visible</strong> anywhere. You have to know it.</p>
<blockquote><p>R2#sh access-lists<br />
Standard IP access list 42<br />
10 deny   1.1.1.1 (8 matches)<br />
Extended IP access list BLOCK_HTTP</p></blockquote>
<p>But if that ACL is empty? What if you apply an access list that does not contain any rules (was not declared)?</p>
<blockquote><p>R2(config)#int f1/0<br />
R2(config-if)#ip access-group 28 out<br />
R2(config-if)#do sh access-lists<br />
Standard IP access list 42<br />
10 deny   1.1.1.1 (8 matches)<br />
Extended IP access list BLOCK_HTTP</p>
<p>R1#ping 3.3.3.3 source 1.1.1.1</p>
<p>Type escape sequence to abort.<br />
!!!!!<br />
Success rate is 100 percent</p></blockquote>
<p>Traffic passes. The inexistent ACL applied on an interface is ignored. But this is because you can&#8217;t have an empty classical (numbered) ACL. What if you do the same thing with a named ACL?</p>
<blockquote><p>R2(config)#ip access-list standard EMPTY_ACL<br />
R2(config-std-nacl)#exit<br />
R2(config)#do sh ip access-list<br />
Standard IP access list 42<br />
10 deny   1.1.1.1 (8 matches)<br />
Standard IP access list EMPTY_ACL<br />
Extended IP access list BLOCK_HTTP<br />
R2(config)#int f1/0<br />
R2(config-if)#ip access-group EMPTY_ACL out</p></blockquote>
<blockquote>
<p style="text-align: left">R1#ping 3.3.3.3 source 1.1.1.1</p>
<p style="text-align: left">Type escape sequence to abort.<br />
!!!!!<br />
Success rate is 100 percent</p></blockquote>
<p style="text-align: left">Traffic is still not filtered. So, the rule is that <strong>a empty (inexistant or deleted)  ACL is ignored by the interface filter</strong>.</p>
<p style="text-align: left">One more ACL applied on R2 with a deny all rule (no traffic should pass out of F1/0).</p>
<blockquote><p>R2(config)#ip access-list standard DENY_ALL_ACL<br />
R2(config-std-nacl)#deny any<br />
R2(config-std-nacl)#do sh ip access<br />
Standard IP access list 42<br />
10 deny   1.1.1.1 (8 matches)<br />
Standard IP access list DENY_ALL_ACL<br />
10 deny   any (8 matches)<br />
Standard IP access list EMPTY_ACL<br />
10 deny   any (8 matches)<br />
Extended IP access list BLOCK_HTTP<br />
R2(config-std-nacl)#int f1/0<br />
R2(config-if)#ip access-group DENY_ALL_ACL out</p></blockquote>
<p>Ping form R1 is filtered.</p>
<p>R1#ping 3.3.3.3 source 1.1.1.1<br />
Packet sent with a source address of 1.1.1.1<br />
U.U.U<br />
Success rate is 0 percent (0/5)</p>
<p>Since no traffic should go out the interface, a ping from R2 to R3 should also fail, yet it doesn&#8217;t.</p>
<blockquote><p>R2#ping 3.3.3.3<br />
!!!!!<br />
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/20/44 ms</p></blockquote>
<p>As a final rule, <strong>traffic generated by a router is never filtered by an ACL applied any interface of that router</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2011/12/the-hidden-defaults-of-acls/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RIP lab: Send RIP routes to remote neighbours</title>
		<link>http://ccielab.ro/2011/07/rip-lab-send-rip-routes-to-remote-neighbours/</link>
		<comments>http://ccielab.ro/2011/07/rip-lab-send-rip-routes-to-remote-neighbours/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 07:57:19 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[neighbor]]></category>
		<category><![CDATA[RIP]]></category>
		<category><![CDATA[routes]]></category>
		<category><![CDATA[unicast]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=156</guid>
		<description><![CDATA[Scenario:
You have two routers running RIP, but the two routers aren&#8217;t directly connected because there is a third router between them. See topology below. How do you get routes across because RIP only communicates with routers that are directly connected?

The simple answer is to create a GRE tunnel between R1 and R3 so a tun [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Scenario:</strong><br />
You have two routers running RIP, but the two routers aren&#8217;t directly connected because there is a third router between them. See topology below. How do you get routes across because RIP only communicates with routers that are directly connected?<br />
<img class="alignnone size-full wp-image-158" src="http://ccielab.ro/wp-content/uploads/2011/07/riplab1.png" alt="riplab" width="325" height="113" /></p>
<p>The simple answer is to create a GRE tunnel between R1 and R3 so a tun interface simulates a direct connection of the two routers. But let&#8217;s take a more didactic approach to remember some things about RIP.</p>
<p>RIP v2 sends the updates to the address 224.0.0.9 that is a local multicast address (TTL=1).  But there is another, very important in some situations (like some Frame Relay networks), way to send routes, and that is via unicast to a statically configured neighbor. Configuration is done via the <strong>neighbor</strong> command in the <strong>router rip</strong> configuration.  The routes will be encapsulated in normal IP unicast packets and since RIP runs on top of UDP, they should be routed as any other packet.</p>
<p><strong>R1:</strong></p>
<blockquote><p>interface Serial0/0/1<br />
ip address 10.1.2.1 255.255.255.0<br />
interface Loopback 0<br />
ip address 192.168.0.1 255.255.255.0<br />
router rip<br />
version 2<br />
passive-interface Loopback0<br />
network 10.0.0.0<strong><br />
network 192.168.0.0</strong><br />
<strong>neighbor 10.2.3.3</strong><br />
no auto-summary<strong> </strong></p></blockquote>
<p><strong>R3:</strong></p>
<blockquote><p>interface Serial0/0/1<br />
ip address 10.2.3.3 255.255.255.0<br />
interface Loopback 0<br />
ip address 172.16.0.1 255.255.255.0<br />
router rip<br />
version 2<br />
passive-interface Loopback0<br />
<strong>network 10.0.0.0</strong><br />
network 172.16.0.0<br />
<strong>neighbor 10.1.2.1</strong><br />
no auto-summary</p></blockquote>
<p>You still need to have a network command for the interfaces when you send and receive the updates (in this case 10.0.0.0) otherwise the received updates will be ignored.</p>
<p>First thing you should be careful of is the fact that R1 and R3 need layer3 communication. So you do need static routes for the R1 and R3 routers through R2.</p>
<p>Having connectivity between each other, the router starts sending unicast packets with the routes. debug ip rip would show the following:</p>
<blockquote><p>RIP: sending v2 update to 10.1.2.1 via Serial0/0/1 (10.2.3.3)<br />
RIP: build update entries<br />
172.16.0.0/24 via 0.0.0.0, metric 1, tag 0</p></blockquote>
<p>Notice the update is sent to an unicast address and not 224.0.0.9.</p>
<p>Routes are received but they still are not in the routing tables. debug ip rip shows why:</p>
<blockquote><p>RIP: ignored v2 update from bad source 10.2.3.3 on Serial0/0/1</p></blockquote>
<p>This reminds us of how RIP works: if a router receives an update it checks to see if the <strong>source</strong> of the packet is on the same subnet as the IP configured on the interface. If they don&#8217;t match, the update is ignored. In our case, the source of the updates are not on the same network because R2 does not modify the packet source/destination in any way.</p>
<p>The solution to this is to disable the default mechanism with the <strong>no validate-update-source</strong> command in the router rip configuration. This way any updates will be accepted.</p>
<p>Here is a wanted route in the routing table of R3:</p>
<blockquote><p>R    192.168.0.0/24 [120/1] via 10.1.2.1, 00:00:27</p></blockquote>
<p>Notice that the next hop is not directly connected so it need to do a recursive lookup and use the static route to send it to R2 first.</p>
<blockquote><p>S       10.1.2.1/32 [1/0] via 10.2.3.2</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2011/07/rip-lab-send-rip-routes-to-remote-neighbours/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DHCP Relay Server and NAT Case Study</title>
		<link>http://ccielab.ro/2010/08/dhcp-relay-server-and-nat-case-study/</link>
		<comments>http://ccielab.ro/2010/08/dhcp-relay-server-and-nat-case-study/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 17:38:37 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[Switching]]></category>
		<category><![CDATA[boradcast]]></category>
		<category><![CDATA[debug ip packet]]></category>
		<category><![CDATA[debup ip dhcp server]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[DHCP Relay]]></category>
		<category><![CDATA[Gateway IP Address]]></category>
		<category><![CDATA[GIADDR]]></category>
		<category><![CDATA[inside nat]]></category>
		<category><![CDATA[ip helper-address]]></category>
		<category><![CDATA[NAT]]></category>
		<category><![CDATA[PAT]]></category>
		<category><![CDATA[unicast]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=143</guid>
		<description><![CDATA[Topology:

Scenario:
The Host in the 192.168.0.0/24 network should get its IP address from a DHCP server.
Relay is the default router for the Host, but doesn&#8217;t have a DHCP service running. It will pass any DHCP requests from it&#8217; f1/0 interface to the DHCP server that has DHCP pools configured on it, using the &#8220;ip helper-addres&#8221; command.
Between [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Topology:</strong></p>
<p><img class="alignnone size-full wp-image-144" src="http://ccielab.ro/wp-content/uploads/2010/07/dhcp_nat.png" alt="dhcp_nat" width="307" height="109" /></p>
<p style="text-align: justify"><strong>Scenario:</strong></p>
<p style="text-align: justify">The <strong>Host</strong> in the 192.168.0.0/24 network should get its IP address from a DHCP server.</p>
<p style="text-align: justify"><strong>Relay</strong> is the default router for the <strong>Host</strong>, but doesn&#8217;t have a DHCP service running. It will pass any DHCP requests from it&#8217; f1/0 interface to the <strong>DHCP</strong> server that has <strong>DHCP pools</strong> configured on it, using the <strong>&#8220;ip helper-addres&#8221;</strong> command.</p>
<p style="text-align: justify">Between the <strong>DHCP</strong> router and the <strong>Relay</strong> router there is a public network, but behind <strong>Relay</strong>, there is a private network (<strong>Host</strong> is part of that network).  Relay will use <strong>NAT with overload</strong> (PAT) to service the private network.</p>
<p style="text-align: justify"><strong>Relay</strong> uses <strong>DHCP</strong> as it&#8217;s default route to the Internet, but DHCP doesn&#8217;t know about the private network in which <strong>Host</strong> is in (private networks shoudn&#8217;t be permitted to be accessed from the Internet).</p>
<p style="text-align: justify"><strong>Configurations:</strong></p>
<p>DHCP:</p>
<blockquote><p>ip dhcp pool DHCP_POOL<br />
network 192.168.0.0 255.255.255.0<br />
default-router 192.168.0.1</p>
<p>interface FastEthernet0/0<br />
ip address 200.0.0.1 255.255.255.0</p></blockquote>
<p>Relay:</p>
<blockquote><p>interface FastEthernet0/0<br />
ip address 200.0.0.100 255.255.255.0<br />
ip nat outside</p>
<p>interface FastEthernet1/0<br />
ip address 192.168.0.1 255.255.255.0<br />
ip helper-address 200.0.0.1<br />
ip nat inside</p>
<p>ip nat inside source list NAT_HOSTS interface FastEthernet0/0 overload</p>
<p>ip access-list standard NAT_HOSTS<br />
permit 192.168.0.0 0.0.0.255</p></blockquote>
<p>Host:</p>
<blockquote><p>interface FastEthernet1/0<br />
ip address dhcp</p></blockquote>
<p><strong>Problem:</strong></p>
<p><strong>Relay</strong> will receive a DHCP request (broadcast) on F1/0 interface. Because of the &#8220;<strong>ip helper-address</strong>&#8220;, <strong>Relay</strong> will transform the request from broadcast to unicast and send it to the <strong>DHCP</strong> router. The  DHCP request will reach the router, it will assign  an IP from the pool, but the reply will never reach <strong>Host</strong>.</p>
<p><strong>Explenation:</strong></p>
<p>Using &#8220;<strong>debug ip dhcp server events</strong>&#8220;, &#8220;<strong>debug ip dhcp server packet</strong>&#8221; and &#8220;<strong>debug ip packet</strong>&#8220;, we can find out the problem.</p>
<p>The first thing that could come to mind is the fapt that if <strong>Relay</strong> receives a packet on F1/0 interface (192.168.0.1) it will send an unicast message with the source IP address of that interface and a destination address of the ip-helper server. This is not true. The relayed request is considered to be generated by the local router (<strong>Relay</strong>). This means that the source IP address of the relayed request is that of the outgoing interface to the DHCP Server. Here is the <strong>debug ip packet</strong> output:</p>
<blockquote><p>*Mar  1 02:33:23.127: IP: tableid=0, s=200.0.0.100 (FastEthernet0/0), d=200.0.0. 1 (FastEthernet0/0), routed via RIB</p></blockquote>
<p>If  the source address of the IP packet does not have an IP address from the 192.168.0.0/24 network, how does the DHCP Server know from witch pool to give out a free address. The answer is a field in the DHCP protocol, called GIADDR (Gateway IP Address). The value of this field will be the IP address of the interface in the private network.</p>
<p>The problem is that after the DHCP server chooses an IP from the pool, it will reply to the unicast request, with another unicast packet that has the destination IP the GIADDR, not the source address of the request. The output from <strong>debug ip dhcp server events:</strong></p>
<blockquote><p>*Mar  1 03:13:33.719: DHCPD: DHCPDISCOVER received from client 0063.6973.636f.2d 63.6330.322e.3035.6230.2e30.3031.302d.4661.312f.30 through relay 192.168.0.1.<br />
*Mar  1 03:13:33.731: DHCPD: Sending DHCPOFFER to client 0063.6973.636f.2d63.6330.322e.3035.6230.2e30.3031.302d.4661.312f.30 (192.168.0.2).<br />
*Mar  1 03:13:33.731: DHCPD: unicasting BOOTREPLY for client cc02.05b0.0010 to relay 192.168.0.1</p></blockquote>
<p>The <strong>DHCP</strong> router doesn&#8217;t know about the 192.168.0.0/24 network because that is a private network behind a NAT.</p>
<p>A solution to the situation is to add a static route on the <strong>DHCP</strong> router to the private network. But this would ruin the purpose of NAT. A better solution is to avoid the scenario by design (still, the situation could come up in lab environments and you should now know why it behaves the way it does)</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/08/dhcp-relay-server-and-nat-case-study/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Anti-lockout best practice</title>
		<link>http://ccielab.ro/2010/07/anti-lockout-best-practice/</link>
		<comments>http://ccielab.ro/2010/07/anti-lockout-best-practice/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 19:43:25 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[acl]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[reload]]></category>
		<category><![CDATA[reload cancel]]></category>
		<category><![CDATA[reload in]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=130</guid>
		<description><![CDATA[ACL are usually configured for firewall configurations, for traffic filtering. When configuring ACLs, careful planing should be made so that in the moment when you are applying an ACL, things get filtered exactly the way you want it. In a lab environment tests can be made and if somethings doesn&#8217;t work right, you can start [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">ACL are usually configured for firewall configurations, for traffic filtering. When configuring ACLs, careful planing should be made so that in the moment when you are applying an ACL, things get filtered exactly the way you want it. In a lab environment tests can be made and if somethings doesn&#8217;t work right, you can start over. But in a live network router, filtering the wrong traffic could cause network outages.</p>
<p style="text-align: justify">If you are connected to the router via telnet or ssh (most likely in productions routers) it is very easy to lock yourself out of the router by denying the telnet or ssh traffic on an interface between you to that router. This is mostly because how IOS works. Any commands given in IOS are instantly commited to the live configuration. And, for example, if you make a configuration with an ACL and you forget about the implicit <strong>deny any (any)</strong> and you also forget to permit the telnet/ssh traffic, you might find yourself with the router not responding to any input after you apply the rules. It might take a while to figure out that you can&#8217;t access the router anymore and need to get physically to its location and either reload it or  use the console port to remove the ACL from the running-config.</p>
<p style="text-align: justify">One way of avoiding this is to schedule an automated reload in 10-15 minutes, while you are configuring, From enable mode issue the command:</p>
<blockquote>
<p style="text-align: justify"><strong>#reload in MINUTES</strong></p>
</blockquote>
<p style="text-align: justify">This will reload the router after the specified number of minutes. It will ensure that if you lock yourself out, the router will revert back to the working startup-config. If the configuration was applied successfully, you can cancel the scheduled reload with the command</p>
<blockquote>
<p style="text-align: justify"><strong>#reload cancel</strong></p>
</blockquote>
<div style="overflow: hidden;width: 1px;height: 1px;text-align: justify">http://www.youtube.com/watch?v=SMWi7CLoZ2Q</div>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/07/anti-lockout-best-practice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Frame Relay Switching</title>
		<link>http://ccielab.ro/2010/07/frame-relay-switching/</link>
		<comments>http://ccielab.ro/2010/07/frame-relay-switching/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 08:32:46 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[DLCI]]></category>
		<category><![CDATA[Frame Relay]]></category>
		<category><![CDATA[Frame Relay Switch]]></category>
		<category><![CDATA[Inverse ARP]]></category>
		<category><![CDATA[LMI]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=119</guid>
		<description><![CDATA[Frame Relay is still very much a popular subject in exams, labs and in the real networks.
Any lab with topologies that run different protocols over FR must start with the layer 2 configuration of the Frame Relay switched network. FR Topologies like full mesh or hub and spoke require a Frame Relay Switch. A FR [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify"><strong>Frame Relay</strong> is still very much a popular subject in exams, labs and in the real networks.</p>
<p style="text-align: justify">Any lab with topologies that run different protocols over FR must start with the layer 2 configuration of the Frame Relay switched network. FR Topologies like full mesh or hub and spoke require a <strong>Frame Relay Switch. </strong>A FR Switch is a normal router but specifically configured to do Frame Relay switching.<strong><br />
</strong></p>
<p style="text-align: justify">First of all, we need to tell the router to start switching Frame Relay traffic. From global configuration mode we need to issue the <strong>frame-relay switching </strong>command.</p>
<p style="text-align: justify">Then, on the interfaces to Frame Relay clients, we need to start sending keepalives (LMIs) by configuring the interface as DCE with the <strong>frame-relay intf-type dce</strong> command.</p>
<p style="text-align: justify">The last thing that the FR Switch needs to do is to route DLCI on the virtual cicuits. This is done to tell an interface where to put a received frame with a DLCI. The frame will be put on another interface with another DLCI.  The configuration is done per interface with the <strong>frame-relay route</strong> command. The command requires that you specify the incoming  DLCI, on which the switching decision will be maide, the outgoing interface, and the DLCI with which the frame will be sent (&#8221;freame-relay route IN_DLCI OUT_INT OUT_DLCI&#8221;).</p>
<p style="text-align: justify">If Inverse ARP is not disabled on the FR Switch, no DLCI-IP mappings will be required.</p>
<p><strong>Topology:</strong></p>
<p><img class="alignnone size-full wp-image-127" src="http://ccielab.ro/wp-content/uploads/2010/07/fr_sw.png" alt="fr_sw" width="392" height="85" /></p>
<p><strong>Configuration:</strong></p>
<p>R1(config)#int s0/0<br />
R1(config-if)#no shut<br />
R1(config-if)#encapsulation frame-relay<br />
R1(config-if)#clock rate 128000<br />
R1(config-if)#ip address 10.1.2.1 255.255.255.0</p>
<p>R2(config)#int s0/0<br />
R2(config-if)#no shut<br />
R2(config-if)#encapsulation frame-relay<br />
R2(config-if)#clock rate 128000<br />
R2(config-if)#ip address 10.1.2.2 255.255.255.0</p>
<p>FR-Sw(config)#frame-relay switching<br />
FR-Sw(config)#int s0/1<br />
FR-Sw(config-if)#no shut<br />
FR-Sw(config-if)#clock rate 128000<br />
FR-Sw(config-if)#encapsulation frame-relay<br />
FR-Sw(config-if)#frame-relay intf-type dce<br />
FR-Sw(config-if)#frame-relay route 102 interface s0/0 201<br />
FR-Sw(config-if)#int s0/0<br />
FR-Sw(config-if)#no shut<br />
FR-Sw(config-if)#clock rate 128000<br />
FR-Sw(config-if)#encapsulation frame-relay<br />
FR-Sw(config-if)#frame-relay intf-type dce<br />
FR-Sw(config-if)#frame-relay route 201 interface s0/1 102</p>
<p><strong><br />
</strong></p>
<p><strong>Running Configurations:</strong></p>
<p><strong>R1:</strong></p>
<p>interface Serial0/0<br />
ip address 10.1.2.1 255.255.255.0<br />
encapsulation frame-relay<br />
clockrate 128000<br />
no fair-queue<br />
end</p>
<p><strong>R2:</strong></p>
<p>interface Serial0/0<br />
ip address 10.1.2.2 255.255.255.0<br />
encapsulation frame-relay<br />
clockrate 128000<br />
no fair-queue<br />
end</p>
<p><strong>FR-Sw:</strong></p>
<p>interface Serial0/0<br />
no ip address<br />
encapsulation frame-relay<br />
no fair-queue<br />
frame-relay intf-type dce<br />
frame-relay route 201 interface Serial0/1 102<br />
end</p>
<p>interface Serial0/1<br />
no ip address<br />
encapsulation frame-relay<br />
frame-relay intf-type dce<br />
frame-relay route 102 interface Serial0/0 201<br />
end</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/07/frame-relay-switching/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Back-to-back Frame Relay</title>
		<link>http://ccielab.ro/2010/07/back-to-back-frame-relay/</link>
		<comments>http://ccielab.ro/2010/07/back-to-back-frame-relay/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 07:52:09 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[back-to-back]]></category>
		<category><![CDATA[DCE]]></category>
		<category><![CDATA[DLCI]]></category>
		<category><![CDATA[FR Switch]]></category>
		<category><![CDATA[Frame Relay]]></category>
		<category><![CDATA[Inverse ARP]]></category>
		<category><![CDATA[keepalive]]></category>
		<category><![CDATA[serial]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=123</guid>
		<description><![CDATA[This is the simplest use of a Frame Relay encapsulation and it&#8217;s  between two routers, without a Frame Relay Switch. PPP or HDLC  would make more sense to use in these types of links, but it is useful  in labs.
In a back-to-back scenario is important to remember what the FR  Switch [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">This is the simplest use of a Frame Relay encapsulation and it&#8217;s  between two routers, <strong>without a Frame Relay Switch</strong>. PPP or HDLC  would make more sense to use in these types of links, but it is useful  in labs.</p>
<p style="text-align: justify">In a back-to-back scenario is important to remember what the FR  Switch should be doing: being the DCE and sending the keepalives to  maintain the layer 2 link to the client router. Because of the fact that  no FR Switch is present, the lack of keepalives being sent must be ignored using the &#8220;<strong>no  keepalive</strong>&#8221; command. Also, Inverse ARP won&#8217;t work, so manual IP-DLCI  mapping will be needed.</p>
<p style="text-align: justify">The FR Switch should be the one doing swapping of DLCIs on the network so the frames arrive at their destination with the correctly mapped DLCIs. In this case, we will need to have the same DLCI set in the manual mapping so the routers match entries in the mappings.</p>
<p><strong>The topology:</strong></p>
<p><img class="alignnone size-full wp-image-124" src="http://ccielab.ro/wp-content/uploads/2010/07/fr_b2b.png" alt="fr_b2b" width="375" height="126" /></p>
<p><strong>Configuration:</strong></p>
<p>R1(config)#int s0/1<br />
R1(config-if)#no shut<br />
R1(config-if)#clock rate 128000<br />
R1(config-if)#ip address 10.1.2.1 255.255.255.0<br />
R1(config-if)#encapsulation frame-relay<br />
R1(config-if)#frame-relay map ip 10.1.2.2 42<br />
R1(config-if)#no keepalive</p>
<p>R2(config)#int s0/1<br />
R2(config-if)#no shut<br />
R2(config-if)#clock rate 128000<br />
R2(config-if)#ip address 10.1.2.2 255.255.255.0<br />
R2(config-if)#encapsulation frame-relay<br />
R2(config-if)#frame-relay map ip 10.1.2.1 42<br />
R2(config-if)#no keepalive</p>
<p><strong>Running configurations:</strong></p>
<p><strong>R1:</strong></p>
<p>interface Serial0/1<br />
ip address 10.1.2.1 255.255.255.0<br />
encapsulation frame-relay<br />
no keepalive<br />
clockrate 128000<br />
frame-relay map ip 10.1.2.2 42<br />
end</p>
<p><strong>R2:</strong></p>
<p>interface Serial0/1<br />
ip address 10.1.2.2 255.255.255.0<br />
encapsulation frame-relay<br />
no keepalive<br />
frame-relay map ip 10.1.2.1 42<br />
end</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/07/back-to-back-frame-relay/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Output manipulation in Cisco IOS</title>
		<link>http://ccielab.ro/2010/03/output-manipulation-in-cisco-ios/</link>
		<comments>http://ccielab.ro/2010/03/output-manipulation-in-cisco-ios/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 08:37:19 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[append]]></category>
		<category><![CDATA[Cisco ISO]]></category>
		<category><![CDATA[configurations]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[output manipulation]]></category>
		<category><![CDATA[output modifiers]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[regular exprsions]]></category>
		<category><![CDATA[running-config]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[text filtering]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=76</guid>
		<description><![CDATA[One of the things that make Command Line Interfaces, like Bash, very efficient for administration is the output manipulation with piping and redirecting. Cisco IOS has most of the Bash equivalent modifiers, and administrators that know how to work with them can do things much more faster&#8230; this can make the difference in a lab [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that make Command Line Interfaces, like Bash, very efficient for administration is the output manipulation with piping and redirecting. Cisco IOS has most of the Bash equivalent modifiers, and administrators that know how to work with them can do things much more faster&#8230; this can make the difference in a lab exam or in the real world. Most show commands support this features and depending on the IOS, you have more or less features.</p>
<p>The usual &#8220;<strong>show run</strong>&#8221; command prints a large output, from which you need only a few lines. You can only scroll down with space and enter (the the Linux <strong>more</strong> command). If you are searching for a keyword in the running config, you can go to the line that contains the string using the slash key, like in vim or more or less in Linux. So, &#8220;<strong>/KEYWORD</strong>&#8221; after running the show command, while scrolling, will take you to the wanted line.</p>
<p>If you want from the output just some lines, you can filter them, just like piping the output to grep in Linux. You can use the &#8221; <strong>|</strong> &#8221; after the show command to see how you can <strong>filter </strong>(be careful, there is a space before and after the |). To print just the lines that have a keywork, use &#8220;<strong> | include KEYWORD</strong>&#8220;, and to print all lines except the ones what have the keyword, use &#8220;<strong> | exclude KEYWORD</strong>&#8220;. If you want to print out all output starting with a line that contains a keyword until the end of the lines, use &#8220;<strong> | begin KEYWORD</strong>&#8220;.</p>
<p>Taking advantage of the hierarchical structure of the running config, you can print out just a <strong>section </strong>of the output. For example, &#8220;<strong>show run | section   router ospf 1</strong>&#8221; will list the configuration for the OSPF process 1 and &#8220;<strong>show run | section interface Serial0/0</strong>&#8221; will print the configuration for the specified interface. Be careful, this is<strong> case sensitive</strong> and you need to mach the case of the line in the running config (&#8221;Serial 0/0&#8243; will work, &#8220;serial 0/0&#8243; won&#8217;t).</p>
<p><strong>Redirection </strong>into a file is also possible. &#8220;<strong>show run | redirect flash:run</strong>&#8221; will put the contents of the running config into a file called &#8216;run&#8217; in flash memory. This is similar to the &#8220;&gt;&#8221; operand in Bash. Using redirect, the content of the target file will be replaced. You can append to the file (like &#8220;&gt;&gt;&#8221; in Bash) with &#8220;<strong> | append FILE</strong>&#8220;.  &#8220;<strong> | tee FILE</strong>&#8221; works like redirect, but it also prints the output to the screen.</p>
<p><strong>Regular expressions</strong> are also supported. If you like to print from the routing table, the routes received from RIP, you can filter with &#8220;show ip route | include R&#8221; and the routes from EIGRP with  &#8220;show ip route | include D&#8221;. But you can do this in one line, filtering with both conditions, with &#8220;show ip route | include [RD]&#8220;.</p>
<p>Slightly off topic, but good to know, is how to stop output. For example, traceroute to an unreachable location, will try 30 hops before it stops, and this might take a long time. To break the action hit the key combination &#8220;<strong>Ctrl+Shift+6</strong>&#8220;.</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/03/output-manipulation-in-cisco-ios/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

