R1
config terminal router eigrp 1 network 172.16.13.0 network 172.16.164.0 network 192.168.5.0 end
R2
config terminal router eigrp 1 network 172.16.13.0 network 172.16.10.0 network 192.168.6.0 end
Testing
show ip eigrp neighbour show ip route
config terminal router eigrp 1 network 172.16.13.0 network 172.16.164.0 network 192.168.5.0 end
config terminal router eigrp 1 network 172.16.13.0 network 172.16.10.0 network 192.168.6.0 end
show ip eigrp neighbour show ip route
config terminal router rip version 2 network 172.16.1.0 network 172.16.2.0 end
config terminal router rip version 2 network 172.16.2.0 network 192.168.1.0 end
show ip route
config terminal interface gig0/0 ip address 172.16.1.1 255.255.255.0 no shutdown exit interface se0/0/0 ip address 172.16.2.1 255.255.255.252 clock rate 64000 no shutdown exit ip route 192.168.1.0 255.255.255.0 172.16.2.2
config terminal interface gig0/0 ip address 192.168.1.1 255.255.255.0 no shutdown exit interface se0/0/0 ip address 172.16.2.2 255.255.255.252 no shutdown exit ip route 192.168.1.0 255.255.255.0 172.16.2.1
<?php $myimage = imagecreate(600,500); $white = imagecolorallocate($myimage,255,255,255); $black = imagecolorallocate($myimage,0,0,0); $green = imagecolorallocate($myimage,0,255,0); $red = imagecolorallocate($myimage,255,0,0); $blue = imagecolorallocate($myimage,0,0,255); $ltgreen = imagecolorallocate($myimage,150,255,150); $ltred = imagecolorallocate($myimage,255,150,150); $ltblue = imagecolorallocate($myimage,150,150,255); imageline($myimage,10,10,10,390,$black); imageline($myimage,10,390,590,390,$black); imagefilledrectangle($myimage,20,50,100,389,$green); imagefilledrectangle($myimage,110,90,190,389,$red); imagefilledrectangle($myimage,200,70,280,389,$blue); imagefilledrectangle($myimage,290,250,370,389,$ltgreen); imagefilledrectangle($myimage,380,300,460,389,$ltred); imagefilledrectangle($myimage,470,85,550,389,$ltblue); header("Content-type: image/png"); imagePng($myimage); imageDestroy($myimage); ?>
<script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shCore.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCpp.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCSharp.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCss.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushDelphi.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushJava.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushJScript.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushPhp.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushPython.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushRuby.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushSql.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushVb.js" type="text/javascript"> </script> <script src="http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushXml.js" type="text/javascript"> </script>
<script language="javascript"> dp.SyntaxHighlighter.BloggerMode(); dp.SyntaxHighlighter.HighlightAll('code'); </script>
<pre name="code" class="cpp"> ...Your html-escaped code goes here... </pre>class="cpp" tersebut boleh diubah ngeikut jenis pengaturcaraan ynag digunakan seperti (Choices: cpp, c, c++, c#, c-sharp, csharp, css, delphi, pascal, java, js, jscript, javascript, php, py, python, rb, ruby, rails, ror, sql, vb, vb.net, xml, html, xhtml, xslt)(Senarai Penuh).
for (nilai_awal;nilai_kawalan;nilai_perubahan) { Proses looping }
for ( i=1; i<=10; i++) { cout<< i ; }
while(nilai_kawalan) { proses looping }
int i=1; while(i!=0) { cin >> i; }
do { proses looping; }while(nilai_kawalan);
do { cin >> i; }while(i!=0);