<?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>Nirlog.com &#187; VPN</title>
	<atom:link href="http://nirlog.com/category/vpn/feed/" rel="self" type="application/rss+xml" />
	<link>http://nirlog.com</link>
	<description>Technology, Life and other stuff that come along...</description>
	<lastBuildDate>Sat, 29 May 2010 15:06:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>OpenVPN Implementation</title>
		<link>http://nirlog.com/2006/11/09/openvpn-implementation/</link>
		<comments>http://nirlog.com/2006/11/09/openvpn-implementation/#comments</comments>
		<pubDate>Thu, 09 Nov 2006 07:35:46 +0000</pubDate>
		<dc:creator>Niranjan Kunwar</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://nirlog.com/2006/11/09/openvpn-implementation/</guid>
		<description><![CDATA[This guide describes how to install and configure the OpenVPN Server in Linux and clients in Windows XP and Mac OSX. There are many advanced features in OpenVPN and if you&#8217;re interested in those advanced stuff, there&#8217;s a more detailed HowTo for you. This guide was created from my successful installation, so it works for [...]]]></description>
			<content:encoded><![CDATA[<p>This guide describes how to install and configure the OpenVPN Server in Linux and clients in Windows XP and Mac OSX. There are many advanced features in OpenVPN and if you&#8217;re interested in those advanced stuff, there&#8217;s a more <a href="http://openvpn.net/howto.html">detailed HowTo</a> for you. This guide was created from my successful installation, so it works for me. If you find any problems or have suggestions please leave a comment. I&#8217;ll try my best to help. I&#8217;m sure, you know that you&#8217;re using this at your own risk <img src='http://nirlog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>In our scenario, a small office network is protected by Linux firewall and we&#8217;ll implement the secure OpenVPN to access the internal office network (File Server, Database Server and Desktop PCs) securely from anywhere in the Internet.</p>
<p><img src="http://nirlog.com/wp-content/uploads/2006/11/openvpn.jpg" height="560" width="480" border="1" hspace="4" vspace="4" alt="openvpn" title="openvpn" /></p>
<p><span id="more-204"></span><br />
<strong>OpenVPN Server Installation<br />
</strong>Download the <a href="http://dag.wieers.com/packages/openvpn/">OpenVPN</a> and <a href="http://dag.wieers.com/packages/lzo/">LZO</a> packages, these are packaged RPMs for Fedora/Redhat, which also works for CentOS and Whiteboxlinux.</p>
<p><strong>Install the packages:</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/rpm-install.jpg" height="183" width="477" border="1" hspace="4" vspace="4" alt="rpm-install" title="rpm-install" /></p>
<p><strong>Enable packet forwarding between 2 interfaces in OpenVPN Server:</strong></p>
<blockquote><p>#echo 1 &gt; /proc/sys/net/ipv4/ip_forward</p></blockquote>
<p><strong>Master Certificate Authority (CA) Certificate and Key:</strong><br />
A set of scripts bundled with OpenVPN make the PKI management easier. We&#8217;ll use these scripts to generate a master CA certificate/key, a server certificate/key and 2 keys/certificates for separate clients.</p>
<p>Change your directory to <strong>easy-rsa</strong> subdirectory in your OpenVPN installation:</p>
<blockquote><p># cd /usr/share/doc/openvpn-2.0.7/easy-rsa</p></blockquote>
<p>Edit the<strong> vars</strong> file and set the <strong>KEY_COUNTRY, KEY_PROVINCE, KEY_CITY, KEY_ORG, and KEY_EMAIL</strong> parameters. My vars parameters are as following, you need to setup your own:</p>
<blockquote><p>export KEY_COUNTRY=HK<br />
export KEY_PROVINCE=KLN<br />
export KEY_CITY=Hong Kong<br />
export KEY_ORG=&#8221;OpenVPN-TEST&#8221;<br />
export KEY_EMAIL=&#8221;niranjan.kunwar@gmail.com&#8221;</p></blockquote>
<p><strong>Initialize the PKI:</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/build-ca.jpg" height="335" width="480" border="1" hspace="4" vspace="4" alt="build-ca" title="build-ca" /></p>
<p><strong>Generate Certificate and Key for the Server:</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/build-key-server.jpg" height="518" width="480" border="1" hspace="4" vspace="4" alt="build-key-server" title="build-key-server" /></p>
<p><strong>Generate Certificates and Keys for 2 clients:</strong></p>
<blockquote><p>#sh build-key client-win<br />
#sh build-key client-osx</p></blockquote>
<p><img src="http://nirlog.com/wp-content/uploads/2006/11/build-key-client.jpg" height="588" width="480" border="1" hspace="4" vspace="4" alt="build-key-client" title="build-key-client" /></p>
<p><strong>Generate Diffie Hellman parameters</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/build-dh.jpg" height="181" width="480" border="1" hspace="4" vspace="4" alt="build-dh" title="build-dh" /></p>
<p><strong>Copy the keys and certificate to /etc/openvpn</strong></p>
<blockquote><p>#cp dh1024.pem server.crt server.key ca.crt /etc/openvpn/</p></blockquote>
<p><strong>Server Configuration file<br />
</strong>A sample configuration file <strong>server.conf </strong>can be found in <strong>/usr/share/doc/openvpn-2.0.7/sample-config-files, </strong>copy it to<strong> /etc/openvpn </strong>and customize it according to your needs<strong>. </strong>There are many possible customizations that you can do to the configuration file. In our case the VPN Server will be listening to <strong>UDP port 1194</strong>, which is the official OpenVPN port number. We&#8217;ll offer the virtual address <strong>192.168.0.0/24</strong> to the vpn clients and push the <strong>route 192.168.1.0</strong>, which is our Office LAN subnet. Following is the contents of our configuration file <strong>server.conf:</strong></p>
<blockquote><p>port 1194<br />
proto udp<br />
dev tun<br />
ca ca.crt<br />
cert server.crt<br />
key server.key  # This file should be kept secret<br />
dh dh1024.pem<br />
server 192.168.0.0 255.255.255.0<br />
ifconfig-pool-persist ipp.txt<br />
push &#8220;route 192.168.1.0 255.255.255.0&#8243;<br />
client-to-client<br />
keepalive 10 120<br />
comp-lzo<br />
user nobody<br />
group nobody<br />
persist-key<br />
persist-tun<br />
status openvpn-status.log<br />
verb 3</p></blockquote>
<p><strong>Start the OpenVpn Server:</strong></p>
<blockquote><p># service openvpn start</p></blockquote>
<p><strong>Windows Client Installation and Configuration<br />
</strong>Download the <a href="http://openvpn.se/download.html">OpenVPN GUI for Windows</a> and install it.<br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/win-install.jpg" height="295" width="377" border="1" hspace="4" vspace="4" alt="Win-Install" /></p>
<p>Copy the <strong>ca.crt, client-win.crt </strong>and<strong> client-win.key</strong> files from OpenVPN Server to the windows pc at <strong>C:\Program Files\OpenVPN\config.</strong> A Sample client configuration file <strong>client.ovpn</strong> can be found in <strong>C:\Program Files\OpenVPN\sample-config</strong> directory, also copy it to <strong>C:\Program Files\OpenVPN\config </strong>and customize it according to your needs. Following is the contents of our client configuration file <strong>client.ovpn</strong>:</p>
<blockquote><p>client<br />
dev tun<br />
proto udp<br />
remote vpn.nirlog.com 1194<br />
resolv-retry infinite<br />
nobind<br />
persist-key<br />
persist-tun<br />
ca ca.crt<br />
cert client-win.crt<br />
key client-win.key<br />
ns-cert-type server<br />
comp-lzo<br />
verb 3</p></blockquote>
<p><strong>Connect:</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/win-connect-1.jpg" height="282" width="434" border="1" hspace="4" vspace="4" alt="win-connect" title="win-connect" /></p>
<p><strong>Ping test:</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/win-test.jpg" height="220" width="433" border="1" hspace="4" vspace="4" alt="win-test" title="win-test" /><br />
Successful ping to 192.168.0.1 shows that you can reach the server via vpn tunnel. You should be able to ping the Desktops and Servers (192.168.1.x) in the office network too.</p>
<p><strong>OS X Client Installation and Configuration:</strong><br />
Download <a href="http://www.tunnelblick.net/">Tunnelblick </a>and install it by unzipping and dragging the Tunnelblick.app to Applications folder.</p>
<p>Copy the <strong>ca.crt, client-osx.crt </strong>and<strong> client-osx.key</strong> files from OpenVPN Server to the Mac at <strong>/Users/&lt;yourname&gt;/Library/openvpn. </strong> The client configuration file <strong>openvpn.conf</strong> can be found in <strong>/Users/&lt;yourname&gt;/Library/openvpn</strong> directory, customize it according to your needs. Following is the contents of our client configuration file <strong>openvpn.conf</strong>:</p>
<blockquote><p>client<br />
dev tun<br />
proto udp<br />
remote vpn.nirlog.com 1194<br />
resolv-retry infinite<br />
nobind<br />
user nobody<br />
group nobody<br />
persist-key<br />
persist-tun<br />
ca ca.crt<br />
cert client-osx.crt<br />
key client-osx.key<br />
ns-cert-type server<br />
comp-lzo<br />
verb 3</p></blockquote>
<p><strong>Connect:</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/tunnelblick-connect.jpg" height="350" width="480" border="1" hspace="4" vspace="4" alt="tunnelblick-connect" title="tunnelblick-connect" /></p>
<p><strong>Ping test:</strong><br />
<img src="http://nirlog.com/wp-content/uploads/2006/11/mac-test.jpg" height="182" width="478" border="1" hspace="4" vspace="4" alt="mac-test" title="mac-test" /><br />
Successful ping to 192.168.0.1 shows that you can reach the server via vpn tunnel. You should be able to ping the Desktops and Servers (192.168.1.xxx) in the office network too.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirlog.com/2006/11/09/openvpn-implementation/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Secure, Easy and Cheap VPN: OpenVPN</title>
		<link>http://nirlog.com/2006/11/03/secure-easy-and-cheap-vpn-openvpn/</link>
		<comments>http://nirlog.com/2006/11/03/secure-easy-and-cheap-vpn-openvpn/#comments</comments>
		<pubDate>Fri, 03 Nov 2006 10:03:51 +0000</pubDate>
		<dc:creator>Niranjan Kunwar</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://nirlog.com/2006/11/03/secure-easy-and-cheap-vpn-openvpn/</guid>
		<description><![CDATA[
I&#8217;ve used IPSec, PPTP and SSL VPNs for quite some time and found them to have their own strengths and weaknesses. IPSec is secure but too complicated, with too many options for implementation and configuration. PPTP is easy to use and configure but it had some security issues in the past, which deters serious security [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://nirlog.com/wp-content/uploads/2006/11/mobilevpn-1.jpg" height="200" width="494" border="1" hspace="4" vspace="4" alt="Mobilevpn-1" /></p>
<p>I&#8217;ve used IPSec, PPTP and SSL VPNs for quite some time and found them to have their own strengths and weaknesses. IPSec is secure but too complicated, with too many options for implementation and configuration. PPTP is easy to use and configure but it had some security issues in the past, which deters serious security minded organizations to implement it. Commercial SSL VPNs are easy to use but they&#8217;re very expensive and still haven&#8217;t solved all the remote connection problems.</p>
<p>I was introduced to <a href="http://www.softether.com">SoftEther</a> (popular Japanese personal VPN) by one of my boss few years ago, it&#8217;s secure and free but the documents are available only in Japanese. While I was searching for english documents of SoftEther, I came across an <a href="http://en.wikipedia.org/wiki/Softether">Wikipedia entry</a>, which said <em>&#8220;It is similar to </em><em><a href="http://openvpn.net/">OpenVPN</a></em><em>, though it is closed source software&#8221;</em>. I&#8217;d heard about OpenVPN but had never given it a serious look. This time I decided to look at it. I was pleasantly surprised by it&#8217;s ease of installation, use and robust security. Here are few points to note about OpenVPN:</p>
<ul>
<li><strong>It&#8217;s a free and </strong><strong><a href="http://openvpn.net/license.html">opensource</a></strong><strong>.</strong></li>
<li><strong>It&#8217;s </strong><strong><a href="http://openvpn.net/security.html">secure</a></strong><strong>; uses the SSL/TSL protocol.</strong></li>
<li><strong>It&#8217;s easy to install and use. </strong><strong><a href="http://openvpn.net/gui.html">Graphical User Interfaces</a></strong><strong> are available for those who fear the command lines.</strong></li>
<li><strong>Has flexible authentication scheme based on certificates, smart cards, or traditional username/password credentials.</strong></li>
<li><strong>Can be implemented as a </strong><strong><a href="http://openvpn.net/bridge.html">bridge</a></strong><strong> or a router (OSI layer 2 or layer 3).</strong></li>
<li><strong>Excellent </strong><strong><a href="http://openvpn.net/download.html">cross-platform</a></strong><strong> support, it can be installed in Linux, Unix, Windows and Mac OS X.</strong></li>
<li><strong>Good documentation, </strong><strong><a href="http://openvpn.net/faq.html">FAQs</a></strong><strong>, </strong><strong><a href="http://openvpn.net/howto.html">HowTos</a></strong><strong> and </strong><strong><a href="http://openvpn.net/articles.html">articles</a></strong><strong>.</strong></li>
</ul>
<p>If you&#8217;re looking for a secure, cheap, flexible and easy to use vpn solution, then you should give OpenVPN a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirlog.com/2006/11/03/secure-easy-and-cheap-vpn-openvpn/feed/</wfw:commentRss>
		<slash:comments>-123</slash:comments>
		</item>
		<item>
		<title>Workplace IT Security &amp; Communications Solutions for Today&#8217;s Business</title>
		<link>http://nirlog.com/2006/05/15/workplace-it-security-communications-solutions-for-todays-business/</link>
		<comments>http://nirlog.com/2006/05/15/workplace-it-security-communications-solutions-for-todays-business/#comments</comments>
		<pubDate>Mon, 15 May 2006 11:57:58 +0000</pubDate>
		<dc:creator>Niranjan Kunwar</dc:creator>
				<category><![CDATA[Hong Kong]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://nirlog.com/2006/05/15/workplace-it-security-communications-solutions-for-todays-business/</guid>
		<description><![CDATA[Today I attended a seminar called Workplace IT Security &#38; Communications Solutions for Today&#8217;s Business organized by one of our technology partner. It was an interesting event where several networking vendors presented about the IT Security Technology and the latest and greatest products they&#8217;ve in offer.
Opening speech was given by the Senior Inspector WONG Hung-Fu [...]]]></description>
			<content:encoded><![CDATA[<p>Today I attended a seminar called <strong>Workplace IT Security &amp; Communications Solutions for Today&#8217;s Business</strong> organized by one of our technology partner. It was an interesting event where several networking vendors presented about the IT Security Technology and the latest and greatest products they&#8217;ve in offer.</p>
<p>Opening speech was given by the Senior<span class="style8"> Inspector WONG Hung-Fu of Technology Crime Division, </span><span class="style8">Crime Prevention Unit, Commercial Crime Bureau, Hong Kong Police Force. Unfortunately he choose to speak in Cantonese (which I don&#8217;t understand) but from his slides and later explained to me by other participant he was showing figures of increasing cyber crimes in Hong Kong specially Phishing, Spyware and P2P related crimes.</span></p>
<p><span id="more-141"></span></p>
<p><a href="http://www.sonicwall.com/"><img height="60" border="0" width="125" style="margin:5px;" alt="" src="http://nirlog.com/wp-content/uploads/2006/05/SSLVPN-Family_-Right.jpg" /><strong>Sonicwall</strong></a></p>
<p>They talked about the new generation of <a href="http://www.sonicwall.com/products/index.html">UTM (Unified Threat Management) Firewalls</a> they&#8217;re offering. The UTM Firewalls includes following security solutions in one box:</p>
<ul>
<li>Real-time Gateway Anti-Virus Scanning</li>
<li>VPN/Firewall</li>
<li>Intrusion Prevention Service</li>
<li>Gateway Anti-Virus, Anti-Spyware</li>
<li>Wireless Security</li>
</ul>
<p>The new sonicwalls also include DPI (Deep Packet Inspection). From my experience sonicwalls are very cheap compared to other products in the market but are worth their cost.</p>
<p>They also talked about their SSL-VPN about which I&#8217;d <a href="http://nirlog.com/2006/01/23/secure-remote-access-ssl-vpn/">written earlier</a>. They mainly focused on technology side of SSL-VPN instead of their product and admitted their target is SME and cannot compete with Netscreen or Aventail on features. But price-wise they made it clear that they&#8217;re the only ones affordable by small companies. </p>
<p><a href="http://www.barracudanetworks.com/"><img height="80" border="0" width="125" style="margin:5px;" alt="" src="http://nirlog.com/wp-content/uploads/2006/05/spam_firewall_thumb.png" /><strong><span class="style8">Barracuda</span></strong></a></p>
<p>The guy from Barracuda explained how Spams and Viruses are becoming a daily headache to everyone. He also introduced several of their products. <a href="http://www.barracudanetworks.com/ns/products/spam_overview.php">Barracuda Spam Firewall</a>, which is a powerful enterprise-class anti-spam and anti-virus solution for email servers. They&#8217;ve sold 30,000 devices and are actively supporting them. The main features of Barracuda Spam Firewall are:</p>
<ul>
<li>Anti-spam</li>
<li>Anti-virus</li>
<li>Anti-spoofing</li>
<li>Anti-phishing</li>
<li>Anti-spyware (Attachments)</li>
<li>Denial of Service</li>
</ul>
<p>Other products from Barracuda are: <a href="http://www.barracudanetworks.com/ns/products/spyware_overview.php">Spyware firewall</a> and <a href="http://www.barracudanetworks.com/ns/products/spyware_overview.php">IM Firewall</a></p>
<p><a href="http://www.encentuate.com/"><img height="49" border="0" width="125" style="margin:5px;" alt="" src="http://nirlog.com/wp-content/uploads/2006/05/banner_enc.jpg" /><strong><span class="style8">Encentuate</span></strong></a></p>
<p> Existing security access solutions e.g. passwords, tokens, digital certificates etc.. as they grow stronger, they make it more inconvenient for end users and enterprises to manage them. So Encentuate was founded to address the need of enterprises to simplify, strengthen and track access across their digital assets and physical infrastructure. They provide Single sign-on and sign-off automation, authentication management and user-centric access auditing and reporting. </p>
<p><a href="http://www.tippingpoint.com/products_ips.html"><img height="34" border="0" width="168" style="margin:5px;" alt="" src="http://nirlog.com/wp-content/uploads/2006/05/tippingpoint-X505.gif" /><strong><span class="style8">TippingPoint</span></strong></a></p>
<p>They claimed that TippingPoint is the most powerful Intrusion Prevention System (IPS) in the world and it&#8217;s performance is unparalleled. TippingPoint security team is providing the vulnerability analysis for <a href="http://www.sans.org/newsletters/">SANS Newsletter</a> every week. One more interesting thing in TippingPoint solution is the <a href="http://www.tippingpoint.com/products_dv.html">Digital Vaccine</a> Service that delivers new filters on a weekly or even daily basis for protection against the latest vulnerabilities, exploits, viruses and rogue applications. This means the TippingPoint with Digital Vaccine can protect from many unpatched but known vulnerabilities.</p>
<p><a href="http://www.riverbed.com/"><img height="52" border="0" width="150" style="margin:5px;" alt="" src="http://nirlog.com/wp-content/uploads/2006/05/riverbed_1U.jpg" /><strong>Riverbed</strong></a></p>
<p>They make your WAN perform like a LAN. The <a href="http://www.riverbed.com/products/">steelhead appliances</a> provide wide-area data service (WDS). Basically, by deploying this product in different branch offices you can access the resources in other branches much more efficiently. They achieve this by acceleration of all TCP applications, packet caching and compression. They demonstrated us a file transfer with and without the steelhead. In a 1Mbps line it took 53 sec to transfer a 10MB file and it took 2.5 sec with steelhead. Quite impressive.</p>
<p><a href="http://www.radware.com/"><img height="44" border="0" width="150" style="margin:5px;" alt="" src="http://nirlog.com/wp-content/uploads/2006/05/radware_small.jpg" /><strong>radware</strong></a></p>
<p>Radware provides a wide range of <a href="http://www.radware.com/content/products/default.asp">products</a> for managed service solutions, application access solutions, application security solutions and application front end solutions. Today they mainly presented the APSolute Application Front-End (AFE) Solutions with <a href="http://www.radware.com/content/products/appdirector/default.asp">AppDirector</a> and <a href="http://www.radware.com/content/products/appxcel/default.asp">AppXcel</a>. The combination of these two products enable application availability and continuity, accelerated application performance, guaranteed service levels, application security, IT server infrastructure scalability and consolidation, all in one integrated solution.</p>
<p><a href="http://www.allot.com/"><img height="84" border="0" width="168" style="margin:5px;" alt="" src="http://nirlog.com/wp-content/uploads/2006/05/netenforcer.jpg" /><strong>Allot</strong></a></p>
<p>They had the most interesting products and demo. <a href="http://www.allot.com/pages/products_index.asp?intGlobalId=2">NetEnforcer</a> and <a href="http://www.allot.com/pages/products_index.asp?intGlobalId=16">NetXplorer</a> can <span id="spnContent">thoroughly inspect, monitor and control traffic and bandwidth usage on broadband networks, with very detailed reporting and analysis. This is a traffic management solutions for carriers and service providers with total visibility and robust control of both traffic and subscribers:</span></p>
<p><strong>Traffic Control:</strong></p>
<ul>
<li>Control P2P applications</li>
<li>Achieve intelligent network visibility</li>
<li>Guarantee unsurpassed Quality of Experience</li>
<li>Mitigate Security threats</li>
</ul>
<p><strong>Subscriber Control:</strong></p>
<ul>
<li>Deploy new application-based services</li>
<li>Track behavior and trends</li>
<li>Deliver innovative billing models</li>
<li>Enable self-provisioning capabilities</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nirlog.com/2006/05/15/workplace-it-security-communications-solutions-for-todays-business/feed/</wfw:commentRss>
		<slash:comments>-5</slash:comments>
		</item>
		<item>
		<title>Astaro Security Gateway: Integrated Security Solution</title>
		<link>http://nirlog.com/2006/03/09/astaro-security-gateway-integrated-security-solution/</link>
		<comments>http://nirlog.com/2006/03/09/astaro-security-gateway-integrated-security-solution/#comments</comments>
		<pubDate>Thu, 09 Mar 2006 09:17:46 +0000</pubDate>
		<dc:creator>Niranjan Kunwar</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://nirlog.com/2006/03/09/astaro-security-gateway-integrated-security-solution/</guid>
		<description><![CDATA[One of our customer was interested in a security solution that was tightly integrated,  easy to manage and cost effective. After researching for a while I found that Astaro Security Gateway software (formerly Astaro Security Linux) was one of the best choices available in the market. The features were so appealing that I did [...]]]></description>
			<content:encoded><![CDATA[<p>One of our customer was interested in a security solution that was tightly integrated,  easy to manage and cost effective. After researching for a while I found that <a href="http://www.astaro.com/firewall_network_security/security_facts">Astaro Security Gateway software</a> (formerly Astaro Security Linux) was one of the best choices available in the market. The features were so appealing that I did a 30 day evaluation and this is what I found.</p>
<p><img height="279" style="margin:5px;" width="480" alt="" src="http://nirlog.com/wp-content/uploads/2006/03/webadmin.gif" /></p>
<p><span id="more-84"></span></p>
<p><strong>Installation</strong></p>
<p>A fully functional 30 days evaluation version (iso image) can be downloaded from the <a href="https://my.astaro.com/download/">Download Site</a> (requires registration). You can burn the CD and installation takes less than 20 minutes. Following is the recommended hardware by Astaro:</p>
<ul>
<li>minimum Pentium II or compatible CPU<br />256 MB RAM <br />8 GB SCSI/IDE HD <br />bootable CDROM SCSI/IDE <br />3 PCI-NICs (Internet, Local Net, Demilitarized Zone) (for testing, 1 is enough)</li>
</ul>
<p>Support, Documents, Downloads and other useful stuffs are available in <a href="https://my.astaro.com/">MyAstaro portal</a>. You can login with the registered email address and the password that was sent to you by Astaro. A searchable <a href="http://www.astaro.com/kb/">knowledgebase</a> with useful infromation  is also available (doesn&#8217;t require login).</p>
<p><strong>Features Review</strong></p>
<p><strong>Firewall:</strong> Excellent, similar to other high end firewalls like Netscreen or Cisco PIX with both stateful packet inspection and application-level deep packet filtering. Supports multiple interface and HA, setting up DMZ is very easy. Other good firewall features are; transparent mode, traffic shaping, QoS and detailed reporting.</p>
<p><strong>VPN:</strong> PPPT is easy to setup and didn&#8217;t encounter any problem.  IPSec; both Road Warrier and Site to Site vpn work smoothly and do have rich and confusing choice of Encryption algorithms, Authentication methods and IPSec protoclols.</p>
<p><strong>Intrusion Protection:</strong> Based on popular open source software <a href="http://www.snort.org/">Snort</a>. It is a signature based system which detects most of the popular attacks. The bad point about this and actually any Intrusion Protection System is that they produce a lot of false positives. </p>
<p><strong>Proxies:</strong> SMTP, HTTP, DNS, POP3, IDENT.  Actively tested the SMTP and HTTP proxies only. I think both of them are quite good. SMTP proxy is capable of doing attachment filtering but one limitation I found is that, we cannot customize the concurrent smtp connection. It should be set to either 20 or unlimited.</p>
<p><strong>Email/HTTP Anti-Virus:</strong> Anti-virus works together with proxy server. It is using <a href="http://www.kaspersky.com/">Kaspersky</a> anti-virus engine which is quite popular with Linux/Unix platform. Infected Emails can be quarantine or deleted and can be released from the server if necessary.</p>
<p><strong>Anti-Spam:</strong> It is using <a href="http://spamassassin.apache.org/">SpamAssassin</a> anti-spam engine. The score can be adjusted and it allows to set 2 levels of threshold. For example we can quarantine when the score is 5 and delete when the score reaches 10 or 15. Supports whitelist and blacklist. One good feature is the daily SPAM Digest it sends to the users. So, if the users find some legitimate emails quarantined we can immediately release them.</p>
<p><strong>HTTP Content Filtering:</strong> Uses signature to categorize the web sites and can block them based on category, users custom domain or keywords. Also supports blacklist and whitelist. <script type="text/javascript"><!--
D(["mb","<br />\n<br />\nLogging/Reporting: Logging is very detail and well categorized. Has a\nvery good feature called Live Log, which can be browsed from the web\nfor troubleshooting. Reporting is also very good, you can see the\nsample report below.<br />\n<br />\nUpdates: Anti-Virus Pattern, Intrusion Protection, Content Filtering,\nand the OS updates are done automatically according to the schedule we\nset up.<br />\n<br />\nBackup: Backup and recovery is very easy in case of failure. Setup\ntakes around 20mins and restore 5 mins. So, if we have the hardware,\nsoftware and a backup file it can be restored in half an hour.<br />\n<br />\nOverall I think this is an excellent product that has got most of the\nsecurity features integrated into one box and is worth adding to our\nproduct line.<br />\n<br />\n
<table border\u003d\"0\" cellpadding\u003d\"0\" cellspacing\u003d\"0\">\n  
<tbody>\n    
<tr>\n      
<td>\n      
<table border\u003d\"0\" cellpadding\u003d\"0\" cellspacing\u003d\"0\">\n        
<tbody>\n          
<tr>\n            
<td style\u003d\"vertical-align:top\">Executive Report for\n<a href\u003d\"http://firewall.hkisl.net\" target\u003d\"_blank\" onclick\u003d\"return top.js.OpenExtLink(window,event,this)\">firewall.hkisl.net<\/a> <\/td>\n            
<td style\u003d\"vertical-align:top;text-align:right;font-weight:bold\">Fri,\n22 Apr 2005<\/td>\n          <\/tr>\n        <\/tbody>\n      <\/table>\n      
<table border\u003d\"0\" cellpadding\u003d\"0\" cellspacing\u003d\"0\">\n        
<tbody>\n          
<tr>\n            
<td>\n            
<table border\u003d\"0\" cellpadding\u003d\"4\" cellspacing\u003d\"1\">\n              
<tbody>\n                
<tr>\n                  
<th align\u003d\"left\"> Administration <\/th>\n                  
<th align\u003d\"center\"> Today <\/th>\n                  
<th align\u003d\"center\"> Yesterday <\/th>\n                  
<th align\u003d\"center\"> Last 7 Days <\/th>\n                  
<th align\u003d\"center\"> Last 30 Days <\/th>\n                <\/tr>\n                
<tr>\n                  
<td style\u003d\"font-weight:bold\" valign\u003d\"top\"> WebAdmin logins (success/failed) <\/td>\n                  
<td align\u003d\"center\" valign\u003d\"top\"> <font color\u003d\"#000000\">3<\/font> / <font color\u003d\"#ff4105\">0<\/font> <\/td>\n                  ",1]
);</p>
<p>//--></script> </p>
<p><strong>Logging/Reporting:</strong> Logging is very detail and well categorized. Has a very good feature called Live Log, which can be browsed from the web for troubleshooting.</p>
<p><strong>Updates:</strong> Anti-Virus Pattern, Intrusion Protection, Content Filtering, and the OS updates are done automatically according to the schedule.</p>
<p><strong>Backup:</strong> Backup and recovery is very easy in case of failures. Setup takes around 20mins and restore 5 mins. It also supports HA.</p>
<p>Overall I think this is an excellent product that has got most of the security features.  The ease of management, relatively low cost and impressive features makes it an excellent choice for an integrated security product.</p>
<p>If you don&#8217;t want to install the software and love out-of-the box solution, then they&#8217;ve <a href="http://www.astaro.com/firewall_network_security/astaro_security_gateway">Astaro Security Gateway Appliances</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirlog.com/2006/03/09/astaro-security-gateway-integrated-security-solution/feed/</wfw:commentRss>
		<slash:comments>-3</slash:comments>
		</item>
		<item>
		<title>Secure Remote Access (SSL VPN)</title>
		<link>http://nirlog.com/2006/01/23/secure-remote-access-ssl-vpn/</link>
		<comments>http://nirlog.com/2006/01/23/secure-remote-access-ssl-vpn/#comments</comments>
		<pubDate>Mon, 23 Jan 2006 07:37:17 +0000</pubDate>
		<dc:creator>Niranjan Kunwar</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://nirlog.com/?p=35</guid>
		<description><![CDATA[Last Saturday we had fun in our annual lunch and I presented about secure mobile remote access (SSL VPN). I wanted to let everyone know that there is a better, easier and safer way to connect to the corporate network remotely.
Different sort of remote access are being used today. It&#8217;s a necessity and convenience upon [...]]]></description>
			<content:encoded><![CDATA[<p>Last Saturday we had fun in our annual lunch and I presented about secure mobile remote access (SSL VPN). I wanted to let everyone know that there is a better, easier and safer way to connect to the corporate network remotely.</p>
<p>Different sort of remote access are being used today. It&#8217;s a necessity and convenience upon which businesses are relying. VPN (Virtual Private Network) is a mature technology and many big networks are connected to each other by it. The main technologies being used for VPN today are IPSec (IP Security), PPTP (Point to Point Tunneling Protocol), L2TP (Layer 2 Tunneling Protocol) and SSL (Secure Socket Layer). If we categorize them in terms of their use then the VPNs can be of 2 types.<br />
<span id="more-35"></span><br />
    1. Site to site VPN (one network is connected to another network)<br />
<img src='/wp-upload/site2sitevpn.jpg' alt='site to site vpn' /></p>
<p>
    2. Mobile VPN (A mobile PC/Notebook/PDA is connected to a network)<br />
<img src='/wp-upload/mobilevpn.jpg' alt='mobile vpn' />
</p>
<p>For site to site VPN IPSec is the most popular one. In real life it&#8217;s usually a secure connection between Head office and branch offices. It&#8217;s managed by technical team so, there&#8217;s no direct involvement of non-technical users, it&#8217;s transparent and seamless for them. It&#8217;s proven to be quite effective that way.</p>
<p>As for the mobile VPN, there is a direct and active involvement of the end user, no matter whether they&#8217;re technical or non-technical person. So, this one becomes a challenge in terms of security, productivity and manageability. The main problem with mobile IPSec VPN is that it requires the installation of a client software and configuration which makes it quite difficult for the end users and creates a lot of overhead for technical support.</p>
<p>The SSL VPN on the other hand don&#8217;t require any dedicated client installation. Basically web browser is the client. If the user knows how to browse a web site then it&#8217;s enough. This makes SSL VPN the killer application in mobile secure remote connection. Currently the SSL VPNs are quite expensive compared to IPSec and PPTP but I think they&#8217;ll be able to compete price-wise soon.</p>
<p>Most of the Networking vendors are already in the SSL VPN market. Current market leader is <a href="http://www.aventail.com/">Aventail</a>.  I&#8217;ve had an opportunity to test Aventail and Sonicwall SSL VPN. Aventail has solved most of the problem that SSL VPN needs to solve and other ssl vpns are still quite far behind the leader. E.g. if you have a web application running in your local network heavily relying on java scripts then you might face some problems with sonicwall ssl vpn (I&#8217;ve heard that other ssl vpns have similar problems) but Aventail seems to work smoothly. Also Aventail has better security policy control and easier management system.</p>
<p>If you want the best ssl vpn solutions then you should definitely choose Aventail but if you need  a cost effective solution then Sonicwall should do the job.</p>
<p><strong>Available SSL VPN solutions:</strong><br />
<a href="http://www.aventail.com"><img src='/wp-upload/aventail.jpg' alt='Aventail' /></a><br />
<a href="http://www.f5.com/products/FirePass/"><img src='/wp-upload/f5.jpg'alt='F5'/> </a><br />
<a href="http://www.juniper.net/products/ssl/"><img src='/wp-upload/juniper.jpg' alt='Juniper' /></a><br />
<a href="http://www.cisco.com/en/US/netsol/ns340/ns394/ns171/ns347/networking_solutions_sub_solution_home.html"><img src='/wp-upload/cisco.jpg' alt='Cisco' /></a><br />
<a href="http://www.sonicwall.com/products/ssl-vpn2000.html"><img src='/wp-upload/sonicwall.jpg' alt='Sonicwall' /></a><br />
<a href="http://www.watchguard.com/products/fb-ssl.asp"><img src='/wp-upload/watchguard.jpg' alt='Watchguard' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nirlog.com/2006/01/23/secure-remote-access-ssl-vpn/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
