<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>IT DIY</title>
	<atom:link href="http://albertsiow.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://albertsiow.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 23 Nov 2011 09:53:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='albertsiow.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>IT DIY</title>
		<link>http://albertsiow.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://albertsiow.wordpress.com/osd.xml" title="IT DIY" />
	<atom:link rel='hub' href='http://albertsiow.wordpress.com/?pushpress=hub'/>
		<item>
		<title>No for SSLv2 connections and weak ciphers! (Windows)</title>
		<link>http://albertsiow.wordpress.com/2010/01/12/no-for-sslv2-connections-and-weak-ciphers-windows/</link>
		<comments>http://albertsiow.wordpress.com/2010/01/12/no-for-sslv2-connections-and-weak-ciphers-windows/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 03:02:59 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[SSLv2]]></category>
		<category><![CDATA[weak cipher]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=179</guid>
		<description><![CDATA[It is very common to see the current HTTPS support SSLv2 connections and weak ciphers (&#60;112bits key) due to backward compatibility. Well, you can&#8217;t stop ppl from using old pc (I really don&#8217;t mind you buy me a new one&#8230; lol)! However, SSLv2 connection and weak cipher is a vulnerability to your system although it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=179&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://albertsiow.files.wordpress.com/2010/01/trs80.jpg"><img class="aligncenter size-medium wp-image-181" title="Old PC" src="http://albertsiow.files.wordpress.com/2010/01/trs80.jpg?w=600&#038;h=366" alt="" width="600" height="366" /></a></p>
<p>It is very common to see the current HTTPS support SSLv2 connections and weak ciphers (&lt;112bits key) due to backward compatibility. Well, you can&#8217;t stop ppl from using old pc (I really don&#8217;t mind you buy me a new one&#8230; lol)!</p>
<p>However, SSLv2 connection and weak cipher is a vulnerability to your system although it is generally hard to launch attack on it (heavy computing resource required and local access to network device may required).</p>
<p>In Windows, you can disable the following function of your SSL certificate in Windows registry as below:</p>
<ul>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\PCT  1.0\Server]<br />
</em>Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
</ul>
<p>and</p>
<ul>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL  2.0\Server]</em><br />
Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
</ul>
<p>To disable support of weak cipher in your web server, you can change your Windows registry as below:</p>
<ul>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\DES  56/56]</em><br />
Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\NULL]</em><br />
Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC2  40/128]</em><br />
Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC2  56/128]</em><br />
Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4  40/128]<br />
</em> Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4  56/128]</em><br />
Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
<li><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4  64/128]<br />
</em>Create a key &#8220;Enabled&#8221; with value 0 (dword)</li>
</ul>
<p>After these, you need to <span style="color:#ff0000;"><strong>RESTART</strong></span> your server for these registry to take effect. After these, you shall not see the vulnerabilities as below:</p>
<ul>
<li>SSL Server Supports Weak Encryption</li>
<li>SSL Server Allows Cleartext Encryption</li>
<li>SSL Server May Be Forced to Use Weak Encryption</li>
<li>SSL Server Allows Anonymous Authentication</li>
</ul>
<p>Reference:</p>
<p><a href="http://blog.zenone.org/2009/03/pci-compliance-disable-sslv2-and-weak.html"> PCI  Compliance &#8211; Disable SSLv2 and Weak Ciphers</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=179&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2010/01/12/no-for-sslv2-connections-and-weak-ciphers-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2010/01/trs80.jpg?w=300" medium="image">
			<media:title type="html">Old PC</media:title>
		</media:content>
	</item>
		<item>
		<title>Basic Steps to secure your Cisco Switch</title>
		<link>http://albertsiow.wordpress.com/2009/07/21/basic-steps-to-secure-your-cisco-switch/</link>
		<comments>http://albertsiow.wordpress.com/2009/07/21/basic-steps-to-secure-your-cisco-switch/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 08:42:28 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=164</guid>
		<description><![CDATA[Vlan Hopping (Rogue Trunk) Disable trunking on port (eg. gigabitethernet 0/1) which don’t require trunking: Switch(config)#interface gigabitethernet 0/1 Switch(config-if)#switchport mode access Disable DTP (Dynamic Trunking Protocol) on port which required trunking: Switch(config)# interface gigabitethernet 0/1 Switch(config-if)# switchport mode trunk Switch(config-if)# switchport nonegotiate &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Vlan Hopping(Double-Tagging) Change Native Vlan to a unused Vlan Switch(config)# interface gigabitethernet [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=164&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-166" title="N95-1037" src="http://albertsiow.files.wordpress.com/2009/07/n95-1037.jpg?w=655&#038;h=491" alt="N95-1037" width="655" height="491" /></p>
<p><span style="text-decoration:underline;">Vlan Hopping (Rogue Trunk)</span><br />
Disable trunking on port (eg. gigabitethernet 0/1) which don’t require trunking:<br />
Switch(config)#<em><strong>interface gigabitethernet 0/1<br />
</strong></em>Switch(config-if)#<em><strong>switchport mode access</strong></em></p>
<p>Disable DTP (Dynamic Trunking Protocol) on port which required trunking:<br />
Switch(config)# <em><strong>interface gigabitethernet 0/1</strong></em><br />
Switch(config-if)# <em><strong>switchport mode trunk</strong></em><br />
Switch(config-if)# <em><strong>switchport nonegotiate</strong></em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><span style="text-decoration:underline;">Vlan Hopping(Double-Tagging)</span><br />
Change Native Vlan to a unused Vlan<br />
Switch(config)# <em><strong>interface gigabitethernet 0/1</strong></em><br />
Switch(confi-if)# <em><strong>switchport trunk native vlan 400</strong></em> &lt;&#8211; vlan 400 not used by anyone<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><span style="text-decoration:underline;">STP Manipulation Attack</span><br />
Enable portfast globally for non-trunking ports (non-trunking ports over here means the ports not connecting the other switches)<br />
Switch(config)#<em><strong>spanning-tree portfast default</strong></em></p>
<p>Turn On portfast mode on a selected interface (eg. gigabitethernet 0/1)<br />
Switch (config)#<em><strong>interface gigabitethernet 0/1</strong></em><br />
Switch (config-if)#<em><strong>spanning-tree portfast</strong></em></p>
<p>Enable BPDUGuard globally on all portfast ports. When these ports see BPDU frames (used to elect STP root switch), the frame will be ignored and dropped.<br />
Switch(config)#<em><strong>spanning-tree portfast bpduguard default</strong></em></p>
<p>Enable RootGuard on selected port (eg. gigabitethernet 0/1), thus the port will stop passing traffic when it see BPDU which superior to current root. It start passing traffic again after the superior BPDU ceased.<br />
Switch(config)# <em><strong>interface gigabitethernet 0/1</strong></em><br />
Switch(config-if)# <em><strong>spanning-tree guard root</strong></em><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><span style="text-decoration:underline;">CAM table Overflow</span><br />
Enable port security (this only work on non-trunking port, aka access port)<br />
Switch(config)#<em><strong>interface gigabitethernet 0/1</strong></em><br />
Switch(config-if)#<em><strong>switchport mode access</strong></em><br />
Switch(config-if)#<em><strong>switchport port-security</strong></em><br />
Switch(config-if)#<em><strong>switchport port-security violation [protect|restrict|Shutdown]</strong></em></p>
<p>In previous example, that port will only learn 132 MAC address, other MAC address will trigger violation. The violation actions are:<br />
<strong>protect</strong>: new MAC address will be ignored and not inserted into CAM table<br />
<strong>restrict</strong> (default): switch will ignored new MAC address and send an SNMP trap or syslog to corresponding servers.<br />
<strong>shutdown</strong>: New MAC address will be ignored and that network port will be shut down till manual turn on.</p>
<p>Instead of remember 132 MAC address, we can set the maximum MAC addresses to be learned (eg, maximum 50 addresses are allowed to be learned)<br />
Switch(config-if)#<em><strong> switchport mode access</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security maximum 50</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security violation [protect|restrict|Shutdown]</strong></em></p>
<p>If we want the port to remember 1 MAC address only, there are 2 ways (dynamic and static)<br />
Dynamic<br />
Switch(config-if)#<em><strong> switchport mode access</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security sticky</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security violation [protect|restrict|Shutdown]</strong></em></p>
<p>Static<br />
Switch(config-if)# <em><strong>switchport mode access</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security static 1234.1234.1234</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security violation [protect|restrict|Shutdown]</strong></em></p>
<p><span style="text-decoration:underline;">Configure MAC address aging in CAM table</span><br />
Scenario: Age out the MAC address which has been inactive for 100minutes<br />
Switch(config-if)# <em><strong>switchport port-security aging time 100</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security aging type inacitivity</strong></em></p>
<p>Scenario: Age out the MAC address after 100minutes no matter what!<br />
Switch(config-if)# <em><strong>switchport port-security aging time 100</strong></em><br />
Switch(config-if)# <em><strong>switchport port-security aging type absolute</strong></em></p>
<p><span style="text-decoration:underline;">Check port-security status</span><br />
Switch#show port-security<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><span style="text-decoration:underline;">Create SPAN port</span><br />
Replicate all traffic on a port (eg. gigabitethernet 0/1) to another port (eg gigabitethernet 0/2) for analaysis (normally for IDS/IPS):<br />
Switch(config-if)# <em><strong>monitor session 1 source interface gigabitethernet 0/1</strong></em><br />
Switch(config-if)# <em><strong>monitor session 1 destination interface gigabitethernet 0/2 encapsulation replica</strong></em><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><span style="text-decoration:underline;">Storm-Control</span><br />
Controlling 3 types of traffic: unicast, multicast and broadcast<br />
Scenario, shutdown the port (eg. gigabitethernet 0/1) if:<br />
a) unicast traffic is more than 99%<br />
b) multicast reach 50Mbps<br />
c) broadcast packet reach 3000 per second</p>
<p>Switch(config)# <em><strong>interface gigabitethernet 0/1</strong></em><br />
Switch(config-if)#<em><strong>storm-control unicast level 99</strong></em><span style="text-decoration:underline;"><strong> </strong></span><br />
Switch(config-if)#<em><strong>storm-control multicast level bps 50m</strong></em><br />
Switch(config-if)#<em><strong>storm-control broadcast level pps 3k</strong></em><br />
Switch(config-if)#<em><strong>storm-control action shutdown</strong></em></p>
<p>*Traffic measurements percentage, bps, pps can be freely used for unicast, multicast and broadcast.</p>
<p>See this example:<br />
Switch(config-if)#<em><strong>storm-control unicast level bps 50m 30m</strong></em><br />
Switch(config-if)#<em><strong>storm-control action trap</strong></em></p>
<p>Meaning: Switch will send SNMP trap and message to syslog once unicast traffic reach 50Mbps, and it will stop sending the message when unicast traffic fall below 30Mbps.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<span style="text-decoration:underline;"><strong>Switch Security Best Practise</strong></span></p>
<ol>
<li><strong>Secure Management</strong>: Use SSH, dedicated management Vlan, out of band etc.</li>
<li><strong>Native Vlan</strong>: use dedicated Vlan for trunk ports and avoid vlan 1 at all.</li>
<li><strong>User ports</strong>: configure it as non-trunking ports.</li>
<li><strong>Port-security</strong>: control learned MAC address volume on non-trunking ports.</li>
<li><strong>SNMP</strong>: Limit to the management Vlan if possible and treat community string as superuser password.</li>
<li><strong>STP</strong>: Used BPDU guard and root guard.</li>
<li><strong>CDP(Cisco Discovery Protocl)</strong>: Use if necessary. CDP provide great deal of information about the device.</li>
<li><strong>Unused ports</strong>: Disable them and put them in an unused Vlan for extra security.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=164&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/07/21/basic-steps-to-secure-your-cisco-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/07/n95-1037.jpg" medium="image">
			<media:title type="html">N95-1037</media:title>
		</media:content>
	</item>
		<item>
		<title>Change Windows RDP port</title>
		<link>http://albertsiow.wordpress.com/2009/07/05/change-windows-rdp-port/</link>
		<comments>http://albertsiow.wordpress.com/2009/07/05/change-windows-rdp-port/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 06:28:31 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=160</guid>
		<description><![CDATA[By default, Windows listening on port 3389 f0r RDP (Remote Desktop Protocol), hence it has becomes a favor for attacker. To change the port number, just go to windows registry: Start -&#62; Run -&#62; regedit Under the path: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp &#62; PortNumber option Change the port 3389 to the number you preferred. Reference: How to change [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=160&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-161" title="rdp port" src="http://albertsiow.files.wordpress.com/2009/07/rdp-port.jpg?w=432&#038;h=218" alt="rdp port" width="432" height="218" /></p>
<p>By default, Windows listening on port 3389 f0r RDP (Remote Desktop Protocol), hence it has becomes a favor for attacker.</p>
<p>To change the port number, just go to windows registry:</p>
<p><em>Start -&gt; Run -&gt; <strong>regedit</strong></em></p>
<p>Under the path:</p>
<p><em><strong>HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp </strong>&gt; <strong>PortNumber</strong> option</em></p>
<p>Change the port 3389 to the number you preferred.</p>
<p>Reference:<br />
<a href="http://support.microsoft.com/kb/306759">How to change the listening port for Remote Desktop</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=160&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/07/05/change-windows-rdp-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/07/rdp-port.jpg" medium="image">
			<media:title type="html">rdp port</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 10 error with SCSI RAID controller</title>
		<link>http://albertsiow.wordpress.com/2009/05/12/fedora-10-error-with-scsi-raid-controller/</link>
		<comments>http://albertsiow.wordpress.com/2009/05/12/fedora-10-error-with-scsi-raid-controller/#comments</comments>
		<pubDate>Tue, 12 May 2009 07:37:13 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora 10]]></category>
		<category><![CDATA[scsi raid controller]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=156</guid>
		<description><![CDATA[While installing Fedora 10 onto machine with SCSI RAID controller, error may come out while booting, as show above. The machine will forever stucked there without getting into Fedora desktop if only reboot, swap disk, remove RAID setting action are taken. To solve this problem: Insert the Fedora 10 installation CD and reboot (force reboot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=156&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-157" title="N95-889" src="http://albertsiow.files.wordpress.com/2009/05/n95-889.jpg?w=655&#038;h=491" alt="N95-889" width="655" height="491" /></p>
<p>While installing Fedora 10 onto machine with SCSI RAID controller, error may come out while booting, as show above.</p>
<p>The machine will forever stucked there without getting into Fedora desktop if only reboot, swap disk, remove RAID setting action are taken.</p>
<p>To solve this problem:</p>
<p>Insert the Fedora 10 installation CD and reboot (force reboot is applicable).</p>
<p>On the GUI page for installation options, select <strong>Rescue an Installed System</strong>.</p>
<p>Select <strong>Do NOT start network devices</strong>. Click Continue.</p>
<p>On bash shell prompt, type:</p>
<p><em><strong># chroot /mnt/sysimage</strong></em></p>
<p><em><strong># cd /boot</strong></em></p>
<p>Backup the existing initial ramdisk image first. (Optional but recommended)</p>
<p>For example, the ramdisk image name is <strong>initrd-2.6.27.21.170.2.56.fc10.x86_64.img</strong></p>
<p><em><strong># mv <strong>initrd-2.6.27.21.170.2.56.fc10.x86_64.img</strong> <strong>initrd-2.6.27.21.170.2.56.fc10.x86_64.img.original</strong></strong></em></p>
<p>Create a new initial ramdisk image:</p>
<p><em><strong># mkinitrd   &#8211; -with=scsi_wait_scan <strong>initrd-2.6.27.21.170.2.56.fc10.x86_64.img</strong> `uname –r` </strong></em><br />
*Note that it is &#8220;- -&#8221; double hypen without space; also grave accent/tilte button ( ` ) followed by &#8220;uname&#8230;&#8221;, not single quote( &#8216; )</p>
<p>The ramdisk image filename &#8220;<em><strong><strong><strong><em>initrd-2.6.27.21.170.2.56.fc10.x86_64.img</em></strong></strong></strong></em>&#8221; MUST match the initrd file name in <strong>/boot/grub/grub.conf</strong></p>
<p>Reboot and problem shall be solved (you may expecting a working login interface).</p>
<p>Reference:</p>
<ol>
<li><a href="http://forums.fedoraforum.org/showthread.php?t=205115&amp;page=2">Fedora Forum</a></li>
<li><a href="http://www.linuxtopia.org/online_books/installation_guides/fedora_10_installation_guide/fedora_10_ch-beginninginstallation.html">Linuxtopis: Fedora 10. Begining the installation.</a></li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=156&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/05/12/fedora-10-error-with-scsi-raid-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/05/n95-889.jpg" medium="image">
			<media:title type="html">N95-889</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing Li-ion battery from Laptop really helps it life span?</title>
		<link>http://albertsiow.wordpress.com/2009/05/02/removing-li-ion-battery-from-laptop-really-helps-it-life-span/</link>
		<comments>http://albertsiow.wordpress.com/2009/05/02/removing-li-ion-battery-from-laptop-really-helps-it-life-span/#comments</comments>
		<pubDate>Sat, 02 May 2009 19:49:04 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[capacity lose]]></category>
		<category><![CDATA[li-ion battery]]></category>
		<category><![CDATA[temperature]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=150</guid>
		<description><![CDATA[A lot of people have the thinking that removing the battery from the laptop while using AC current will prolong the battery lifespan from being charged over long time. This concept is simply not right because most of the Li-ion has built-in circuit to cut off the charge in order to prevent over-charging, which will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=150&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A lot of people have the thinking that removing the battery from the laptop while using AC current will prolong the battery lifespan from being charged over long time. This concept is simply not right because most of the Li-ion has built-in circuit to cut off the charge in order to prevent over-charging, which will permanently damage the battery (normally 4.2V). <strong>So if the battery is already fully-charged, it won&#8217;t get charged even you leave it attached with the laptop.</strong></p>
<p><strong>The reason to remove the battery from laptop is because of HEAT!</strong> Over period of time, the battery will lose its capacity permanently according to its storage capacity and temperature, as refered to the chart below:<br />
<img class="aligncenter size-full wp-image-152" title="capacity-lost" src="http://albertsiow.files.wordpress.com/2009/05/capacity-lost.jpg?w=460&#038;h=206" alt="capacity-lost" width="460" height="206" />So, an idle fully-charged Li-ion battery at 40 degree celcius will lose 15% more capacity compared to another battery at room temperature.</p>
<p>With a laptop running more at 60 degree celcius (rarely seen), its attached battery will render useless within a year.  In another words, <strong>you can choose to attach your battery with your laptop all the time, as long as you remain the laptop is cool enough (bottom cooling pad with fans)</strong>.</p>
<p>To store fresh/unused battery, it is recommended to charge the battery to 40% instead of 100%, to reduce its capacity lose over time.</p>
<p>Reference:</p>
<ul>
<li><a href="http://www.techatplay.com/?p=61">3 Things You Should Already Know About Your Lithium Ion Battery</a></li>
<li><a href="http://en.wikipedia.org/wiki/Lithium_ion_battery#Storage_temperature_and_charge">Wiki: Lithium-ion battery &#8211; Storage temperature and charge</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=150&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/05/02/removing-li-ion-battery-from-laptop-really-helps-it-life-span/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/05/capacity-lost.jpg" medium="image">
			<media:title type="html">capacity-lost</media:title>
		</media:content>
	</item>
		<item>
		<title>Failed to open IIS metabase</title>
		<link>http://albertsiow.wordpress.com/2009/04/29/failed-to-open-iis-metabase/</link>
		<comments>http://albertsiow.wordpress.com/2009/04/29/failed-to-open-iis-metabase/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 08:33:30 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[aspnet user right]]></category>
		<category><![CDATA[iis]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=146</guid>
		<description><![CDATA[When IIS is installed after .Net Framework, the right for ASPNet user isn&#8217;t configured properly, where it won&#8217;t handle aspx(asp) files properly. In order to solve, just reset the aspnet user rights in IIS registry with such command: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis  -i Reference: Failed to access IIS metabase problem FIX: System.Web.Hosting.HostingEnvironmentException: Failed to access IIS metabase Failed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=146&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-large wp-image-147" title="iisfail" src="http://albertsiow.files.wordpress.com/2009/04/iisfa.jpg?w=1024&#038;h=163" alt="iisfail" width="1024" height="163" /></p>
<p>When IIS is installed after .Net Framework, the right for ASPNet user isn&#8217;t configured properly, where it won&#8217;t handle aspx(asp) files properly. In order to solve, just reset the aspnet user rights in IIS registry with such command:</p>
<p><strong><em>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis  -i</em></strong></p>
<p>Reference:</p>
<ul>
<li><a href="http://geekswithblogs.net/narent/archive/2007/03/23/109573.aspx">Failed to access IIS metabase problem</a></li>
<li><a href="http://support.microsoft.com/kb/555583">FIX: System.Web.Hosting.HostingEnvironmentException: Failed to access IIS metabase</a></li>
<li><a href="http://social.msdn.microsoft.com/forums/en-US/asmxandxml/thread/f213cd49-0143-46a8-95cf-88c80d5d1d34/">Failed to access IIS metabase, VS2005 RC</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=146&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/04/29/failed-to-open-iis-metabase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/04/iisfa.jpg?w=1024" medium="image">
			<media:title type="html">iisfail</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing Grub boot sequence on dual boot (Win+Linux)</title>
		<link>http://albertsiow.wordpress.com/2009/04/24/changing-grub-boot-sequence-on-dual-boot-winlinux/</link>
		<comments>http://albertsiow.wordpress.com/2009/04/24/changing-grub-boot-sequence-on-dual-boot-winlinux/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 11:43:11 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=140</guid>
		<description><![CDATA[Linux has been improved significantly that the users don&#8217;t have to give up Win platform while installing Linux on its hdd, since Linux distro now a day usually comes with boot loader which enable dual boot easily (Linux installation sometimes could be less &#8220;clicks&#8221; than Windows platform). Ubuntu and Fedora use Grub boot loader, sometimes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=140&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-142" title="change-sequence-on-grub1" src="http://albertsiow.files.wordpress.com/2009/04/change-sequence-on-grub1.jpg?w=607&#038;h=347" alt="change-sequence-on-grub1" width="607" height="347" />Linux has been improved significantly that the users don&#8217;t have to give up Win platform while installing Linux on its hdd, since Linux distro now a day usually comes with boot loader which enable dual boot easily (Linux installation sometimes could be less &#8220;clicks&#8221; than Windows platform).</p>
<p>Ubuntu and Fedora use Grub boot loader, sometimes we might accidentally set Linux to default boot, where unattended machine will boot into Linux automatically, then the user has to reboot again and manually set it boot to Windows platform.</p>
<p>To change boot sequence, just edit the configuration at <em><strong>/etc/grub.conf<br />
</strong></em>(&#8220;root&#8221; privilege is required)</p>
<p>Hereby I use <em>vi </em>as the text editor</p>
<p><em><strong>vi /etc/grub.conf</strong></em></p>
<p>On the parameters of <em><strong>default</strong></em>, change to the number of its partition on the hdd, like 0 in the example shown above. (hdd 0,0: Windows;    hdd 0,1:swap;    hdd 0,2:Fedora )</p>
<p><em><strong>timeout</strong></em> is for the pending time for selection before it auto-boot the default choice, which is set to 5second on example above.</p>
<p>After changing to 0 (previously 2 for Fedora partition), pls kindly restart and it shall works!</p>
<p><em><strong>reboot</strong></em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=140&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/04/24/changing-grub-boot-sequence-on-dual-boot-winlinux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/04/change-sequence-on-grub1.jpg" medium="image">
			<media:title type="html">change-sequence-on-grub1</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows XP: Change IP address (static  DHCP) using command prompt</title>
		<link>http://albertsiow.wordpress.com/2009/03/23/windows-xp-change-ip-address-static-dhcp-using-command-prompt/</link>
		<comments>http://albertsiow.wordpress.com/2009/03/23/windows-xp-change-ip-address-static-dhcp-using-command-prompt/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 06:14:44 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[change ip]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[netsh]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=134</guid>
		<description><![CDATA[There are conflicts of IP addresses everywhere, most typical case would be home networking using DHCP and office network use Static IP due to security measurement. Switch them would be quite troublesome. The harder way is to do it via command prompt. To change DHCP address to static IP: netsh interface ip set address name=&#8221;&#60;network [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=134&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-135" title="boom-main_full" src="http://albertsiow.files.wordpress.com/2009/03/boom-main_full.jpg?w=360&#038;h=313" alt="boom-main_full" width="360" height="313" />There are conflicts of IP addresses everywhere, most typical case would be home networking using DHCP and office network use Static IP due to security measurement. Switch them would be quite troublesome.</p>
<p>The harder way is to do it via command prompt. To change DHCP address to static IP:</p>
<p><strong><em>netsh interface ip set address name=&#8221;&lt;</em></strong>network connection name<strong><em>&gt;&#8221; static &lt;</em></strong>static IP<strong><em>&gt; &lt;</em></strong>network mask<strong><em>&gt; &lt;</em></strong>default gateway<strong><em>&gt;</em></strong></p>
<p>eg. <em><strong>netsh interface ip set address name=&#8221;Ethernet Network Connection&#8221; static 192.168.0.10 255.255.255.0 192.168.0.1</strong></em></p>
<p>To change it back to DHCP client:</p>
<p><em><strong>netsh interface ip set address </strong><strong>name=&#8221;&lt;</strong></em>network connection name<strong><em>&gt;&#8221; dhcp</em></strong></p>
<p>eg.<strong><em> </em></strong><em><strong>netsh interface ip set address name=&#8221;Ethernet Network Connection&#8221; dhcp</strong></em></p>
<p>Other than these, changing the DNS server manually would be:</p>
<p><em><strong>netsh interface ip set dns name=&#8221;&lt;</strong></em>network connection name<em><strong>&gt;&#8221; static &lt;</strong></em>DNS server IP address<em><strong>&gt;</strong></em></p>
<p>eg.<em><strong>netsh interface ip set dns name=&#8221;Ethernet Network Connection</strong></em><em><strong>&#8221; static 192.168.0.1 </strong></em>(assume the gateway is same as DNS server)</p>
<p>Lastly, changing the WINS server manually would be:</p>
<p><em><strong>netsh interface ip set wins name=&#8221;&lt;</strong></em>network connection name<em><strong>&gt;&#8221; static &lt;</strong></em>DNS server IP address<em><strong>&gt;</strong></em></p>
<p>eg.<em><strong>netsh interface ip set wins name=&#8221;Ethernet Network Connection</strong></em><em><strong>&#8221; static 192.168.0.1 </strong></em>(assume the gateway is same as WINS server)</p>
<p>Troublesome, isn&#8217;t it? What if you put all the commands into one batch file (<em>.bat</em>), with one click, it is easier than GUI!</p>
<p>Reference:</p>
<ol>
<li><a href="http://www.petri.co.il/configure_tcp_ip_from_cmd.htm">Configure TCP/IP from the Command Prompt</a></li>
<li><a href="http://support.microsoft.com/kb/257748">Microsft Help and Support:How to Use the NETSH Command to Change from Static IP Address to DHCP in Windows 2000</a></li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=134&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/03/23/windows-xp-change-ip-address-static-dhcp-using-command-prompt/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/03/boom-main_full.jpg" medium="image">
			<media:title type="html">boom-main_full</media:title>
		</media:content>
	</item>
		<item>
		<title>Export Group policy on a network</title>
		<link>http://albertsiow.wordpress.com/2009/03/06/export-group-policy-on-a-network/</link>
		<comments>http://albertsiow.wordpress.com/2009/03/06/export-group-policy-on-a-network/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 09:19:54 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[group policy]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=130</guid>
		<description><![CDATA[For Microsoft computer network without Active Directory, deploying Group Policy is a nightmare as you definitely don&#8217;t want to get into Group Policy Object Editor and edit the option one-by-one on each PC. This an alternative way to do so: 1. Open %systemroot%\system32\grouppolicy\ (eg. c:\WINDOWS\system32\GroupPolicy\) 2.Copy both “machine” and “user” folders to the “%systemroot%\system32\grouppolicy&#8221; &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=130&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-131" title="computergeek" src="http://albertsiow.files.wordpress.com/2009/03/ts-computerlg.jpg?w=383&#038;h=300" alt="computergeek" width="383" height="300" /></p>
<p>For Microsoft computer network without Active Directory, deploying Group Policy is a nightmare as you definitely don&#8217;t want to get into Group Policy Object Editor and edit the option one-by-one on each PC.</p>
<p>This an alternative way to do so:</p>
<p>1. Open <strong>%systemroot%\system32\grouppolicy\</strong> (eg. c:\WINDOWS\system32\GroupPolicy\)</p>
<p>2.Copy both “<strong>machine</strong>” and “<strong>user</strong>” folders to the “<strong>%systemroot%\system32\grouppolicy</strong>&#8221; &#8211; folder (same location) on the target machine.</p>
<p>3. Reboot or a “<strong>gpupdate /force</strong>” command to refresh the group policy.</p>
<p>Hereby I provide an example of batch file to do such jobs in one click.</p>
<p>First, you need to have both “<strong>machine</strong>” and “<strong>user</strong>” folders stored under a folder named &#8220;<strong>GroupPolicySource</strong>&#8221; (any filename as you like). Locate the batch file as in same folder with &#8220;<strong>GroupPolicySource</strong>&#8221; folder.</p>
<p>Batch file:</p>
<p><em><strong>xcopy GroupPolicySource c:\WINDOWS\system32\GroupPolicy\ /s /e /y</strong></em><br />
<em><strong>gpdupate /f </strong></em></p>
<p><em>or</em></p>
<p><em><strong>xcopy GroupPolicySource c:\WINDOWS\system32\GroupPolicy\ /s /e /y</strong></em><br />
<em><strong>shutdown -r -i 5</strong></em> (reboot in 5 seconds)</p>
<p>Reference:</p>
<ol>
<li><a href="http://www.frickelsoft.net/blog/?p=31">Florian&#8217;s Blog: How can I export local Group Policy settings made in gpedit.msc?</a></li>
<li><a href="http://technet.microsoft.com/en-us/library/bb491035.aspx">XCOPY command reference</a></li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=130&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/03/06/export-group-policy-on-a-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/03/ts-computerlg.jpg" medium="image">
			<media:title type="html">computergeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Site to Site PPTP VPN Tunnel</title>
		<link>http://albertsiow.wordpress.com/2009/02/23/site-to-site-pptp-vpn-tunnel/</link>
		<comments>http://albertsiow.wordpress.com/2009/02/23/site-to-site-pptp-vpn-tunnel/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 03:39:04 +0000</pubDate>
		<dc:creator>albertsiow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[pptp]]></category>
		<category><![CDATA[site to site]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://albertsiow.wordpress.com/?p=122</guid>
		<description><![CDATA[Hereby I will demonstrate a simplest PPTP site to site VPN tunnel built on Windows 2003 which none of the following are required: RADIUS server IAS server Active Directory Internal DNS server Internal DHCP server In short, it is just simply 2 Windows 2003 VPN endpoint. The VPN tunnel has to be initialized by one [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=122&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-123" title="VPN tunnel" src="http://albertsiow.files.wordpress.com/2009/02/9916f1.png?w=655&#038;h=273" alt="VPN tunnel" width="655" height="273" />Hereby I will demonstrate a simplest PPTP site to site VPN tunnel built on Windows 2003 which none of the following are required:</p>
<ul>
<li>RADIUS server</li>
<li>IAS server</li>
<li>Active Directory</li>
<li>Internal DNS server</li>
<li>Internal DHCP server</li>
</ul>
<p>In short, it is just simply 2 Windows 2003 VPN endpoint. The VPN tunnel has to be initialized by one VPN endpoint (so called &#8220;Calling Server&#8221;) to another VPN endpoint (so called &#8220;Answering Server&#8221;).</p>
<p>Such manual is based on a fresh Windows 2003 where <em>Routing and Remote Access</em> Service is started.</p>
<p><span style="text-decoration:underline;"><strong>Configuring Answering Server:</strong></span><br />
<em>Start</em> -&gt; <em>Settings</em> -&gt; <em>Control Panel</em> -&gt; <em>Administrative Tools</em> -&gt; <em>Routing and Remote Access</em>:<br />
Right click on the server (eg ‘win12’ left panel) -&gt; click <em>Configure and Enable Routing and Remote Access</em><br />
Welcome to the Routing and Remote Access Server Setup Wizard Menu: Click <strong>Next</strong><br />
Select <strong>Secure connection between Two private networks</strong>.</p>
<p>Do you want to use demand-dial connections to access remote networks? Select <strong>Yes</strong> -&gt; click <strong>Next</strong></p>
<p>How do you want IP address to be assigned to remote clients? Select <strong>From a specified range of address</strong> -&gt; click <strong>Next</strong></p>
<p>Enter the range of private IP address of Calling Server (eg. 192.168.200.0 &#8211; 192.168.200.255) -&gt; Click <strong>OK</strong></p>
<p>Completing the Routing and Remote Access Server Setup Wizard:  Click <strong>Finish</strong>.</p>
<p>Welcome to the Demand Dial Interface Wizard: Click Next.</p>
<p>Create Interface Name (eg. <em>HK_VPNEndpoint</em>, preferable in one word and same as Dial Out username which used to connect with remote server later on) -&gt; click <strong>Next</strong></p>
<p>Connection Type: Select <strong>Connect using virtual private networking (VPN)</strong> -&gt; click <strong>Next</strong></p>
<p>VPN type: Select <strong>Point to Point Tunneling Protocol (PPTP)</strong> -&gt; click <strong>Next</strong></p>
<p>Destination Address: Enter <strong>Calling Server’s IP address</strong> -&gt; click <strong>Next</strong></p>
<p>Protocols and Security: Select both <strong>Route IP packets on This Interface</strong> and <strong>Add a user account so a remote router can dial in.</strong> -&gt; click <strong>Next</strong></p>
<p>Static Routers for Remote Networks: Click <strong>Add</strong> -&gt; Enter the remote server private IP range<br />
eg.     Destination:         <em>192.168.0.0</em><br />
Network Mask:    <em>255.255.255.0</em><br />
Metric:            <em>1</em><br />
Click <strong>OK</strong> -&gt; Click <strong>Next</strong></p>
<p>Dial In Credentials:<br />
Username is grey out, same as the Interface Name -&gt; Create Password -&gt; Confirm Password -&gt; Click <strong>Next</strong><br />
(This username and password are to be used while the calling server dial in)</p>
<p>Dial Out Credentials:<br />
Create <strong>UserName</strong>, <strong>Domain</strong> (optional, leave it blank for non-Active Directory environment), <strong>Password</strong>.<br />
(This username and password are to be used to dial out for 2-way initialized connection, just enter the username for 1-way initialized connection)</p>
<p>Completing the Demand-Dial Interface Wizard -&gt; Click <strong>Finish</strong></p>
<p><span style="text-decoration:underline;"><strong>Configuring Calling Server:</strong></span><br />
<em>Start</em> -&gt; <em>Settings</em> -&gt; <em>Control Panel</em> -&gt; <em>Administrative Tools</em> -&gt; <em>Routing and Remote Access</em>:<br />
Right click on the server -&gt; click <strong>Configure and Enable Routing and Remote Access</strong><br />
Welcome to the Routing and Remote Access Server Setup Wizard Menu: Click <strong>Next</strong><br />
Select <strong>Secure connection between Two private networks</strong>.</p>
<p>Do you want to use demand-dial connections to access remote networks? Select <strong>Yes</strong></p>
<p>How do you want IP address to be assigned to remote clients? Select From a specified range of address</p>
<p>Enter the range of private IP address of Calling Server (eg. 10.0.2.0 &#8211; 10.0.2.255) -&gt; <strong>OK</strong></p>
<p>Completing the Routing and Remote Access Server Setup Wizard -&gt; Click <strong>Finish</strong>.</p>
<p>Welcome to the Demand Dial Interface Wizard: Click <strong>Next</strong>.</p>
<p>Create Interface Name (eg. <em>MY_VPNEndpoint</em>, preferable in one word and same as Dial Out username which used to connect with remote server later on) -&gt; click <strong>Next</strong></p>
<p>Connection Type: Select <strong>Connect using virtual private networking (VPN)</strong> -&gt; click <strong>Next</strong></p>
<p>VPN type: Select <strong>Point to Point Tunneling Protocol (PPTP)</strong> -&gt; click <strong>Next</strong></p>
<p>Destination Address: Enter Calling Server’s IP address -&gt; click <strong>Next</strong></p>
<p>Protocols and Security: Select both <strong>Route IP packets on This Interface</strong> and <strong>Add a user account so a remote router can dial in</strong>. -&gt; click <strong>Next</strong></p>
<p>Static Routers for Remote Networks: Click Add  Enter the remote private IP range<br />
eg.     Destination:         <em>192.168.200.0</em><br />
Network Mask:    <em>255.255.255.0</em><br />
Metric:            <em>1</em><br />
Click <strong>OK</strong> -&gt; Click <strong>Next</strong></p>
<p>Dial In Credentials:<br />
Username is grey out, same as the Interface Name -&gt; Create Password -&gt; Confirm Password -&gt; Click Next<br />
(This username and password are to be used while the calling server dial in)</p>
<p>Dial Out Credentials:<br />
Create <strong>UserName</strong>, <strong>Domain</strong> (optional, leave it blank for non-Active Directory environment), <strong>Password</strong>.<br />
(This username and password are to be used to dial out for 2-way initialized connection, just enter the username for 1-way initialized connection)</p>
<p>Completing the Demand-Dial Interface Wizard: Click <strong>Finish</strong></p>
<p><span style="text-decoration:underline;"><strong>Establishing connection</strong></span></p>
<p><em>Start</em> -&gt; <em>Settings</em> -&gt; <em>Control Panel</em> -&gt; <em>Administrative Tools</em> -&gt; <em>Routing and Remote Access</em> -&gt; <em>Server</em> -&gt; <em>Network Interfaces</em> (left panel): (Right panel) Right click the Demand Dial Interface (eg. HK_VPNEndpoint) -&gt; Click <strong>Connect</strong></p>
<p><span style="text-decoration:underline;"><strong>Static Route setting on other server (both side’s private network)</strong></span><br />
<em> No Active Directory = No automatic deployment.</em><br />
Add static route for remote private network to be passed to PPTP server:<br />
<strong>route add</strong> [<em>remote private IP address</em>] <strong>mask</strong> [<em>remote network mask</em>] [<em>local VPN server private IP address</em>]<br />
eg: route add 192.168.0.0 mask 255.255.255.0 192.168.200.250 (on answering server&#8217;s site)</p>
<p>Reference:</p>
<ol>
<li><a href="http://technet.microsoft.com/en-us/library/cc787328.aspx">Deploying a PPTP-based Site-to-Site VPN Connection</a></li>
<li><a href="http://www.howtonetworking.com/articles/mssitetositevpn.htm">Microsoft Site-to-Site VPN</a></li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertsiow.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertsiow.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/albertsiow.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/albertsiow.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/albertsiow.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/albertsiow.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/albertsiow.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/albertsiow.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/albertsiow.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/albertsiow.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/albertsiow.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/albertsiow.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/albertsiow.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/albertsiow.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertsiow.wordpress.com&amp;blog=2447779&amp;post=122&amp;subd=albertsiow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertsiow.wordpress.com/2009/02/23/site-to-site-pptp-vpn-tunnel/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b46be89e2a7d2741b1e77ad76cb44f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertsiow</media:title>
		</media:content>

		<media:content url="http://albertsiow.files.wordpress.com/2009/02/9916f1.png" medium="image">
			<media:title type="html">VPN tunnel</media:title>
		</media:content>
	</item>
	</channel>
</rss>
