<?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</title>
	<atom:link href="http://ccielab.ro/feed/" rel="self" type="application/rss+xml" />
	<link>http://ccielab.ro</link>
	<description>Cry in the Lab, Laugh in the Datacenter</description>
	<lastBuildDate>Mon, 02 Jan 2012 00:15:56 +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>IOS + Linux = Quagga</title>
		<link>http://ccielab.ro/2011/12/ios-linux-quagga/</link>
		<comments>http://ccielab.ro/2011/12/ios-linux-quagga/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 22:41:49 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[BGP]]></category>
		<category><![CDATA[OSFP]]></category>
		<category><![CDATA[quagga]]></category>
		<category><![CDATA[RIP]]></category>
		<category><![CDATA[zebra]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=180</guid>
		<description><![CDATA[Cisco IOS&#8217;s shell is a popular interface for devices in the networking world. But also in the network world, there are a lot of Linux/Open Source fans. The Quagga open source project tries to bring together IOS and Linux, by providing an IOS-like interface for configuring Linux&#8217;s interfaces, routing table and firewall, along side its [...]]]></description>
			<content:encoded><![CDATA[<p>Cisco IOS&#8217;s shell is a popular interface for devices in the networking world. But also in the network world, there are a lot of Linux/Open Source fans. The <a href="http://www.quagga.net" target="_blank"><strong>Quagga</strong></a> open source project tries to bring together IOS and Linux, by providing an IOS-like interface for configuring Linux&#8217;s interfaces, routing table and firewall, along side its own implementations of RIP, OSPF and BGP daemons.</p>
<p>The Quagga Software Routing Suite comes as a set of daemos. The main one is the <strong>zerbra daemon</strong> (Zebra is the old name of the project). This core daemon does the interaction with the Linux kernel and, also, with other daemons like ripd (RIP daemon), ospfd (OSPF daemon), bgpd (BGP daoemon). Quagga is modular, so you can implement new protocols if needed via a standard API.</p>
<p>To configure Quagga, you first need to start the daemons (at least the core one), in the <em>/etc/quagga/daemons</em> file. Each daemon has its own configuration file (ex. <em>/etc/quagga/zebra.conf</em>, <em>/etc/quagga/ripd.conf</em> etc.). Accessing the IOS-like shell is done via the <strong>vtysh</strong> command. Once in this shell, most commands available in Cisco&#8217;s IOS are available.</p>
<blockquote><p>Router / # cd<br />
Router ~ # vtysh</p>
<p>Hello, this is Quagga (version 0.99.18).<br />
Copyright 1996-2005 Kunihiro Ishiguro, et al.</p>
<p>Router# conf t<br />
Router(config)# hostname  LinuxRouter<br />
LinuxRouter(config)# exit<br />
LinuxRouter# show ?<br />
bgp             BGP information<br />
clns            clns network information<br />
daemons         Show list of running daemons<br />
debugging       State of each debugging option</p>
<p>[...]</p></blockquote>
<p>Keep in mind that some things are not 100% identical to a Cisco router (ex. the interface names). Here&#8217;s an example of how to configure an interface.</p>
<blockquote><p>LinuxRouter# conf t<br />
LinuxRouter(config)# interface  eth0<br />
LinuxRouter(config-if)# ip address  141.85.42.1 ?<br />
A.B.C.D/M  IP address (e.g. 10.0.0.1/8)<br />
LinuxRouter(config-if)# ip address  141.85.42.1/24<br />
LinuxRouter(config-if)# link-detect</p></blockquote>
<p>Monitor output (show commands) are similar aside some Linux specific details (ex. Kernel routes are available in Linux, but not in IOS).</p>
<blockquote><p>Router# sh ip route<br />
Codes: K &#8211; kernel route, C &#8211; connected, S &#8211; static, R &#8211; RIP, O &#8211; OSPF,<br />
I &#8211; ISIS, B &#8211; BGP, &gt; &#8211; selected route, * &#8211; FIB route</p>
<p>K * 0.0.0.0/0 via 192.0.2.1, venet0 inactive<br />
O 10.10.12.0/24 [110/10] is directly connected, eth0, 00:03:41<br />
C&gt;* 10.10.12.0/24 is directly connected, eth0<br />
O 10.10.14.0/24 [110/10] is directly connected, eth1, 00:03:36<br />
C&gt;* 10.10.14.0/24 is directly connected, eth1<br />
O&gt;* 10.10.23.0/24 [110/20] via 10.10.12.2, eth0, 00:02:46<br />
O&gt;* 10.10.24.0/24 [110/20] via 10.10.12.2, eth0, 00:02:14<br />
*via 10.10.14.4, eth1, 00:02:14<br />
O&gt;* 10.10.25.0/24 [110/20] via 10.10.12.2, eth0, 00:02:41<br />
O&gt;* 10.10.35.0/24 [110/30] via 10.10.12.2, eth0, 00:01:21<br />
* via 10.10.14.4, eth1, 00:01:21<br />
O&gt;* 10.10.45.0/24 [110/20] via 10.10.14.4, eth1, 00:02:08<br />
C&gt;* 127.0.0.0/8 is directly connected, lo<br />
C&gt;* 127.0.0.1/32 is directly connected, venet0<br />
C&gt;* 172.10.10.0/32 is directly connected, venet0<br />
K&gt;* 192.0.2.1/32 is directly connected, venet0</p></blockquote>
<p>Configuring a routing protocol instance is also similar:</p>
<blockquote><p>LinuxRouter# conf t<br />
LinuxRouter(config)# router ospf<br />
LinuxRouter(config-router)# network  192.168.123.0/0 area 0</p></blockquote>
<p>As you can see, coming from an IOS background, this tool is very easy to use on your Linux box. It is far from perfect since it doesn&#8217;t have the years in production like IOS or iproute2, but it is cool to test out.</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2011/12/ios-linux-quagga/feed/</wfw:commentRss>
		<slash:comments>1</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>0</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>0</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>Basic packet crafting</title>
		<link>http://ccielab.ro/2010/06/basic-pachet-crafting/</link>
		<comments>http://ccielab.ro/2010/06/basic-pachet-crafting/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:47:40 +0000</pubDate>
		<dc:creator>Dragos Draghicescu</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[acl]]></category>
		<category><![CDATA[craft]]></category>
		<category><![CDATA[hping]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=86</guid>
		<description><![CDATA[Ok, this will be a short one  . I just want to raise attention on how can one bypass an extended (or standard) ACL (or access-list).
So, for this example, i have one router with an IP address of 10.10.10.2, which can be accessed only by the admin, only from 20.20.20.20. That is done with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">Ok, this will be a short one <img src='http://ccielab.ro/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I just want to raise attention on how can one bypass an extended (or standard) ACL (or access-list).</p>
<p style="text-align: justify">So, for this example, i have one router with an IP address of 10.10.10.2, which can be accessed only by the admin, only from 20.20.20.20. That is done with an inbound ACL, put on the egress interface of the router. Looks like this:</p>
<pre>Extended IP access list 111</pre>
<pre>20 permit ip host 20.20.20.20 host 10.10.10.2 log</pre>
<p style="text-align: justify">There is a little problem with spoofing: the return traffic has to be routed back to the attacker. But everything will work just fine if you happen to be in the same network with the admin (you can achieve bidirectional communication). In case the attack is done over the Internet, there is still the possibility of a DOS (Denial Of Service), by sending tons of packets that will be accepted. I assumed another thing: your ISP does not check for the source of the packets (DOS attacks are less frequent if that simple measure is taken).</p>
<p style="text-align: justify">For the demonstration, i chose a well-known packet crafter named HPING3. It allows one to customize a packet at different layers and it`s well documented, but for now we will only use a fraction of it`s power:</p>
<pre><em><strong>$</strong></em><em> sudo hping3 -S 10.10.10.2 -a 20.20.20.20</em></pre>
<p>The result could be:</p>
<pre style="text-align: justify"><em>*Mar 1 05:52:01.702: %SEC-6-IPACCESSLOGP:</em></pre>
<pre style="text-align: justify"><em>list 111 permitted tcp 20.20.20.20(0) -&gt; 10.10.10.2(0), 360 packets</em></pre>
<p style="text-align: justify"><em>To check the amount of pings, you can issue the command &#8220;</em><em><strong>show ip traffic | section ICMP</strong></em><em>&#8220;. You can &#8220;<strong>clear ip traffic</strong></em><em>&#8221; before that.</em></p>
<p style="text-align: justify"><em>Despite this, ACLs are still adding a serious amount of security to your network. But in front of a determined attacker, one should do more than that in order to have a healthy network. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2010/06/basic-pachet-crafting/feed/</wfw:commentRss>
		<slash:comments>0</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>
		<item>
		<title>IPv6 Case Study: RIPng and usage of link local address</title>
		<link>http://ccielab.ro/2009/11/ipv6-case-study-ripng-and-usage-of-link-local-address/</link>
		<comments>http://ccielab.ro/2009/11/ipv6-case-study-ripng-and-usage-of-link-local-address/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 23:26:06 +0000</pubDate>
		<dc:creator>Alex Juncu</dc:creator>
				<category><![CDATA[CCNP]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[link local]]></category>
		<category><![CDATA[RIPng]]></category>

		<guid isPermaLink="false">http://ccielab.ro/?p=67</guid>
		<description><![CDATA[Simple topology: two routers, connected via a (serial) link, each with a loopback interface configured on it.
Loopback 0 on R1 has the IP 2001:A::1/64 and Loopback 0 on R2 has the IP 2001:B::1/64.  We want to make R1 aware of the 2001:B::0/64 network and R2 aware of the 2001:A::0/64 network. RIPng would be the the [...]]]></description>
			<content:encoded><![CDATA[<p>Simple topology: two routers, connected via a (serial) link, each with a loopback interface configured on it.</p>
<p>Loopback 0 on R1 has the IP <strong>2001:A::1/64</strong> and Loopback 0 on R2 has the IP <strong>2001:B::1/64</strong>.  We want to make R1 aware of the 2001:B::0/64 network and R2 aware of the 2001:A::0/64 network. <strong>RIPng </strong>would be the the easiest way of doing that.</p>
<p>First we need to enable<strong> IPv6 unicast routing</strong>, and then start the RIP process on the interfaces.</p>
<blockquote><p>R1(config)#ipv6 unicast-routing<br />
R1(config)#ipv6 router rip SIMPLE_RIP<br />
R1(config)#interface lo0<br />
R1(config-if)#ipv6 address 2001:A::1/64<br />
R1(config-if)#ipv6 rip SIMPLE_RIP enable</p>
<p>R2(config)#ipv6 unicast-routing<br />
R2(config)#ipv6 router rip SIMPLE_RIP<br />
R2(config)#interface lo0<br />
R2(config-if)#ipv6 address 2001:B::1/64<br />
R2(config-if)#ipv6 rip SIMPLE_RIP enable</p></blockquote>
<p>We also need to activate the RIP process on the transit link and make the interface IPv6 enabled.</p>
<blockquote><p>R1(config)#interface s0/1/1</p>
<p>R1(config-if)#ipv6 rip SIMPLE_RIP enable</p>
<p>R1(config-if)#ipv6 enable</p>
<p>R2(config)#interface s0/1/1</p>
<p>R2(config-if)#ipv6 enable</p>
<p>R2(config-if)#ipv6 rip SIMPLE_RIP enable</p></blockquote>
<p>As it can be noticed, we haven&#8217;t configured a global IPv6 address on the interface, yet, RIP will do it&#8217;s job.</p>
<blockquote><p>R2#sh ipv6 route<br />
IPv6 Routing Table &#8211; 5 entries<br />
Codes: C &#8211; Connected, L &#8211; Local, S &#8211; Static, R &#8211; RIP, B &#8211; BGP<br />
U &#8211; Per-user Static route<br />
I1 &#8211; ISIS L1, I2 &#8211; ISIS L2, IA &#8211; ISIS interarea, IS &#8211; ISIS summary<br />
O &#8211; OSPF intra, OI &#8211; OSPF inter, OE1 &#8211; OSPF ext 1, OE2 &#8211; OSPF ext 2<br />
ON1 &#8211; OSPF NSSA ext 1, ON2 &#8211; OSPF NSSA ext 2<br />
D &#8211; EIGRP, EX &#8211; EIGRP external<br />
<strong>R   2001:A::/64 [120/2]<br />
via FE80::219:E8FF:FEF2:8F3A, Serial0/1/1</strong><br />
C   2001:B::/64 [0/0]<br />
via ::, Loopback0<br />
L   2001:B::1/128 [0/0]<br />
via ::, Loopback0<br />
L   FE80::/10 [0/0]<br />
via ::, Null0<br />
L   FF00::/8 [0/0]<br />
via ::, Null0</p></blockquote>
<p>The reason why it works, it&#8217;s a <strong>link local address</strong>, which is automatically configured once you turn on IPv6 on the interface. If the command &#8220;(config-if)#ipv6 enable&#8221; would have been missing, there would have been no exchange of routes.</p>
<p>Let us now analyze a possible misconfiguration. Let&#8217;s configure a global address on the link. What first comes to mind is IPv4 rule that stated that the serial interface of each router has to be configured in the same broadcast domain.  We will configure the serial interface on R1 with 2001:C::1/64 and serial interface on R2 with 2001:D::1/64 (clearly in different subnets).</p>
<blockquote><p>R1#show ipv6 interface serial 0/1/1<br />
Serial0/1/1 is up, line protocol is up<br />
IPv6 is enabled, link-local address is FE80::219:E8FF:FEF2:8F3A<br />
No Virtual link-local address(es):<br />
<strong>Global unicast address(es):<br />
2001:C::1, subnet is 2001:C::/64</strong></p>
<p>R2#show ipv6 interface serial 0/1/1<br />
Serial0/1/1 is up, line protocol is up<br />
IPv6 is enabled, link-local address is FE80::21A:2FFF:FE2A:2118<br />
No Virtual link-local address(es):<br />
<strong>Global unicast address(es):<br />
2001:D::1, subnet is 2001:D::/64</strong></p></blockquote>
<p>Even if we don&#8217;t have the two routers in the same subnet from the global address perspective, they are in the same broadcast domain from the link local address point of view. The traffic will still be routed via the link local address, because it&#8217;s actually &#8220;closer&#8221;.</p>
<blockquote><p>R   2001:A::/64 [120/2]<br />
via FE80::219:E8FF:FEF2:8F3A, Serial0/1/1</p></blockquote>
<p>So, if your routes are flowing when you are thinking that they shouldn&#8217;t, you might want to remember the link local address.</p>
<p>Thanks go out to BogdanD for help with case study.</p>
]]></content:encoded>
			<wfw:commentRss>http://ccielab.ro/2009/11/ipv6-case-study-ripng-and-usage-of-link-local-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

