<?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"
	>

<channel>
	<title>Aditya.Hananto.net</title>
	<atom:link href="http://aditya.hananto.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://aditya.hananto.net</link>
	<description>Knowledge Sharing About Networking</description>
	<pubDate>Mon, 26 Jul 2010 19:43:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Konfigurasi VLAN pada Cisco Catalyst Switch</title>
		<link>http://aditya.hananto.net/2010/03/18/konfigurasi-vlan-pada-cisco-catalyst-switch/</link>
		<comments>http://aditya.hananto.net/2010/03/18/konfigurasi-vlan-pada-cisco-catalyst-switch/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 16:32:21 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[catalyst]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[switch]]></category>

		<category><![CDATA[switching]]></category>

		<category><![CDATA[vlan]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=191</guid>
		<description><![CDATA[
Sesuai contoh topologi di atas, jaringan dibagi menjadi 4 VLAN/logical subnet yaitu:
1. Native VLAN (default VLAN 1)
subnet: 10.1.0.0/24
gateway: 10.1.0.1
2. Subnet untuk Divisi Engineer (VLAN 2)
subnet: 10.1.1.0/24
gateway: 10.1.1.1
3. Subnet untuk Divisi Finance (VLAN 3)
subnet: 10.1.2.0/24
gateway: 10.1.2.1
4. Subnet untuk Divisi Sales (VLAN 4)
subnet: 10.1.3.0/24
gateway: 10.1.3.1
Floor1-SW &#38; Floor2-SW dijadikan sebagai VTP client, sehingga kedua switch ini hanya bisa [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2010/03/vlan.jpg"><img class="alignnone size-full wp-image-192" title="vlan" src="http://aditya.hananto.net/wp-content/uploads/2010/03/vlan.jpg" alt="" width="500" height="307" /></a></p>
<p>Sesuai contoh topologi di atas, jaringan dibagi menjadi 4 VLAN/logical subnet yaitu:<br />
1. Native VLAN (default VLAN 1)<br />
subnet: 10.1.0.0/24<br />
gateway: 10.1.0.1<br />
2. Subnet untuk Divisi Engineer (VLAN 2)<br />
subnet: 10.1.1.0/24<br />
gateway: 10.1.1.1<br />
3. Subnet untuk Divisi Finance (VLAN 3)<br />
subnet: 10.1.2.0/24<br />
gateway: 10.1.2.1<br />
4. Subnet untuk Divisi Sales (VLAN 4)<br />
subnet: 10.1.3.0/24<br />
gateway: 10.1.3.1</p>
<p>Floor1-SW &amp; Floor2-SW dijadikan sebagai VTP client, sehingga kedua switch ini hanya bisa membuat VLAN berdasarkan VTP advertisement dari CORE-SW yang berperan sebagai VTP server.</p>
<p><strong>Konfigurasi di CORE-SW:</strong><br />
&gt; enable<br />
# configure terminal</p>
<p><em>### konfigurasi VTP (VLAN Trunking Protocol) ###</em><br />
(config)# vtp mode server<br />
(config)# vtp domain myoffice<br />
(config)# vtp password rahasia</p>
<p><em>### Konfigurasi Trunk di port Fa0/22, Fa0/23 dan Fa0/24 ###</em><br />
(config)# interface f0/22<br />
(config-if)# description ***Trunk port connected to Router-X***<br />
(config-if)# switchport trunk encapsulation dot1q<br />
(config-if)# switchport mode trunk<br />
(config-if)# no shutdown</p>
<p>(config-if)# interface f0/23<br />
(config-if)# description ***Trunk port connected to Floor1-SW***<br />
(config-if)# switchport trunk encapsulation dot1q<br />
(config-if)# switchport mode trunk<br />
(config-if)# no shutdown</p>
<p>(config-if)# interface f0/24<br />
(config-if)# description ***Trunk port connected to Floor2-SW***<br />
(config-if)# switchport trunk encapsulation dot1q<br />
(config-if)# switchport mode trunk<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p><em>### membuat VLAN tambahan selain native VLAN ###</em><br />
(config)# vlan 2<br />
(config-vlan)# name ENGINEER<br />
(config-vlan)# vlan 3<br />
(config-vlan)# name FINANCE<br />
(config-vlan)# vlan 4<br />
(config-vlan)# name SALES<br />
(config-vlan)# exit</p>
<p><em>### memberi IP address pada interface vlan 1 ###</em><br />
(config)# interface vlan 1<br />
(config-if)# description ***native VLAN***<br />
(config-if)# ip address 10.1.0.10 255.255.255.0<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p>(config)# ip default-gateway 10.1.0.1  ==&gt; set gateway pada switch<br />
(config)# end</p>
<p># copy run start    ==&gt; save konfigurasi ke NVRAM</p>
<p>==========================================================<br />
<strong> Konfigurasi di Floor1-SW:</strong><br />
&gt; enable<br />
# configure terminal</p>
<p><em>### konfigurasi VTP (VLAN Trunking Protocol) ###</em><br />
(config)# vtp mode client<br />
(config)# vtp domain myoffice<br />
(config)# vtp password rahasia</p>
<p><em>### Konfigurasi Trunk di port Fa0/24 ###</em><br />
(config)# interface f0/24<br />
(config-if)# description ***Trunk port connected to CORE-SW***<br />
(config-if)# switchport trunk encapsulation dot1q<br />
(config-if)# switchport mode trunk<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p><em>### Konfigurasi VLAN-membership untuk masing-masing port ###</em><br />
(config)# interface range f0/1 - 7<br />
(config-if-range)# description *** connected to Engineer dept&#8217;s PC ***<br />
(config-if-range)# switchport mode access<br />
(config-if-range)# switchport access vlan 2</p>
<p>(config-if-range)# interface range f0/8 - 14<br />
(config-if-range)# description *** connected to Finance dept&#8217;s PC ***<br />
(config-if-range)# switchport mode access<br />
(config-if-range)# switchport access vlan 3</p>
<p>(config-if-range)# interface range f0/15 - 21<br />
(config-if-range)# description *** connected to Sales dept&#8217;s PC ***<br />
(config-if-range)# switchport mode access<br />
(config-if-range)# switchport access vlan 4<br />
(config-if-range)# exit</p>
<p><em>### memberi IP address pada interface vlan 1 ###</em><br />
(config)# interface vlan 1<br />
(config-if)# description ***native VLAN***<br />
(config-if)# ip address 10.1.0.11 255.255.255.0<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p>(config)# ip default-gateway 10.1.0.1  ==&gt; set gateway pada switch<br />
(config)# end</p>
<p># copy run start    ==&gt; save konfigurasi ke NVRAM</p>
<p>============================================================<br />
<strong> Konfigurasi di Floor2-SW:</strong><br />
&gt; enable<br />
# configure terminal</p>
<p><em>### konfigurasi VTP (VLAN Trunking Protocol) ###</em><br />
(config)# vtp mode client<br />
(config)# vtp domain myoffice<br />
(config)# vtp password rahasia</p>
<p><em>### Konfigurasi Trunk di port Fa0/24 ###</em><br />
(config)# interface f0/24<br />
(config-if)# description ***Trunk port connected to CORE-SW***<br />
(config-if)# switchport trunk encapsulation dot1q<br />
(config-if)# switchport mode trunk<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p><em>### Konfigurasi VLAN-membership untuk masing-masing port ###</em><br />
(config)# interface range f0/1 - 7<br />
(config-if-range)# description *** connected to Engineer dept&#8217;s PC ***<br />
(config-if-range)# switchport mode access<br />
(config-if-range)# switchport access vlan 2</p>
<p>(config-if-range)# interface range f0/8 - 14<br />
(config-if-range)# description *** connected to Finance dept&#8217;s PC ***<br />
(config-if-range)# switchport mode access<br />
(config-if-range)# switchport access vlan 3</p>
<p>(config-if-range)# interface range f0/15 - 21<br />
(config-if-range)# description *** connected to Sales dept&#8217;s PC ***<br />
(config-if-range)# switchport mode access<br />
(config-if-range)# switchport access vlan 4<br />
(config-if-range)# exit</p>
<p><em>### memberi IP address pada interface vlan 1 ###</em><br />
(config)# interface vlan 1<br />
(config-if)# description ***native VLAN***<br />
(config-if)# ip address 10.1.0.12 255.255.255.0<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p>(config)# ip default-gateway 10.1.0.1  ==&gt; set gateway pada switch<br />
(config)# end</p>
<p># copy run start    ==&gt; save konfigurasi ke NVRAM</p>
<p>=====================================================<br />
<strong> verifikasi:</strong><br />
# show vtp status<br />
# show vlan<br />
# show interface f0/24 switchport<br />
# show interface f0/24 trunk</p>
<p>Pada tahap ini, semua VLAN telah terbentuk dan semua member VLAN hanya bisa berkomunikasi dalam 1 VLAN yang sama. Agar antar VLAN bisa saling berkomunikasi, maka diperlukan konfigurasi inter-VLAN routing di router atau multilayer switch, Mengenai inter-VLAN routing akan saya bahas pada posting berikutnya <img src='http://aditya.hananto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&#8211;<br />
<strong>Quote of The Day:<br />
</strong>&#8220;For the things we have to learn before we can do them, we learn by doing them&#8221;<br />
~Aristotle</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/03/18/konfigurasi-vlan-pada-cisco-catalyst-switch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi IPv6 routing OSPFv3 di Cisco router</title>
		<link>http://aditya.hananto.net/2010/01/18/konfigurasi-ipv6-routing-ospfv3-di-cisco-router/</link>
		<comments>http://aditya.hananto.net/2010/01/18/konfigurasi-ipv6-routing-ospfv3-di-cisco-router/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 17:47:07 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[bsci]]></category>

		<category><![CDATA[ccnp]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[router]]></category>

		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=178</guid>
		<description><![CDATA[
Konfigurasi Router-JKT:
# conf t
(config)# ipv6 unicast-routing
(config)# ipv6 router ospf 10
(config)# int s0/1
(config-if)# description *** TO Router-SBY ***
(config-if)# ipv6 address 2002:10:1:2::1/64        –&#62; static manual IPv6 address assignment
(config-if)# ipv6 ospf 10 area 0           –&#62; mengaktifkan routing OSPF di interface
(config-if)# no shutdown
(config-if)# int s0/0
(config-if)# description *** TO Router-MDN ***
(config-if)# ipv6 address 2002:10:1:4::1/64
(config-if)# ipv6 ospf 10 area [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2010/01/ospfv31.jpg"><img class="alignnone size-medium wp-image-179" title="OSPFv3 for IPv6" src="http://aditya.hananto.net/wp-content/uploads/2010/01/ospfv31-300x126.jpg" alt="" width="424" height="177" /></a></p>
<p><strong>Konfigurasi Router-JKT:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing<br />
(config)# ipv6 router ospf 10</p>
<p>(config)# int s0/1<br />
(config-if)# description *** TO Router-SBY ***<br />
(config-if)# ipv6 address 2002:10:1:2::1/64        –&gt; static manual IPv6 address assignment<br />
(config-if)# ipv6 ospf 10 area 0           –&gt; mengaktifkan routing OSPF di interface<br />
(config-if)# no shutdown</p>
<p>(config-if)# int s0/0<br />
(config-if)# description *** TO Router-MDN ***<br />
(config-if)# ipv6 address 2002:10:1:4::1/64<br />
(config-if)# ipv6 ospf 10 area 0<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN JKT ***<br />
(config-if)# ipv6 address 2002:10:1:3::/64 eui-64    –&gt; static eui-64 IPv6 address assignment<br />
(config-if)# ipv6 ospf 10 area 0<br />
(config-if)# no shutdown<br />
(config-if)# end</p>
<p><strong>Konfigurasi Router-SBY:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing<br />
(config)# ipv6 router ospf 7</p>
<p>(config)# int s0/1<br />
(config-if)# description *** TO Router-JKT ***<br />
(config-if)# ipv6 address 2002:10:1:2::1/64<br />
(config-if)# ipv6 ospf 7 area 0<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN SBY ***<br />
(config-if)# ipv6 address 2002:10:1:1::/64 eui-64<br />
(config-if)# ipv6 ospf 7 area 0<br />
(config-if)# no shutdown<br />
(config-if)# end</p>
<p><strong>Konfigurasi Router-MDN:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing<br />
(config-if)# ipv6 router ospf 9</p>
<p>(config)# int s1/0<br />
(config-if)# description *** TO Router-JKT ***<br />
(config-if)# ipv6 address 2002:10:1:4::2/64<br />
(config-if)# ipv6 ospf 9 area 0<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN MDN ***<br />
(config-if)# ipv6 address 2002:10:1:5::/64 eui-64<br />
(config-if)# ipv6 ospf 9 area 0<br />
(config-if)# no shutdown<br />
(config-if)# end</p>
<p><strong>Verifikasi konfigurasi IPv6:</strong><br />
# show ipv6 int brief<br />
# show ipv6 protocols<br />
# show ipv6 ospf neighbor<br />
# show ipv6 ospf database<br />
# show ipv6 route</p>
<p>&#8211;<br />
<strong>Quote of The Day:</strong><br />
&#8220;Kesempatan dalam dunia yang terus berubah ini ada di mana-mana. Namun, kesempatan itu tidak terlihat oleh orang yang tidak tahu pasti apa yang mereka inginkan.&#8221;  ~Albert Mensah</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/01/18/konfigurasi-ipv6-routing-ospfv3-di-cisco-router/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi IPv6 routing RIPng di Cisco router</title>
		<link>http://aditya.hananto.net/2010/01/18/171/</link>
		<comments>http://aditya.hananto.net/2010/01/18/171/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 17:26:15 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[ipv6]]></category>

		<category><![CDATA[router]]></category>

		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=171</guid>
		<description><![CDATA[
Konfigurasi Router-JKT:
# conf t
(config)# ipv6 unicast-routing
(config)# ipv6 router rip RIP-JKT
(config)# int s0/1
(config-if)# description *** TO Router-SBY ***
(config-if)# ipv6 address 2002:10:1:2::1/64        &#8211;&#62; static manual IPv6 address assignment
(config-if)# ipv6 rip RIP-JKT enable        &#8211;&#62; mengaktifkan routing RIP di interface
(config-if)# no shutdown
(config-if)# int s0/0
(config-if)# description *** TO Router-MDN ***
(config-if)# ipv6 address 2002:10:1:4::1/64
(config-if)# ipv6 rip RIP-JKT enable
(config-if)# no [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2010/01/ipv6.jpg"><img class="alignnone" title="IPv6" src="http://aditya.hananto.net/wp-content/uploads/2010/01/ipv6.jpg" alt="" width="641" height="262" /></a></p>
<p><strong>Konfigurasi Router-JKT:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing<br />
(config)# ipv6 router rip RIP-JKT</p>
<p>(config)# int s0/1<br />
(config-if)# description *** TO Router-SBY ***<br />
(config-if)# ipv6 address 2002:10:1:2::1/64        &#8211;&gt; static manual IPv6 address assignment<br />
(config-if)# ipv6 rip RIP-JKT enable        &#8211;&gt; mengaktifkan routing RIP di interface<br />
(config-if)# no shutdown</p>
<p>(config-if)# int s0/0<br />
(config-if)# description *** TO Router-MDN ***<br />
(config-if)# ipv6 address 2002:10:1:4::1/64<br />
(config-if)# ipv6 rip RIP-JKT enable<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN JKT ***<br />
(config-if)# ipv6 address 2002:10:1:3::/64 eui-64    –&gt; static eui-64 IPv6 address assignment<br />
(config-if)# ipv6 rip RIP-JKT enable<br />
(config-if)# no shutdown<br />
(config-if)# end</p>
<p><strong>Konfigurasi Router-SBY:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing<br />
(config)# ipv6 router rip RIP-SBY</p>
<p>(config)# int s0/1<br />
(config-if)# description *** TO Router-JKT ***<br />
(config-if)# ipv6 address 2002:10:1:2::1/64<br />
(config-if)# ipv6 rip RIP-SBY enable<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN SBY ***<br />
(config-if)# ipv6 address 2002:10:1:1::/64 eui-64<br />
(config-if)# ipv6 rip RIP-SBY enable<br />
(config-if)# no shutdown<br />
(config-if)# end</p>
<p><strong>Konfigurasi Router-MDN:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing<br />
(config-if)# ipv6 rip RIP-MDN enable</p>
<p>(config)# int s1/0<br />
(config-if)# description *** TO Router-JKT ***<br />
(config-if)# ipv6 address 2002:10:1:4::2/64<br />
(config-if)# ipv6 rip RIP-MDN enable<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN MDN ***<br />
(config-if)# ipv6 address 2002:10:1:5::/64 eui-64<br />
(config-if)# ipv6 rip RIP-MDN enable<br />
(config-if)# no shutdown<br />
(config-if)# end</p>
<p><strong>Verifikasi konfigurasi IPv6:</strong><br />
# show ipv6 int brief<br />
# show ipv6 protocols<br />
# show ipv6 route</p>
<p>&#8211;<br />
<strong> Quote of The Day:</strong><br />
&#8220;Hanya orang-orang gila yang mengharapkan hasil berbeda tetapi menggunakan cara-cara yang sama.&#8221; ~Albert Einstein</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/01/18/171/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi dasar IPv6 &#038; static route di Cisco Router</title>
		<link>http://aditya.hananto.net/2010/01/16/konfigurasi-dasar-ipv6-di-cisco-router/</link>
		<comments>http://aditya.hananto.net/2010/01/16/konfigurasi-dasar-ipv6-di-cisco-router/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 21:39:46 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[ipv6]]></category>

		<category><![CDATA[router]]></category>

		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=165</guid>
		<description><![CDATA[
Konfigurasi Router-JKT:
# conf t
(config)# ipv6 unicast-routing
(config)# int s0/1
(config-if)# description *** TO Router-SBY ***
(config-if)# ipv6 address 2002:10:1:2::1/64    &#8211;&#62;  static manual IPv6 address assignment
(config-if)# no shutdown
(config-if)# int s0/0
(config-if)# description *** TO Router-MDN ***
(config-if)# ipv6 address 2002:10:1:4::1/64
(config-if)# no shutdown
(config-if)# int f0/0
(config-if)# description *** TO LAN JKT ***
(config-if)# ipv6 address 2002:10:1:3::/64 eui-64    &#8211;&#62; static eui-64 IPv6 address assignment
(config-if)# no [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2010/01/ipv6.jpg"><img class="alignnone size-full wp-image-166" title="IPv6" src="http://aditya.hananto.net/wp-content/uploads/2010/01/ipv6.jpg" alt="" width="500" height="204" /></a></p>
<p><strong>Konfigurasi Router-JKT:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing</p>
<p>(config)# int s0/1<br />
(config-if)# description *** TO Router-SBY ***<br />
(config-if)# ipv6 address 2002:10:1:2::1/64    &#8211;&gt;  static manual IPv6 address assignment<br />
(config-if)# no shutdown</p>
<p>(config-if)# int s0/0<br />
(config-if)# description *** TO Router-MDN ***<br />
(config-if)# ipv6 address 2002:10:1:4::1/64<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN JKT ***<br />
(config-if)# ipv6 address 2002:10:1:3::/64 eui-64    &#8211;&gt; static eui-64 IPv6 address assignment<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p>(config)# ipv6 route 2002:10:1:1::/64 s0/1    &#8211;&gt; konfigurasi IPv6 static route<br />
(config)# ipv6 route 2002:10:1:5::/64 s0/0<br />
(config)# end</p>
<p><strong>Konfigurasi Router-SBY:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing</p>
<p>(config)# int s0/1<br />
(config-if)# description *** TO Router-JKT ***<br />
(config-if)# ipv6 address 2002:10:1:2::1/64<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN SBY ***<br />
(config-if)# ipv6 address 2002:10:1:1::/64 eui-64<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p>(config)# ipv6 route :: s0/1    &#8211;&gt; konfigurasi IPv6 default route<br />
(config)# end</p>
<p><strong>Konfigurasi Router-MDN:</strong><br />
# conf t<br />
(config)# ipv6 unicast-routing</p>
<p>(config)# int s1/0<br />
(config-if)# description *** TO Router-JKT ***<br />
(config-if)# ipv6 address 2002:10:1:4::2/64<br />
(config-if)# no shutdown</p>
<p>(config-if)# int f0/0<br />
(config-if)# description *** TO LAN MDN ***<br />
(config-if)# ipv6 address 2002:10:1:5::/64 eui-64<br />
(config-if)# no shutdown<br />
(config-if)# exit</p>
<p>(config)# ipv6 route :: s1/0<br />
(config)# end</p>
<p><strong>Verifikasi konfigurasi IPv6:</strong><br />
# show ipv6 int brief<br />
# show ipv6 route</p>
<p><strong>Router-JKT:</strong><br />
# ping 2002:10:1:2::2    &#8211;&gt; ping ke s0/1 Router-SBY<br />
# ping 2002:10:1:4::2    &#8211;&gt; ping ke s1/0 Router-MDN</p>
<p>&#8211;<br />
<strong>Quote of The Day:</strong><br />
&#8220;You don’t have to do more than you are Paid for, but you can push yourself ahead mighty fast by doing it voluntarily.&#8221; ~Tetsuya Kitahata</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/01/16/konfigurasi-dasar-ipv6-di-cisco-router/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi PAT di Cisco Router</title>
		<link>http://aditya.hananto.net/2010/01/11/konfigurasi-pat-di-cisco-router/</link>
		<comments>http://aditya.hananto.net/2010/01/11/konfigurasi-pat-di-cisco-router/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 15:16:10 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[nat]]></category>

		<category><![CDATA[pat]]></category>

		<category><![CDATA[router]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=161</guid>
		<description><![CDATA[
Konfigurasi PAT di Router:
(config)# access-list 9 permit 172.17.0.0 0.0.0.255
(config)# access-list 9 permit 172.17.1.0 0.0.0.255
ATAU
(config)# access-list 9 permit 172.17.0.0 0.0.1.255
(config)# ip nat inside source list 9 int s0/0 overload
(config)# int s0/0
(config-if)# ip nat outside
(config-if)# int f0/0
(config-if)# ip nat inside
(config-if)# int f0/1
(config-if)# ip nat inside
(config-if)# end
verifikasi konfigurasi PAT:
# sh ip nat translation
# debug ip nat
&#8211;
 Quote of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2010/01/pat.jpg"><img class="alignnone size-full wp-image-162" title="PAT" src="http://aditya.hananto.net/wp-content/uploads/2010/01/pat.jpg" alt="" width="500" height="446" /></a></p>
<p><strong>Konfigurasi PAT di Router:</strong><br />
(config)# access-list 9 permit 172.17.0.0 0.0.0.255<br />
(config)# access-list 9 permit 172.17.1.0 0.0.0.255<br />
ATAU<br />
(config)# access-list 9 permit 172.17.0.0 0.0.1.255</p>
<p>(config)# ip nat inside source list 9 int s0/0 overload</p>
<p>(config)# int s0/0<br />
(config-if)# ip nat outside</p>
<p>(config-if)# int f0/0<br />
(config-if)# ip nat inside</p>
<p>(config-if)# int f0/1<br />
(config-if)# ip nat inside<br />
(config-if)# end</p>
<p><strong>verifikasi konfigurasi PAT:</strong><br />
# sh ip nat translation<br />
# debug ip nat</p>
<p>&#8211;<br />
<strong> Quote of The Day:</strong><br />
&#8220;Hard work has nothing to do with success. It does not produce success. It does not sustain success. And it certainly does not reverse a failure. It is PASSION that drives success. Love for one’s activity is infinitely more important to creating success than hard work.&#8221; ~Brett Watson</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/01/11/konfigurasi-pat-di-cisco-router/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi Static &#038; Dynamic NAT di Router Cisco</title>
		<link>http://aditya.hananto.net/2010/01/08/konfigurasi-static-dynamic-nat/</link>
		<comments>http://aditya.hananto.net/2010/01/08/konfigurasi-static-dynamic-nat/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 16:12:04 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[nat]]></category>

		<category><![CDATA[router]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=154</guid>
		<description><![CDATA[
Konfigurasi di Router:
Static NAT:
(config)# ip nat inside source static 10.0.0.2 202.10.10.2
(config)# ip nat inside source static 10.0.0.3 202.10.10.3
Dynamic NAT:
(config)# access-list 10 permit 10.0.1.0 0.0.0.255
(config)# ip nat pool MyPool 202.10.10.4 202.10.10.7 netmask 255.255.255.0
(config)# ip nat inside source list 10 pool MyPool
Setting up inside &#38; outside interface:
(config)# int f0/0
(config-if)# ip nat inside
(config-if)# int f0/1
(config-if)# ip nat inside
(config-if)# [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2010/01/nat1.jpg"><img class="alignnone size-full wp-image-159" title="NAT" src="http://aditya.hananto.net/wp-content/uploads/2010/01/nat1.jpg" alt="" width="500" height="446" /></a></p>
<p><strong>Konfigurasi di Router:<br />
Static NAT:<br />
</strong>(config)# ip nat inside source static 10.0.0.2 202.10.10.2<br />
(config)# ip nat inside source static 10.0.0.3 202.10.10.3</p>
<p><strong>Dynamic NAT:<br />
</strong>(config)# access-list 10 permit 10.0.1.0 0.0.0.255<br />
(config)# ip nat pool MyPool 202.10.10.4 202.10.10.7 netmask 255.255.255.0<br />
(config)# ip nat inside source list 10 pool MyPool</p>
<p><strong>Setting up inside &amp; outside interface:<br />
</strong>(config)# int f0/0<br />
(config-if)# ip nat inside</p>
<p>(config-if)# int f0/1<br />
(config-if)# ip nat inside</p>
<p>(config-if)# int s0/0<br />
(config-if)# ip nat outside<br />
(config-if)# end</p>
<p><strong>Verifikasi konfigurasi NAT:<br />
</strong># show ip nat translation<br />
# debug ip nat</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/01/08/konfigurasi-static-dynamic-nat/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi multi-area OSPF di Router Cisco</title>
		<link>http://aditya.hananto.net/2010/01/06/konfigurari-ospf-multi-area-di-router-cisco/</link>
		<comments>http://aditya.hananto.net/2010/01/06/konfigurari-ospf-multi-area-di-router-cisco/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 17:41:07 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[ospf]]></category>

		<category><![CDATA[router]]></category>

		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=131</guid>
		<description><![CDATA[
Konfigurasi OSPF di Router-JKT:
(config)# interface loopback 0
(config-if)# ip address 10.0.255.1 255.255.255.255      ==&#62; sebagai router-id OSPF
(config-if)# no shutdown
(config-if)# router ospf 1                                                ==&#62; menggunakan process-id 1
(config-router)# network 10.0.255.1 0.0.0.0 area 0
(config-router)# network 10.0.0.0   0.0.0.3 area 0
(config-router)# network 10.0.0.4   0.0.0.3 area 0
(config-router)# end
Konfigurasi OSPF di Router-SBY:
(config)# interface loopback 0
(config-if)# ip address 10.0.255.3 255.255.255.255
(config-if)# no [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2010/01/topologiospf.jpg"><img class="alignnone size-medium wp-image-138" title="Topologi OSPF" src="http://aditya.hananto.net/wp-content/uploads/2010/01/topologiospf-300x110.jpg" alt="" width="300" height="110" /></a></p>
<p><strong>Konfigurasi OSPF di Router-JKT:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 10.0.255.1 255.255.255.255      ==&gt; sebagai router-id OSPF<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 1                                                ==&gt; menggunakan process-id 1<br />
(config-router)# network 10.0.255.1 0.0.0.0 area 0<br />
(config-router)# network 10.0.0.0   0.0.0.3 area 0<br />
(config-router)# network 10.0.0.4   0.0.0.3 area 0<br />
(config-router)# end</p>
<p><strong>Konfigurasi OSPF di Router-SBY:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 10.0.255.3 255.255.255.255<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 1<br />
(config-router)# network 10.0.255.3 0.0.0.0 area 0<br />
(config-router)# network 10.0.0.4   0.0.0.3 area 0<br />
(config-router)# network 10.2.1.0   0.0.0.3 area 2<br />
(config-router)# end</p>
<p><strong>Konfigurasi OSPF di Router-MKS:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 10.2.255.1 255.255.255.255<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 2<br />
(config-router)# network 10.2.255.1 0.0.0.0 area 2<br />
(config-router)# network 10.2.0.0   0.0.0.255 area 2<br />
(config-router)# network 10.2.1.0   0.0.0.3 area 2<br />
(config-router)# end</p>
<p><strong>Konfigurasi OSPF di Router-MDN:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 10.0.255.2 255.255.255.255<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 2<br />
(config-router)# network 10.0.255.2 0.0.0.0 area 0<br />
(config-router)# network 10.0.0.0   0.0.0.3 area 0<br />
(config-router)# network 10.1.1.0   0.0.0.3 area 1<br />
(config-router)# end</p>
<p><strong>Konfigurasi OSPF di Router-ACEH:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 10.1.255.1 255.255.255.255<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 3<br />
(config-router)# network 10.1.255.1 0.0.0.0 area 1<br />
(config-router)# network 10.1.0.0   0.0.0.255 area 1<br />
(config-router)# network 10.1.1.0   0.0.0.3 area 1<br />
(config-router)# end</p>
<p><strong>Untuk verifikasi konfigurasi OSPF:</strong><br />
# sh ip route          ==&gt; melihat routing table<br />
# sh ip protocol       ==&gt; melihat routing protocol yg telah dikonfigurasi<br />
# sh ip ospf neighbor  ==&gt; melihat neighbor table OSPF<br />
# sh ip ospf database  ==&gt; melihat LSDB OSPF<br />
# sh ip route ospf     ==&gt; melihat routing table OSPF</p>
<p># debug ip ospf packet ==&gt; melihat proses mengirim &amp; menerima paket OSPF<br />
# debug ip ospf event  ==&gt; melihat event yg terjadi di OSPF<br />
# terminal monitor     ==&gt; utk melihat hasil debug (khusus bagi yg via telnet/SSH)<br />
# no debug all  ATAU  #undebug all   ==&gt; mematikan proses debugging</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/01/06/konfigurari-ospf-multi-area-di-router-cisco/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi single-area OSPF di Cisco Router</title>
		<link>http://aditya.hananto.net/2010/01/01/konfigurasi-ospf-single-area-di-cisco-router/</link>
		<comments>http://aditya.hananto.net/2010/01/01/konfigurasi-ospf-single-area-di-cisco-router/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 21:49:28 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[ospf]]></category>

		<category><![CDATA[router]]></category>

		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=121</guid>
		<description><![CDATA[
Konfigurasi OSPF di Router-JKT:
(config)# interface loopback 0
(config-if)# ip address 1.1.1.1 255.255.255.255  ==&#62; sebagai router-id OSPF
(config-if)# no shutdown
(config-if)# router ospf 1      ==&#62; menggunakan process-id 1
(config-router)# network 1.1.1.1    0.0.0.0 area 0
(config-router)# network 10.1.2.1   0.0.0.0 area 0
(config-router)# network 172.16.1.1 0.0.0.0 area 0
(config-router)# network 10.1.3.1   0.0.0.0 area 0
(config-router)# passive-interface f0/0    ==&#62; interface yg tidak mengirim paket OSPF (hello, update, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://aditya.hananto.net/wp-content/uploads/2009/12/topologijaringan.jpg" alt="" width="776" height="351" /></p>
<p><strong>Konfigurasi OSPF di Router-JKT:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 1.1.1.1 255.255.255.255  ==&gt; sebagai router-id OSPF<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 1      ==&gt; menggunakan process-id 1<br />
(config-router)# network 1.1.1.1    0.0.0.0 area 0<br />
(config-router)# network 10.1.2.1   0.0.0.0 area 0<br />
(config-router)# network 172.16.1.1 0.0.0.0 area 0<br />
(config-router)# network 10.1.3.1   0.0.0.0 area 0<br />
(config-router)# passive-interface f0/0    ==&gt; interface yg tidak mengirim paket OSPF (hello, update, dll)<br />
(config-router)# end</p>
<p><strong>Konfigurasi OSPF di Router-SBY:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 1.1.1.2 255.255.255.255<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 1<br />
(config-router)# network 1.1.1.2    0.0.0.0 area 0<br />
(config-router)# network 10.1.2.0   0.0.0.255 area 0<br />
(config-router)# network 10.1.1.0   0.0.0.255 area 0<br />
(config-router)# passive-interface f0/0<br />
(config-router)# end</p>
<p><strong>Konfigurasi OSPF di Router-MDN:</strong><br />
(config)# interface loopback 0<br />
(config-if)# ip address 1.1.1.3 255.255.255.255<br />
(config-if)# no shutdown</p>
<p>(config-if)# router ospf 2<br />
(config-router)# network 1.1.1.3    0.0.0.0 area 0<br />
(config-router)# network 172.16.1.2   0.0.0.255 area 0<br />
(config-router)# network 192.168.1.1   0.0.0.255 area 0<br />
(config-router)# passive-interface f0/0<br />
(config-router)# end</p>
<p><strong>Untuk verifikasi konfigurasi OSPF:</strong><br />
# sh ip route          ==&gt; melihat routing table<br />
# sh ip protocol       ==&gt; melihat routing protocol yg telah dikonfigurasi<br />
# sh ip ospf neighbor  ==&gt; melihat neighbor table OSPF<br />
# sh ip ospf database  ==&gt; melihat LSDB OSPF<br />
# sh ip route ospf     ==&gt; melihat routing table OSPF</p>
<p># debug ip ospf packet ==&gt; melihat proses mengirim &amp; menerima paket OSPF<br />
# debug ip ospf event  ==&gt; melihat event yg terjadi di OSPF<br />
# terminal monitor     ==&gt; utk melihat hasil debug (khusus bagi yg via telnet/SSH)<br />
# no debug all  ATAU  #undebug all   ==&gt; mematikan proses debugging</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2010/01/01/konfigurasi-ospf-single-area-di-cisco-router/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi Routing Protocol EIGRP di Cisco Router</title>
		<link>http://aditya.hananto.net/2009/12/28/konfigurasi-routing-protocol-eigrp-di-cisco-router/</link>
		<comments>http://aditya.hananto.net/2009/12/28/konfigurasi-routing-protocol-eigrp-di-cisco-router/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 03:39:23 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[eigrp]]></category>

		<category><![CDATA[router]]></category>

		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=112</guid>
		<description><![CDATA[
Konfigurasi EIGRP di Router-JKT:
(config)# router eigrp 65000      ==&#62; pakai private AS 65000
(config-router)# network 10.0.0.0
(config-router)# network 172.16.0.0
(config-router)# passive-interface f0/0    ==&#62; interface yg tidak mengirim paket EIGRP (hello, update, etc)
(config-router)# end
Konfigurasi EIGRP di Router-SBY:
(config)# router eigrp 65000
(config-router)# network 10.0.0.0
(config-router)# passive-interface f0/0
(config-router)# end
Konfigurasi EIGRP di Router-MDN:
(config)# router eigrp 65000
(config-router)# network 10.0.0.0
(config-router)# network 192.168.1.0
(config-router)# passive-interface f0/1
(config-router)# end
Untuk verifikasi konfigurasi [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2009/12/topologijaringan2.jpg"><img class="alignnone size-full wp-image-119" title="topologijaringan2" src="http://aditya.hananto.net/wp-content/uploads/2009/12/topologijaringan2.jpg" alt="" width="499" height="225" /></a></p>
<p><strong>Konfigurasi EIGRP di Router-JKT:</strong><br />
(config)# router eigrp 65000      ==&gt; pakai private AS 65000<br />
(config-router)# network 10.0.0.0<br />
(config-router)# network 172.16.0.0<br />
(config-router)# passive-interface f0/0    ==&gt; interface yg tidak mengirim paket EIGRP (hello, update, etc)<br />
(config-router)# end</p>
<p><strong>Konfigurasi EIGRP di Router-SBY:</strong><br />
(config)# router eigrp 65000<br />
(config-router)# network 10.0.0.0<br />
(config-router)# passive-interface f0/0<br />
(config-router)# end</p>
<p><strong>Konfigurasi EIGRP di Router-MDN:</strong><br />
(config)# router eigrp 65000<br />
(config-router)# network 10.0.0.0<br />
(config-router)# network 192.168.1.0<br />
(config-router)# passive-interface f0/1<br />
(config-router)# end</p>
<p><strong>Untuk verifikasi konfigurasi EIGRP:</strong><br />
# sh ip route           ==&gt; melihat routing table<br />
# sh ip protocol        ==&gt; melihat routing protocol di router kita<br />
# sh ip eigrp neighbor  ==&gt; melihat neighbor table EIGRP<br />
# sh ip eigrp topology  ==&gt; melihat topology table EIGRP<br />
# sh ip route eigrp    ==&gt; melihat routing table EIGRP</p>
<p># debug ip eigrp     ==&gt; melihat proses mengirim &amp; menerima routing update RIP<br />
# terminal monitor   ==&gt; utk melihat hasil debug (khusus bagi yg via telnet/SSH)<br />
# no debug all  ATAU  #undebug all   ==&gt; mematikan proses debugging</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2009/12/28/konfigurasi-routing-protocol-eigrp-di-cisco-router/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Konfigurasi Routing Protocol RIP di Cisco Router</title>
		<link>http://aditya.hananto.net/2009/12/21/konfigurasi-routing-protocol-rip/</link>
		<comments>http://aditya.hananto.net/2009/12/21/konfigurasi-routing-protocol-rip/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 08:06:36 +0000</pubDate>
		<dc:creator>M. Aditya Hananto</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[ccna]]></category>

		<category><![CDATA[cisco]]></category>

		<category><![CDATA[rip]]></category>

		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://aditya.hananto.net/?p=103</guid>
		<description><![CDATA[
Konfigurasi RIP di Router-JKT:
(config)# router rip
(config-router)# version 2
(config-router)# network 10.0.0.0
(config-router)# network 172.16.0.0
(config-router)# passive-interface f0/0    ==&#62; interface yg tidak mengirim routing update RIP
(config-router)# end
Konfigurasi RIP di Router-SBY:
(config)# router rip
(config-router)# version 2
(config-router)# network 10.0.0.0
(config-router)# passive-interface f0/0
(config-router)# end
Konfigurasi RIP di Router-MDN:
(config)# router rip
(config-router)# version 2
(config-router)# network 172.16.0.0
(config-router)# network 192.168.1.0
(config-router)# passive-interface f0/1
(config-router)# end
Untuk verifikasi konfigurasi RIP:
# sh ip route    [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aditya.hananto.net/wp-content/uploads/2009/12/topologijaringan.jpg"><img class="alignnone size-full wp-image-104" title="Topologi Jaringan" src="http://aditya.hananto.net/wp-content/uploads/2009/12/topologijaringan.jpg" alt="" width="499" height="225" /></a></p>
<p><strong>Konfigurasi RIP di Router-JKT:</strong><br />
(config)# router rip<br />
(config-router)# version 2<br />
(config-router)# network 10.0.0.0<br />
(config-router)# network 172.16.0.0<br />
(config-router)# passive-interface f0/0    ==&gt; interface yg tidak mengirim routing update RIP<br />
(config-router)# end</p>
<p><strong>Konfigurasi RIP di Router-SBY:</strong><br />
(config)# router rip<br />
(config-router)# version 2<br />
(config-router)# network 10.0.0.0<br />
(config-router)# passive-interface f0/0<br />
(config-router)# end</p>
<p><strong>Konfigurasi RIP di Router-MDN:</strong><br />
(config)# router rip<br />
(config-router)# version 2<br />
(config-router)# network 172.16.0.0<br />
(config-router)# network 192.168.1.0<br />
(config-router)# passive-interface f0/1<br />
(config-router)# end</p>
<p><strong>Untuk verifikasi konfigurasi RIP:</strong><br />
# sh ip route        ==&gt; melihat routing table<br />
# sh ip protocol        ==&gt; melihat routing protocol di router kita</p>
<p># debug ip rip          ==&gt; melihat proses mengirim &amp; menerima routing update RIP<br />
# terminal monitor       ==&gt; utk melihat hasil debug (khusus bagi yg via telnet/SSH)<br />
# no debug all  ATAU #undebug all   ==&gt; mematikan proses debugging</p>
]]></content:encoded>
			<wfw:commentRss>http://aditya.hananto.net/2009/12/21/konfigurasi-routing-protocol-rip/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
