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

<channel>
	<title>Mustafa Tekin</title>
	<atom:link href="http://www.mustafa-tekin.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mustafa-tekin.com</link>
	<description></description>
	<lastBuildDate>Mon, 17 May 2010 12:51:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Cisco Router En Çok Kullanılan Komutlar</title>
		<link>http://www.mustafa-tekin.com/cisco-router-en-cok-kullanilan-komutlar/</link>
		<comments>http://www.mustafa-tekin.com/cisco-router-en-cok-kullanilan-komutlar/#comments</comments>
		<pubDate>Fri, 14 May 2010 07:52:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Cisco En Çok Kullanılan Komutlar]]></category>
		<category><![CDATA[Cisco Komutlar]]></category>
		<category><![CDATA[Cisco Router Basic Operations]]></category>
		<category><![CDATA[Cisco Router Configuration Commands]]></category>
		<category><![CDATA[Cisco Router Copy Commands]]></category>
		<category><![CDATA[Cisco Router Debug Commands]]></category>
		<category><![CDATA[Cisco Router Show Commands]]></category>

		<guid isPermaLink="false">http://www.mustafa-tekin.com/?p=96</guid>
		<description><![CDATA[Cisco Router Configuration Commands Requirement Cisco Command Set a console password to cisco Router(config)#line con 0 Router(config-line)#login Router(config-line)#password cisco Set a telnet password Router(config)#line vty 0 4 Router(config-line)#login Router(config-line)#password cisco Stop console timing out Router(config)#line con 0 Router(config-line)#exec-timeout 0 0 Set the enable password to cisco Router(config)#enable password cisco Set the enable secret password to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cisco Router Configuration Commands</strong></p>
<p><strong> </strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="431">
<tbody>
<tr>
<td width="227"><strong>Requirement</strong></td>
<td width="204"><strong>Cisco Command</strong></td>
</tr>
<tr>
<td width="227" valign="top">Set a   console password to cisco</td>
<td width="204" valign="top">Router(config)#<strong>line con 0</strong><br />
Router(config-line)#<strong>login</strong><br />
Router(config-line)#<strong>password cisco</strong></td>
</tr>
<tr>
<td width="227" valign="top">Set a   telnet password</td>
<td width="204" valign="top">Router(config)#<strong>line vty 0 4</strong><br />
Router(config-line)#<strong>login</strong><br />
Router(config-line)#<strong>password cisco</strong></td>
</tr>
<tr>
<td width="227" valign="top">Stop   console timing out</td>
<td width="204" valign="top">Router(config)#<strong>line con 0</strong><br />
Router(config-line)#<strong>exec-timeout 0 0</strong></td>
</tr>
<tr>
<td width="227" valign="top">Set the   enable password to cisco</td>
<td width="204" valign="top">Router(config)#<strong>enable password cisco</strong></td>
</tr>
<tr>
<td width="227" valign="top">Set the   enable secret password to peter.</p>
<p>This password overrides   the enable password<br />
and is encypted within the config file</td>
<td width="204" valign="top">Router(config)#<strong>enable secret peter</strong></td>
</tr>
<tr>
<td width="227" valign="top">Enable an   interface</td>
<td width="204" valign="top">Router(config-if)#<strong>no shutdown</strong></td>
</tr>
<tr>
<td width="227" valign="top">To   disable an interface</td>
<td width="204" valign="top">Router(config-if)#<strong>shutdown</strong></td>
</tr>
<tr>
<td width="227" valign="top">Set the   clock rate for a router with a DCE cable to 64K</td>
<td width="204" valign="top">Router(config-if)<strong>clock rate 64000</strong></td>
</tr>
<tr>
<td width="227" valign="top">Set a   logical bandwidth assignment of 64K to the serial interface</td>
<td width="204" valign="top">Router(config-if)<strong>bandwidth 64</strong><br />
<strong>Note that the zeroes are not missing</strong></td>
</tr>
<tr>
<td width="227" valign="top">To add an   IP address to a interface</td>
<td width="204" valign="top">Router(config-if)#<strong>ip addr 10.1.1.1 255.255.255.0</strong></td>
</tr>
<tr>
<td width="227" valign="top">To enable   RIP on all 172.16.x.y interfaces</td>
<td width="204" valign="top">Router(config)#<strong>router rip</strong><br />
Router(config-router)#<strong>network   172.16.0.0</strong></td>
</tr>
<tr>
<td width="227" valign="top">Disable   RIP</td>
<td width="204" valign="top">Router(config)#<strong>no router rip</strong></td>
</tr>
<tr>
<td width="227" valign="top">To enable   IRGP with a AS of 200, to all interfaces</td>
<td width="204" valign="top">Router(config)#<strong>router igrp 200</strong><br />
Router(config-router)#<strong>network   172.16.0.0</strong></td>
</tr>
<tr>
<td width="227" valign="top">Disable   IGRP</td>
<td width="204" valign="top">Router(config)#<strong>no router igrp 200</strong></td>
</tr>
<tr>
<td width="227" valign="top">Static   route the remote network is 172.16.1.0, with a mask of 255.255.255.0, the   next hop is 172.16.2.1, at a cost of 5 hops</td>
<td width="204" valign="top">Router(config)#<strong>ip route 172.16.1.0 255.255.255.0 172.16.2.1 5</strong></td>
</tr>
<tr>
<td width="227" valign="top">Disable   CDP for the whole router</td>
<td width="204" valign="top">Router(config)#<strong>no cdp run</strong></td>
</tr>
<tr>
<td width="227" valign="top">Enable   CDP for he whole router</td>
<td width="204" valign="top">Router(config)#<strong>cdp run</strong></td>
</tr>
<tr>
<td width="227" valign="top">Disable   CDP on an interface</td>
<td width="204" valign="top">Router(config-if)<strong>#no cdp enable</strong></td>
</tr>
</tbody>
</table>
<p><strong>Cisco Router Show Commands</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="431">
<tbody>
<tr>
<td width="227"><strong>Requirement</strong></td>
<td width="204"><strong>Cisco Command</strong></td>
</tr>
<tr>
<td width="227" valign="top">View version information</td>
<td width="204" valign="top">show   version</td>
</tr>
<tr>
<td width="227" valign="top">View current configuration (DRAM)</td>
<td width="204" valign="top">show   running-config</td>
</tr>
<tr>
<td width="227" valign="top">View startup configuration (NVRAM)</td>
<td width="204" valign="top">show   startup-config</td>
</tr>
<tr>
<td width="227" valign="top">Show IOS file and flash space</td>
<td width="204" valign="top">show   flash</td>
</tr>
<tr>
<td width="227" valign="top">Shows all logs that the router has in its memory</td>
<td width="204" valign="top">show log</td>
</tr>
<tr>
<td width="227" valign="top">View the interface status of interface e0</td>
<td width="204" valign="top">show   interface e0</td>
</tr>
<tr>
<td width="227" valign="top">Overview all interfaces on the router</td>
<td width="204" valign="top">show ip   interfaces brief</td>
</tr>
<tr>
<td width="227" valign="top">View type of serial cable on s0</td>
<td width="204" valign="top">show   controllers 0 (note the space between the &#8216;s&#8217; and the &#8217;0&#8242;)</td>
</tr>
<tr>
<td width="227" valign="top">Display a summary of connected cdp devices</td>
<td width="204" valign="top">show cdp   neighbor</td>
</tr>
<tr>
<td width="227" valign="top">Display detailed information on all devices</td>
<td width="204" valign="top">show cdp   entry *</td>
</tr>
<tr>
<td width="227" valign="top">Display current routing protocols</td>
<td width="204" valign="top">show ip   protocols</td>
</tr>
<tr>
<td width="227" valign="top">Display IP routing table</td>
<td width="204" valign="top">show ip   route</td>
</tr>
<tr>
<td width="227" valign="top">Display access lists, this includes the number of   displayed matches</td>
<td width="204" valign="top">show   access-lists</td>
</tr>
<tr>
<td width="227" valign="top">Check the router can see the ISDN switch</td>
<td width="204" valign="top">show isdn   status</td>
</tr>
<tr>
<td width="227" valign="top">Check a Frame Relay PVC connections</td>
<td width="204" valign="top">show   frame-relay pvc</td>
</tr>
<tr>
<td width="227" valign="top">show lmi traffic stats</td>
<td width="204" valign="top">show   frame-relay lmi</td>
</tr>
<tr>
<td width="227" valign="top">Display the frame inverse ARP table</td>
<td width="204" valign="top">show   frame-relay map</td>
</tr>
</tbody>
</table>
<p><strong>Cisco Router Basic Operations</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="431">
<tbody>
<tr>
<td width="227"><strong>Requirement</strong></td>
<td width="204"><strong>Cisco Command</strong></td>
</tr>
<tr>
<td width="227" valign="top">Enable</td>
<td width="204" valign="top">Enter   privileged mode</td>
</tr>
<tr>
<td width="227" valign="top">Return to   user mode from privileged</td>
<td width="204" valign="top">disable</td>
</tr>
<tr>
<td width="227" valign="top">Exit   Router</td>
<td width="204" valign="top">Logout or   exit or quit</td>
</tr>
<tr>
<td width="227" valign="top">Recall   last command</td>
<td width="204" valign="top">up arrow   or &lt;Ctrl-P&gt;</td>
</tr>
<tr>
<td width="227" valign="top">Recall   next command</td>
<td width="204" valign="top">down   arrow or &lt;Ctrl-N&gt;</td>
</tr>
<tr>
<td width="227" valign="top">Suspend   or abort</td>
<td width="204" valign="top">&lt;Shift&gt;   and  &lt;Ctrl&gt; and 6 then x</td>
</tr>
<tr>
<td width="227" valign="top">Refresh   screen output</td>
<td width="204" valign="top">&lt;Ctrl-R&gt;</td>
</tr>
<tr>
<td width="227" valign="top">Compleat   Command</td>
<td width="204" valign="top">TAB</td>
</tr>
</tbody>
</table>
<p><strong>Cisco Router Copy Commands</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="431">
<tbody>
<tr>
<td width="227"><strong>Requirement</strong></td>
<td width="204"><strong>Cisco Command</strong></td>
</tr>
<tr>
<td width="227" valign="top">Save the   current configuration from DRAM to NVRAM</td>
<td width="204" valign="top">copy   running-config startup-config</td>
</tr>
<tr>
<td width="227" valign="top">Merge   NVRAM configuration to DRAM</td>
<td width="204" valign="top">copy   startup-config running-config</td>
</tr>
<tr>
<td width="227" valign="top">Copy DRAM   configuration to a TFTP server</td>
<td width="204" valign="top">copy   runing-config tftp</td>
</tr>
<tr>
<td width="227" valign="top">Merge   TFTP configuration with current router configuration held in DRAM</td>
<td width="204" valign="top">copy tftp   runing-config</td>
</tr>
<tr>
<td width="227" valign="top">Backup   the IOS onto a TFTP server</td>
<td width="204" valign="top">copy   flash tftp</td>
</tr>
<tr>
<td width="227" valign="top">Upgrade   the router IOS from a TFTP server</td>
<td width="204" valign="top">copy tftp   flash</td>
</tr>
</tbody>
</table>
<p><strong>Cisco Router Debug Commands</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="431">
<tbody>
<tr>
<td width="227"><strong>Requirement</strong></td>
<td width="204"><strong>Cisco Command</strong></td>
</tr>
<tr>
<td width="227" valign="top">Enable   debug for RIP</td>
<td width="204" valign="top">debug ip   rip</td>
</tr>
<tr>
<td width="227" valign="top">Enable   summary IGRP debug information</td>
<td width="204" valign="top">debug ip   igrp events</td>
</tr>
<tr>
<td width="227" valign="top">Enable   detailed IGRP debug information</td>
<td width="204" valign="top">debug ip   igrp transactions</td>
</tr>
<tr>
<td width="227" valign="top">Debug IPX   RIP</td>
<td width="204" valign="top">debug ipx   routing activity</td>
</tr>
<tr>
<td width="227" valign="top">Debug IPX   SAP</td>
<td width="204" valign="top">debug IPX   SAP</td>
</tr>
<tr>
<td width="227" valign="top">Enable   debug for CHAP or PAP</td>
<td width="204" valign="top">debug ppp   authentication</td>
</tr>
<tr>
<td width="227" valign="top">Switch   all debugging off</td>
<td width="204" valign="top">no debug   all<br />
undebug all</td>
</tr>
</tbody>
</table>
<p><strong> <strong>&#8211;Alıntıdır&#8211;</strong></strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mustafa-tekin.com/cisco-router-en-cok-kullanilan-komutlar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cisco Başlangıç Video Anlatım</title>
		<link>http://www.mustafa-tekin.com/cisco-turkce-video-anlatim-1/</link>
		<comments>http://www.mustafa-tekin.com/cisco-turkce-video-anlatim-1/#comments</comments>
		<pubDate>Tue, 11 May 2010 22:16:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Cisco Türkçe Video Anlatım]]></category>
		<category><![CDATA[Cisco Video Anlatım]]></category>
		<category><![CDATA[Türkçe Cisco Video Anlatım]]></category>

		<guid isPermaLink="false">http://www.mustafa-tekin.com/?p=47</guid>
		<description><![CDATA[Merhaba arkadaşlar bu yazımda Cisco Router&#8217;ler için başlangıç da bilinmesi gereken komutlar üzerinde duracağım. Cisco Router&#8217;lar üzerinde alıştırma yapabilmek için Packet Tracer aracını kurmamız gerekiyor. Bu program ile sanal router-switch-pc&#8230; ler ile istediğimiz network diagramını kurabilir ve alıştırmalarımızı yapabiliriz.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Merhaba arkadaşlar bu yazımda Cisco Router&#8217;ler için başlangıç da bilinmesi gereken komutlar üzerinde duracağım.</p>
<p>Cisco Router&#8217;lar üzerinde alıştırma yapabilmek için <strong>Packet Tracer</strong> aracını kurmamız gerekiyor. Bu program ile sanal router-switch-pc&#8230; ler ile istediğimiz network diagramını kurabilir ve alıştırmalarımızı yapabiliriz.</p>
<p><img src="http://www.mustafa-tekin.com/wp-content/plugins/flash-video-player/default_video_player.gif" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mustafa-tekin.com/cisco-turkce-video-anlatim-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Kasım</title>
		<link>http://www.mustafa-tekin.com/10-kasim/</link>
		<comments>http://www.mustafa-tekin.com/10-kasim/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 21:50:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kategorize Edilmemiş]]></category>
		<category><![CDATA[10 Kasım]]></category>
		<category><![CDATA[Atam]]></category>
		<category><![CDATA[Atarürk]]></category>
		<category><![CDATA[Mustafa Kemal Atatürk]]></category>

		<guid isPermaLink="false">http://sistemnetwork.wordpress.com/?p=28</guid>
		<description><![CDATA[10 Kasım Mustafa Kemal Atatürk Ölüm günü.]]></description>
			<content:encoded><![CDATA[<div id="attachment_30" class="wp-caption aligncenter" style="width: 396px"><img class="size-full wp-image-30" title="Atatürk" src="http://www.mustafa-tekin.com/wp-content/uploads/2009/11/atam1.jpg" alt="Atatürk" width="386" height="451" /><p class="wp-caption-text">Atatürk</p></div>
<p><strong><em>Benim naçiz vücudum elbet bir gün toprak olacaktır. Fakat, Türkiye Cumhuriyeti ilelebet payidar kalacaktır.</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mustafa-tekin.com/10-kasim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ağ (Network) Nedir?</title>
		<link>http://www.mustafa-tekin.com/ag-network-nedir/</link>
		<comments>http://www.mustafa-tekin.com/ag-network-nedir/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 21:00:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Ağ]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[LAN]]></category>
		<category><![CDATA[MAN]]></category>
		<category><![CDATA[Router]]></category>
		<category><![CDATA[Switch]]></category>
		<category><![CDATA[WAN]]></category>

		<guid isPermaLink="false">http://sistemnetwork.wordpress.com/?p=20</guid>
		<description><![CDATA[Cisco Başlangıç]]></description>
			<content:encoded><![CDATA[<p>Ağ, birden fazla bilgisayarın çeşitli sebeplerden dolayı iletişim içinde oldukları yapıdır. Böylece bilgi paylaşılır ve merkezi bir yapı oluşturulmuş olur. Yönetilmesi daha kolay olur.</p>
<div id="attachment_21" class="wp-caption aligncenter" style="width: 413px"><img class="size-full wp-image-21" title="Ağ" src="http://www.mustafa-tekin.com/wp-content/uploads/2009/11/network.gif" alt="Ağ" width="403" height="307" /><p class="wp-caption-text">Ağ</p></div>
<p>Ağ tabanını oluşturan cihazlar içinde Router ve Switch genellikle en çok kullanılan cihazlardır.</p>
<p>2 tip ağ yapısı bulunmaktadır. Birisi Peer-To-Peer diğeri ise Client-Server.</p>
<p>Peer-To-Peer yapısı, bütün bilgisayarlar eşit haklara sahiptir ve ana bilgisayar yoktur. Bilgisayarlar kendi aralarında sanki Client-Server gibi hareket ederler.</p>
<p>Client-Server yapısı ise, bir ana bilgisayar bulunmaktadır ve diğer bütün bilgisayarlar bunun dahilinde çalışmaktadır.</p>
<p>Ağ topolojisi LAN, MAN ve WAN olmak üzere üçe ayrılır.</p>
<p><strong>LAN:</strong> Local Area Network, yerel alan ağı anlamındadır. Belirli alan içerisinde oluşturulan ağlardır. Kısıtlı bir coğrafi konum içerisinde olur. Ofis, ev, okul sınırları içerisinde oluşturulan bir ağ örnek olur.</p>
<div id="attachment_22" class="wp-caption aligncenter" style="width: 406px"><img class="size-full wp-image-22" title="Örnek Bir Lan Yapısı" src="http://www.mustafa-tekin.com/wp-content/uploads/2009/11/lan.jpg" alt="Örnek Bir Lan Yapısı" width="396" height="290" /><p class="wp-caption-text">Örnek Bir Lan Yapısı</p></div>
<p><strong>MAN:</strong> Metropolitan Area Network , şehir alan ağı anlamındaır. Örnek olarak bir firmanın bir şehir içinde bulunan birkaç ofisinin ortak bir yapı içinde olmasını verebiliriz.</p>
<div id="attachment_23" class="wp-caption aligncenter" style="width: 406px"><img class="size-full wp-image-23" title="örnek bir MAN yapısı" src="http://www.mustafa-tekin.com/wp-content/uploads/2009/11/man.png" alt="örnek bir MAN yapısı" width="396" height="386" /><p class="wp-caption-text">örnek bir MAN yapısı</p></div>
<p><strong>WAN:</strong> Wide Area Network, Geniş Alan Ağları anlamındadır. Geniş alan ağları büyük coğrafyaları kapsar. Buna örnek olarak kısaca İnterneti verebiliriz. Şehirler arası, Ülkeler arası Ağ paylaşımı buna örnektir.</p>
<div id="attachment_24" class="wp-caption aligncenter" style="width: 376px"><img class="size-full wp-image-24" title="Örnek Bir Wan Yapısı" src="http://www.mustafa-tekin.com/wp-content/uploads/2009/11/wan.gif" alt="Örnek Bir Wan Yapısı" width="366" height="271" /><p class="wp-caption-text">Örnek Bir Wan Yapısı</p></div>
<p><strong>Router</strong> 3. katman bir cihazdır, IP ve MAC üzerinden iletişim kurabilir. Bu cihaz bize bir yerden bir yere gidebilmek için yolu gösterir.</p>
<p><strong>Switch</strong> ise 2. katman bir cihazdır, sadece MAC üzerinden iletişim kurabilir. Fakat Switch&#8217;lerin gelişmişleri bulunmaktadır. Bunlar ise <strong>Multilayer Switch</strong> olarak bilinir. Bunlar ise IP ve MAC üzerinde iletişim kurabilir.</p>
<p>IP adresleme en önemli şeydir. Bir yerden bir yere iletişime geçebilmek için Router ile yol belirlenir ve oradan iletişim kurulur.</p>
<p><strong>IP adresleme de 4 kriter vardır.</strong></p>
<p><strong>1- IP adresi:</strong> Cihazımızın yerel ağda iletişime geçebilmesi için gerekli olan IP adresi.</p>
<p><strong>2- Alt Ağ Maskesi:</strong> IP adresi ile hangi network içinde olacağını belirlemek için gerekli olan maskelemedir. Biz bununla cihazımızın hangi network grubu içerisinde olduğunu belirleriz. Burda iki şey vardır. Subnetting yani daraltma, Supernetting yani genişletme. Subnetting ile ağ daralması sağlanır yani cihazımızın ulaşabiliceği alan kısıtlanır. Supernetting ile genişlemesi sağlanır yani cihazımızın ulaşabiliceği alan genişletirilir.</p>
<p><strong>3- Varsayılan Ağ Geçidi:</strong> Cihazımızın diğer networklere ulaşabilmesi için gerekli olan cihazdır. Buna kısaca taşıyıcı diyebiliriz.</p>
<p><strong>4- DNS:</strong> Domain Name System, yani Alan Adı Sistemidir. IP adreslerini isim olarak saklar. Biz aslında web browser dan bir alan adı girdiğimizde arkada dönen olay önce gidilir site hangi alan adına sahipse (com, net, org&#8230;) oraya sorulur sonra oradan bir IP adresi döner ve browser bunu açmış olur.</p>
<p>Biz bu 4 şeyi kullanarak interneti kullanırız.</p>
<p>Şimdilik yazımı burada sonlandıracağım ve bir sonrakinde Cisco cihazlar için yapılandırmayı anlatmaya başlayacağım.</p>
<p>Umarım faydalı bir kaynak olmuştur. Teşekkürler&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mustafa-tekin.com/ag-network-nedir/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Merhaba</title>
		<link>http://www.mustafa-tekin.com/mustafa-tekin/</link>
		<comments>http://www.mustafa-tekin.com/mustafa-tekin/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 21:04:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kategorize Edilmemiş]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Mustafa Tekin]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Sistem]]></category>

		<guid isPermaLink="false">http://www.mustafa-tekin.com/?p=5</guid>
		<description><![CDATA[Merhaba, Bu Web sayfasında sizlere elimden geldiğince Sistem ve Network olmak üzere bilgilerimi aktaracağım. Görüşmek üzere&#8230;]]></description>
			<content:encoded><![CDATA[<p>Merhaba,</p>
<p>Bu Web sayfasında sizlere elimden geldiğince Sistem ve Network olmak üzere bilgilerimi aktaracağım.</p>
<p>Görüşmek üzere&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mustafa-tekin.com/mustafa-tekin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
