<?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>ItsyourIP.com</title>
	<atom:link href="https://www.itsyourip.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.itsyourip.com</link>
	<description>Your gateway to Internet</description>
	<lastBuildDate>Tue, 08 Mar 2016 18:04:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>MySQL: how to delete all records from a table</title>
		<link>https://www.itsyourip.com/database/mysql-how-to-delete-all-records-from-a-table/</link>
					<comments>https://www.itsyourip.com/database/mysql-how-to-delete-all-records-from-a-table/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 08 Mar 2016 18:01:43 +0000</pubDate>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[records]]></category>
		<category><![CDATA[truncate]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/?p=275</guid>

					<description><![CDATA[There can be many reasons to delete all records in a MySQL Database table and there are two ways you can acheive this using the &#8220;truncate&#8221; command or by using the &#8220;delete&#8221; command. While the ultimate net result is the same, there are differences you should know. Key differences are 1. &#8220;truncate&#8221; uses DDL and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>There can be many reasons to delete all records in a MySQL Database table and there are two ways you can acheive this using the &#8220;truncate&#8221; command or by using the &#8220;delete&#8221; command. While the ultimate net result is the same, there are differences you should know.</p>
<p><span id="more-275"></span></p>
<p>Key differences are</p>
<p>1. &#8220;truncate&#8221; uses DDL and is fast while &#8220;delete&#8221; doesn&#8217;t and hence slower (depending on the number of records).<br />
2. &#8220;truncate&#8221; resets the auto increment counter while &#8220;delete&#8221; doesn&#8217;t.</p>
<p>Let&#8217;s use this test table with just 2 columns uID and username. uID is set to auto_increment.</p>
<pre>mysql&gt; SELECT * FROM users;
+-----+----------+
| uID | username |
+-----+----------+
|   1 | Joe      |
|   2 | Foo      |
|   3 | Alan     |
|   4 | Martin   |
+-----+----------+
4 rows in set (0.00 sec)
</pre>
<p><strong><span style="color: #ff0000;">WARNING: Make sure you know what you are doing. You are doing this at your risk!!!</span></strong></p>
<p><u><strong>1. Delete all records in a database table using &#8220;truncate&#8221;</strong></u></p>
<pre>mysql&gt; TRUNCATE users;
Query OK, 0 rows affected (0.00 sec)

mysql&gt; SELECT * FROM users;
Empty set (0.00 sec)
</pre>
<p>Now, lets insert records and see where the uID value starts</p>
<pre>mysql&gt; INSERT INTO users (username) VALUES ('Joe'),('Foo'),('Alan'),('Martin');
Query OK, 4 rows affected (0.00 sec)
Records: 4 Duplicates: 0 Warnings: 0

mysql&gt; SELECT * FROM users;
+-----+----------+
| uID | username |
+-----+----------+
|   1 | Joe      |
|   2 | Foo      |
|   3 | Alan     |
|   4 | Martin   |
+-----+----------+
4 rows in set (0.00 sec)
</pre>
<p>You can see the uID starts from &#8220;1&#8221; again.</p>
<p><u><strong>2. Delete all records in a database table using &#8220;delete&#8221;</strong></u></p>
<pre>mysql&gt; DELETE FROM users;
Query OK, 4 rows affected (0.00 sec)

mysql&gt; SELECT * FROM users;
Empty set (0.00 sec)
</pre>
<p>Now, lets insert records and see where the uID value starts</p>
<pre>mysql&gt; INSERT INTO users (username) VALUES ('Joe'),('Foo'),('Alan'),('Martin');
Query OK, 4 rows affected (0.00 sec)
Records: 4 Duplicates: 0 Warnings: 0

mysql&gt; SELECT * FROM users;
+-----+----------+
| uID | username |
+-----+----------+
|   5 | Joe      |
|   6 | Foo      |
|   7 | Alan     |
|   8 | Martin   |
+-----+----------+
4 rows in set (0.00 sec)
</pre>
<p>There you can see the uID column is auto_increment is not reset and continues from the next value of &#8220;5&#8221;.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/database/mysql-how-to-delete-all-records-from-a-table/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Python: Remove last &#8216;n&#8217; characters of a string</title>
		<link>https://www.itsyourip.com/scripting/python/python-remove-last-n-characters-of-a-string/</link>
					<comments>https://www.itsyourip.com/scripting/python/python-remove-last-n-characters-of-a-string/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 26 Jan 2016 05:45:04 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Python tips]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[variable]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/?p=268</guid>

					<description><![CDATA[To remove the last &#8216;n&#8217; characters of a string 'string'[:-n] or stringVariable[:-n] For example, to remove the last character (n=1) [sai@c7test ~]$ python Python 2.7.5 (default, Nov 20 2015, 02:00:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2 Type "help", "copyright", "credits" or "license" for more information. &#62;&#62;&#62; 'python'[:-1] 'pytho' &#62;&#62;&#62; &#62;&#62;&#62; tmpVar = 'Python' [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>To remove the last &#8216;n&#8217; characters of a string</p>
<pre>'string'[:-n]</pre>
<p>or</p>
<pre>stringVariable[:-n]</pre>
<p><span id="more-268"></span></p>
<p>For example, to remove the last character (n=1)</p>
<pre>[sai@c7test ~]$ python
Python 2.7.5 (default, Nov 20 2015, 02:00:19)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
&gt;&gt;&gt; 'python'[:-1]
'pytho'
&gt;&gt;&gt;
&gt;&gt;&gt; tmpVar = 'Python'
&gt;&gt;&gt; tmpVar[:-1]
'Pytho'
&gt;&gt;&gt;</pre>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/scripting/python/python-remove-last-n-characters-of-a-string/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to block select in  PuTTY</title>
		<link>https://www.itsyourip.com/tools/how-to-block-select-in-putty/</link>
					<comments>https://www.itsyourip.com/tools/how-to-block-select-in-putty/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 25 Jan 2016 20:04:59 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[BlockSelect]]></category>
		<category><![CDATA[Clipboard]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[Putty]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/?p=264</guid>

					<description><![CDATA[In PuTTY, left-click and drag normally selects and copies the entire line content. However, you can change this behaviour to block select like in a MS DOS window. To make a block select in PuTTY, click and hold &#8220;ALT&#8221; and then left-click and drag on your mouse. This will make block selection. If you want [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In PuTTY, left-click and drag normally selects and copies the entire line content. However, you can change this behaviour to block select like in a MS DOS window.</p>
<p><span id="more-264"></span></p>
<p>To make a block select in PuTTY, click and hold &#8220;ALT&#8221; and then left-click and drag on your mouse. This will make block selection.</p>
<p><a href="http://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect1.png" rel="attachment wp-att-265"><img fetchpriority="high" decoding="async" class="alignnone size-medium wp-image-265" src="http://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect1-300x190.png" alt="putty_blockselect1" width="300" height="190" srcset="https://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect1-300x190.png 300w, https://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect1-420x266.png 420w, https://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect1.png 661w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>If you want to make this the default behaviour,</p>
<ol>
<ol>
<ol>
<li>Load a saved session or load &#8220;Default Settings&#8221;.</li>
<li>In the left pane, click Window &#8211; Selection.</li>
<li>In the right pane, select &#8220;Rectangular Block&#8221; under Default Selection mode.</li>
<li>Click Sessions and save the loaded session.</li>
<li>Repeat the above for every saved session.</li>
</ol>
</ol>
</ol>
<p><a href="http://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect2.png" rel="attachment wp-att-266"><img decoding="async" class="alignnone size-medium wp-image-266" src="http://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect2-300x290.png" alt="putty_blockselect2" width="300" height="290" srcset="https://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect2-300x290.png 300w, https://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect2-420x406.png 420w, https://www.itsyourip.com/wp-content/uploads/2016/01/putty_blockselect2.png 452w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/tools/how-to-block-select-in-putty/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to enable/disable Right-click paste in PuTTY</title>
		<link>https://www.itsyourip.com/networking/how-to-enabledisable-right-click-paste-in-putty/</link>
					<comments>https://www.itsyourip.com/networking/how-to-enabledisable-right-click-paste-in-putty/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 25 Jan 2016 19:28:51 +0000</pubDate>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Clipboard]]></category>
		<category><![CDATA[Putty]]></category>
		<category><![CDATA[session]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/?p=245</guid>

					<description><![CDATA[In PuTTY, right-click on the mouse is configured to automatically pastes the contents from the clip-board. While this is a great convenience, it is equally dangerous when you are logged onto live production systems. Have you pasted &#8220;reboot&#8221; and pressed enter without realizing what you&#8217;ve done?? The following procedure will help you change this default [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In PuTTY, right-click on the mouse is configured to automatically pastes the contents from the clip-board. While this is a great convenience, it is equally dangerous when you are logged onto live production systems. Have you pasted &#8220;reboot&#8221; and pressed enter without realizing what you&#8217;ve done??</p>
<p><span id="more-245"></span></p>
<p>The following procedure will help you change this default behaviour to prompt to paste than pasting automatically when you right-click.</p>
<p>1. Open PuTTY, in the left-pane, click Selection under Window.<br />
2. In the right-pane select the radio button for &#8220;Windows (Middle extends, Right brings up menu)&#8221;.<br />
3. Click Session in the left pane, select &#8220;Default Settings&#8221; and click Save.</p>
<p><a href="http://www.itsyourip.com/wp-content/uploads/2016/01/putty.png" rel="attachment wp-att-260"><img decoding="async" class="alignnone size-medium wp-image-260" src="http://www.itsyourip.com/wp-content/uploads/2016/01/putty-300x290.png" alt="PuTTY Disable Right-click paste" width="300" height="290" srcset="https://www.itsyourip.com/wp-content/uploads/2016/01/putty-300x290.png 300w, https://www.itsyourip.com/wp-content/uploads/2016/01/putty-420x406.png 420w, https://www.itsyourip.com/wp-content/uploads/2016/01/putty.png 452w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>Now, for every saved session, select and load and follow the above (in step3, instead of default session, choose your saved session).</p>
<p>If you want to enable it back, follow the procedure and in step 3, choose radio button for &#8220;Compromise (Middle Extends, Right Pastes)&#8221;.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/networking/how-to-enabledisable-right-click-paste-in-putty/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to change the HOST key in Oracle Virtualbox Manager</title>
		<link>https://www.itsyourip.com/virtualisation/virtualbox/how-to-change-the-host-key-in-oracle-virtualbox-manager/</link>
					<comments>https://www.itsyourip.com/virtualisation/virtualbox/how-to-change-the-host-key-in-oracle-virtualbox-manager/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 24 Jan 2016 20:04:26 +0000</pubDate>
				<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[VMWare]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/?p=251</guid>

					<description><![CDATA[Oracle Virtualbox by default has Right CTRL key assigned as the HOST key. HOST key is a special key on your keyboard which Virtualbox reservers to return ownership of keyboard and mouse to your host operating system. This however can be changed to the one you prefer. Say for instance, if you want to change [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Oracle Virtualbox by default has Right CTRL key assigned as the HOST key. HOST key is a special key on your keyboard which Virtualbox reservers to return ownership of keyboard and mouse to your host operating system. This however can be changed to the one you prefer. Say for instance, if you want to change it to Left ALT (same as VMWare).</p>
<p><span id="more-251"></span>To change the HOST Key,</p>
<ol>
<li>Launch Oracle Virtual\box Manager.</li>
<li>Click File &#8211; Preferences.</li>
<li>Click Input in the left pane and click &#8220;Virtual Machine&#8221; tab on the right.</li>
<li>Click on the Shortcut field for &#8220;Host Key Combination&#8221; and click the erase icon that gets highlighted.</li>
<li>Now click the Shortcut field again click the key you want to assign (say &#8220;ALT&#8221;) and click OK.</li>
</ol>
<p><a href="http://www.itsyourip.com/wp-content/uploads/2016/01/virtualbox.png" rel="attachment wp-att-255"><img loading="lazy" decoding="async" class="alignnone wp-image-255 size-medium" src="http://www.itsyourip.com/wp-content/uploads/2016/01/virtualbox-300x214.png" alt="virtualbox keyboard setting" width="300" height="214" srcset="https://www.itsyourip.com/wp-content/uploads/2016/01/virtualbox-300x214.png 300w, https://www.itsyourip.com/wp-content/uploads/2016/01/virtualbox-768x547.png 768w, https://www.itsyourip.com/wp-content/uploads/2016/01/virtualbox-420x299.png 420w, https://www.itsyourip.com/wp-content/uploads/2016/01/virtualbox.png 771w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/virtualisation/virtualbox/how-to-change-the-host-key-in-oracle-virtualbox-manager/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>FileZilla FTP Client configuration through BlueCoat proxy</title>
		<link>https://www.itsyourip.com/networking/filezilla-ftp-client-configuration-through-bluecoat-proxy/</link>
					<comments>https://www.itsyourip.com/networking/filezilla-ftp-client-configuration-through-bluecoat-proxy/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 01 Oct 2008 16:32:01 +0000</pubDate>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[bluecoat]]></category>
		<category><![CDATA[FileZilla]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftp-proxy]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/networking/filezilla-ftp-client-configuration-through-bluecoat-proxy/</guid>

					<description><![CDATA[If you are attached to a corporate or an enterprise network and connect to internet from behind a BlueCoat proxy which proxies FTP connections then FileZilla FTP client needs needs to be configured accordingly to get it work properly. There is an FTP proxy configuration and a Generic Proxy configuration that can be set in [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><!--adsense#content_336_280-->If you are attached to a corporate or an enterprise network and connect to internet from behind a BlueCoat proxy which proxies FTP connections then FileZilla FTP client needs needs to be configured accordingly to get it work properly. There is an FTP proxy configuration and a Generic Proxy configuration that can be set in FileZilla client.</p>
<p><span id="more-204"></span> Using a Generic Proxy forces it to use Passive Mode connections.However, if you need to use Active mode FTP connections then FTP Proxy should be configured.</p>
<p>Click <strong>Edit &#8211; Settings</strong> from menu to open the <em><strong>FileZilla client settings</strong></em>. Expand <strong>FTP</strong> in the leftpane and click &#8220;<strong>FTP Proxy</strong>&#8220;.In the rightpane, select &#8220;<strong>custom</strong>&#8221; under &#8220;<strong>Type of FTP Proxy</strong>&#8221; and enter the following format specifications:</p>
<pre>USER %u@%h
PASS %P
ACCT %w</pre>
<p><img decoding="async" src="http://www.itsyourip.com/wp-content/uploads/2008/10/bc1.PNG" alt="FTP Proxy config in FileZilla" border="0" /><br />
Once done, enter the <strong>IP Address/Hostname</strong> and of the Proxy host (if it is not listening on the standard TCP/21 then provide the prot number along with the IP address or hostname, ex: <strong>proxy:8085</strong>) then the user (<strong>username@domainname</strong> where domainname is name of the Windows Domain, if it uses <strong>WSSO or Intergrated Windows Authentication</strong>) and the password (domain password if using windows domain name as above)</p>
<p>This should set the configs appropriately. To check if the connection works OK, try connecting to the external FTP server and you should be able to first connect to the BlueCoat proxy where it first issues a Welcome message as in the following screenshot before it connects you to the remote FTP server.</p>
<p><img decoding="async" src="http://www.itsyourip.com/wp-content/uploads/2008/10/bc2.PNG" alt="Successful connection" border="0" /></p>
<p>This should help!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/networking/filezilla-ftp-client-configuration-through-bluecoat-proxy/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Unable to delete Stale/Obsolete statc routes in Cisco IOS</title>
		<link>https://www.itsyourip.com/cisco/unable-to-delete-staleobsolete-statc-routes-in-cisco-ios/</link>
					<comments>https://www.itsyourip.com/cisco/unable-to-delete-staleobsolete-statc-routes-in-cisco-ios/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 03 Jul 2008 17:16:35 +0000</pubDate>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Catalyst-3750]]></category>
		<category><![CDATA[cisco-switch]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[IP-Routing]]></category>
		<category><![CDATA[routing-table]]></category>
		<category><![CDATA[static-route]]></category>
		<category><![CDATA[wan]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/unable-to-delete-staleobsolete-statc-routes-in-cisco-ios/</guid>

					<description><![CDATA[Today, I had to troubleshoot a very peculiar problem on my Cisco Catalyst 3750 switches in two different sites. To cut a long story short, both the sites originally had IPSec VPNs over ADSL internet andtherefore static routes added to pass through their VPN firewalls. However, with a recent WAN migration with leased lines, all [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><!--adsense#content_336_280-->Today, I had to troubleshoot a very peculiar problem on my Cisco Catalyst 3750 switches in two different sites. To cut a long story short, both the sites originally had IPSec VPNs over ADSL internet andtherefore static routes added to pass through their VPN firewalls. However, with a recent WAN migration with leased lines, all traffic moved to the WAN routers.</p>
<p>However, the Static Routes became stale (obsolete) and we were unable to delete the static routes. The routes are not in the running config (no &#8220;ip route command in config&#8221;) and a reboot wouldn&#8217;t help.</p>
<p><span id="more-203"></span></p>
<p>When you do</p>
<pre><strong>ciscoswitch# show ip route
</strong>Default gateway is 10.10.10.1

Host Gateway Last Use Total Uses Interface
192.168.1.1 10.10.10.4 0:00 460318 Vlan1
192.168.1.2 10.10.10.4 0:00 25586 Vlan1
192.168.1.3 10.10.10.4 0:00 25570 Vlan1</pre>
<p>The static routes cannot be deleted using</p>
<pre><strong>ciscoswitch(config)# no ip route 192.168.1.1 255.255.255.255 10.10.10.4</strong></pre>
<p>or</p>
<pre><strong>ciscoswitch# clear ip route *</strong></pre>
<p>or</p>
<pre><strong>ciscoswitch# clear ip cache *</strong></pre>
<p><strong>How to resolve?</strong></p>
<p>Finally, the resolution was to disable and enable the &#8220;ip routing&#8221; service.</p>
<p><strong><u>Disable IP Routing</u></strong></p>
<pre><strong>ciscoswitch(config)#no ip routing</strong></pre>
<p><strong><u>Enable IP Routing</u></strong></p>
<pre><strong>ciscoswitch(config)#ip routing</strong></pre>
<p>This fixed the problem and we are back in business. The stale routing table entries are gone.</p>
<p>I&#8217;m sure someone out there is looking for this and might help!!!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/cisco/unable-to-delete-staleobsolete-statc-routes-in-cisco-ios/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>How to create VLAN Interfaces for InterVLAN Routing in Cisco IOS</title>
		<link>https://www.itsyourip.com/cisco/how-to-create-vlan-interfaces-for-intervlan-routing-in-cisco-ios/</link>
					<comments>https://www.itsyourip.com/cisco/how-to-create-vlan-interfaces-for-intervlan-routing-in-cisco-ios/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 01 Jul 2008 19:36:50 +0000</pubDate>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[cisco-switch]]></category>
		<category><![CDATA[InterVLAn-Routing]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[vlan]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/how-to-create-vlan-interfaces-for-intervlan-routing-in-cisco-ios/</guid>

					<description><![CDATA[VLAN Interfaces are required in network scenarios where you have different VLANs and need Inter-VLAN switching on Layer3 (Routing capable) switches. Every VLAN that needs to be routed should have a VLAN interface. Let&#8217;s say we have VLAN 10 which hosts the subnet 192.168.10.0 subnet, VLAN hosts 192.168.20.0 subnet and VLAN 30 hosts 192.168.30.0 subnet. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><!--adsense#content_336_280-->VLAN Interfaces are required in network scenarios where you have different VLANs and need Inter-VLAN switching on Layer3 (Routing capable) switches. Every VLAN that needs to be routed should have a VLAN interface.</p>
<p>Let&#8217;s say we have VLAN 10 which hosts the subnet 192.168.10.0 subnet, VLAN hosts 192.168.20.0 subnet and VLAN 30 hosts 192.168.30.0 subnet. For Inter-VLAN routing to work, we need to have a VLAN interface setup for each of these VLANs and configured with an IP address from the same subnet which will be the default Gateway for that subnet. Lets say, 192.168.10.254,192.168.20.254.192.168.30.254 are the IP addresses for VLAN Interfaces of VLAn 10,20,30 respectively.</p>
<p><span id="more-202"></span></p>
<p>Assuming the VLANs are configured already, let&#8217;s proceed to get the VLAN interfaces created.</p>
<p><strong><u>Enable Routing on the Switch</u></strong></p>
<pre><strong>ciscoswitch# conf t</strong>
<strong>ciscoswitch(config)# ip routing</strong></pre>
<p><strong><u>Add VLAN Interface</u></strong></p>
<pre><strong>ciscoswitch(config)# interface vlan10</strong>
<strong>ciscoswitch(config-if)# no shut</strong>
<strong>ciscoswitch(config-if)# ip address 192.168.10.0 255.255.255.0</strong></pre>
<p>This configures a VLAN interface for VLAN 10.</p>
<p><strong><u>Default Route on Switch</u></strong></p>
<p>Add a default route on the Switch. This will forward all traffic from the different VLANs to the default router.</p>
<pre><strong>ciscoswitch(config)#ip route 0.0.0.0 0.0.0.0 192.168.100.1</strong></pre>
<p><strong><u>Interface to the Router</u></strong></p>
<p>If the switch cannot reach the default router through a VLAN then an interface that connects to the router which does these routing needs to configured as a routed interface and assigned with an IP address that is in the same subnet as that of the Default router.</p>
<pre><strong>ciscoswitch(config)# interface gi0/1</strong>
<strong>ciscoswitch(config-if)# no shut</strong>
<strong>ciscoswitch(config-if)# no switchport</strong>
<strong>ciscoswitch(config-if)# ip address 192.168.100.2 255.255.255.0</strong></pre>
<p>This makes the interface as a routed interface and assigns an IP address in the same subnet as the default router.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/cisco/how-to-create-vlan-interfaces-for-intervlan-routing-in-cisco-ios/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>High CPU usage when SNMP is enabled in Cisco Routers</title>
		<link>https://www.itsyourip.com/cisco/high-cpu-usage-when-snmp-is-enabled-in-cisco-routers/</link>
					<comments>https://www.itsyourip.com/cisco/high-cpu-usage-when-snmp-is-enabled-in-cisco-routers/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 19 Jun 2008 16:59:41 +0000</pubDate>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[High]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[snmp]]></category>
		<category><![CDATA[switch]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/high-cpu-usage-when-snmp-is-enabled-in-cisco-routers/</guid>

					<description><![CDATA[Cisco Routers and Switches with L3 routing functions are seen to have problems with High CPU usage when SNMP is enabled. This can range anything from 15% to 40%. According to Cisco, these are low priority processes and other priority processes requiring CPU cycles are given priority over these processes and this level of CPU [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><!--adsense#content_336_280--> </p>
<p>Cisco Routers and Switches with L3 routing functions are seen to have problems with High CPU usage when SNMP is enabled. This can range anything from 15% to 40%. According to Cisco, these are low priority processes and other priority processes requiring CPU cycles are given priority over these processes and this level of CPU utilisation can be is normal. However, it is always better to be safe than sorry and get the CPU utilisation caused by SNMP to bare minimum so as to ensure the Routers function smoothly.</p>
<p>The reason behind the High CPU usage can be caused by the Network Management Server (SNMP Server) like HP Openview querying for the Routing Tables and ARP tables to learn about other networks&nbsp; or querying for certain MIBs which can be resource intensive.</p>
<p><span id="more-201"></span></p>
<p>We can use the SNMP View configurations to include/exclude SNMP MIBs in Cisco IOS. So modify your SNMP configuration as follows:</p>
<p><strong><u>Include the SNMP Root (ISO)</u></strong></p>
<blockquote>
<p><strong>ciscorouter(config)# snmp-server view cutdown iso included</strong></p>
</blockquote>
<p><strong><u>Exlcude queries for Routing Table &amp; ARP Table</u></strong></p>
<p>We exclude the ipRouteTable &amp; ipNetToMediaTable MIBs to avoid polliong for Routing tables and ARP tables.</p>
<blockquote>
<p><strong>ciscorouter(config)# snmp-server view cutdown 1.3.6.1.2.1.4.21 excluded<br /> ciscorouter(config)# snmp-server view cutdown 1.3.6.1.2.1.4.22 excluded<br /> ciscorouter(config)# snmp-server view cutdown 1.3.6.1.2.1.3 excluded</strong></p>
</blockquote>
<p><strong><u>Exclude CPU Intensive snmpUsmMIB, snmpVacmMIB,snmpCommunityMIB</u></strong></p>
<p>These are good to disable for Security reasons as well.</p>
<blockquote>
<p><strong>ciscorouter(config)# snmp-server view cutdown 1.3.6.1.6.3.15 excluded<br /> ciscorouter(config)# snmp-server view cutdown 1.3.6.1.6.3.16 excluded<br /> ciscorouter(config)# snmp-server view cutdown 1.3.6.1.6.3.18 excluded</strong></p>
</blockquote>
<p><strong><u>Configure SNMP Community</u></strong></p>
<p>Configure the SNMP community with the cutdown view as follows:</p>
<blockquote>
<p><strong>ciscorouter(config)# snmp-server community public view cutdown RO<br /> ciscorouter(config)# snmp-server community myprivate view cutdown RW</strong></p>
</blockquote>
<p>This should help. For simple SNMP configurations, <a href="http://www.itsyourip.com/cisco/snmp-configuration-on-cisco-ios-for-routers-and-switches/" target="_blank" title="Configure SNMP in Cisco IOS Switches and Routers">click here</a></p>
<p>For official Cisco Documentation&nbsp;<a href="http://www.cisco.com/en/US/tech/tk648/tk362/technologies_troubleshooting_procedures09186a00800948e6.shtml" target="_blank" title="Cisco Documentation on Cisco SNMP View">click here</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/cisco/high-cpu-usage-when-snmp-is-enabled-in-cisco-routers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Import WyseTerm Host List from one user to another in Windows</title>
		<link>https://www.itsyourip.com/networking/import-wyseterm-host-list-from-one-user-to-another-in-windows/</link>
					<comments>https://www.itsyourip.com/networking/import-wyseterm-host-list-from-one-user-to-another-in-windows/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 17 Jun 2008 21:44:16 +0000</pubDate>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[hostlist]]></category>
		<category><![CDATA[hummingbird]]></category>
		<category><![CDATA[remote-host]]></category>
		<category><![CDATA[Wyseterm]]></category>
		<guid isPermaLink="false">http://www.itsyourip.com/networking/import-wyseterm-host-list-from-one-user-to-another-in-windows/</guid>

					<description><![CDATA[Back from the holidays only to find my Windows Profile gone missing at work. One of the annoying things was to add all my remote hosts back onto WyseTerm. While the bad news is that there is no single file (which one would expect) that maintains this list, the good news comes in the form [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><!--adsense#content_336_280--> </p>
<p>Back from the holidays only to find my Windows Profile gone missing at work. One of the annoying things was to add all my remote hosts back onto WyseTerm. While the bad news is that there is no single file (which one would expect) that maintains this list, the good news comes in the form of Windows Registry. Yes, the WyseTerm host information is stored in Windows Registry and can be exported from the registry on to a new profile or other users profile.</p>
<p>The WyseTerm Host information, also known as the Common Address Book can be exported from the Windows Registry and then imported onto the new users profile as follows:</p>
<p><span id="more-200"></span></p>
<p>1. Click Start &#8211; Run &#8211; type &quot;regedit&quot; and press enter to open Windows Registry.</p>
<p>2. Navigate to</p>
<blockquote>
<p><strong>[HKEY_CURRENT_USER\Software\Hummingbird\Connectivity\[version]\HostExplorer\Common]</strong></p>
</blockquote>
<p>where [version] is the version of your Hummingbird software.</p>
<p>3. Click File and select EXPORT to export the &quot;Common Address Book&quot;. Enter a file name to save the reg file.</p>
<p>4. Now, login as the new user and run this reg file. This should import the WyseTerm host list onto the users WyseTerm.</p>
<p>&nbsp;This should help!!!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.itsyourip.com/networking/import-wyseterm-host-list-from-one-user-to-another-in-windows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
