<?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>Web Server Hosting Knowledge base &#187; UK VPS Hosting</title>
	<atom:link href="http://www.bodhost.com/web-hosting/category/uk-vps-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bodhost.com/web-hosting</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 04:31:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup</title>
		<link>http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/</link>
		<comments>http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/#comments</comments>
		<pubDate>Sat, 24 May 2008 22:42:21 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Dedicated Server Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Dedicated Web Server Hosting]]></category>
		<category><![CDATA[LAMP Cluster Server]]></category>
		<category><![CDATA[load balancing dedicated servers]]></category>
		<category><![CDATA[Round-robin Load-balancing Server]]></category>

		<guid isPermaLink="false">http://www.bodhost.com/web-hosting/?p=923</guid>
		<description><![CDATA[Load-balancing dedicated server Hosting solution and cheap pricing are two important concepts of a budget-corporate client. LAMP ( Linux, Apache, MySQL, and PHP/Perl/Python ) Load-balancing is a solution which can help moving database web server to secondary server. LAMP is not the same as standard cluster setup. Also, it does not include high-availability features such [...]]]></description>
			<content:encoded><![CDATA[<p>Load-balancing <a href="http://www.bodhost.com/"><span style="color: #000000;">dedicated server Hosting</span></a> solution and cheap pricing are two important concepts of a budget-corporate client. LAMP ( Linux, Apache, MySQL, and PHP/Perl/Python ) Load-balancing is a solution which can help moving database web server to secondary server. LAMP is not the same as standard cluster setup. Also, it does not include high-availability features such as fail-over. It shared load and distrbiutes to another server which acts as secondary server which is known to be more cost effective.</p>
<p>Applications and softwares required to setup LAMP clusters are packaged along with linux distributions. Following is an example where two servers run DNS which is the primary server and backup. This is ditributes between 3 web servers and 2 database servers.</p>
<p>The initial stage includes round-robin where DNS is a load-balancing solution which serves web requests for a hostname from different dedicated web servers. In this case, each web server has it&#8217;s own Public IP address.</p>
<p>Following is an example where the domain assignd the same hostname to each of three dedicated web servers but the IP addresses are completely different :</p>
<p>;<br />
; Domain database for foo.com<br />
;<br />
domain.com.                IN      SOA     ns1.domain.com. hostmaster.domain.com. (<br />
2006032801 ; serial<br />
10800 ; refresh<br />
3600 ; retry<br />
86400 ; expire<br />
86400 ; default_ttl<br />
)<br />
;<br />
; Name servers<br />
;<br />
domain.com.                IN      NS      ns1.domain.com.<br />
domain.com.                IN      NS      ns2.domain.com.<br />
;<br />
; Web servers<br />
;<br />
www                     IN  A  10.10.10.11<br />
www                     IN  A  10.10.10.12<br />
www                     IN  A  10.10.10.13</p>
<p>In DNS Server received requests from domain.com, one IP address will return for the first time, then a different IP address for the next request. In this case, Web server traffic is distributed among 3 web servers. However, due to DNS cache, resources may vary. This is just an solution to minimize load-balancing setup cost.</p>
<p>Web Server Configurations that is used in a cluster is the same as Apache Web Server Configuration with only one statement that content is the same with sycnhronization. Many use the option which is known as &#8220;rsync&#8221;.</p>
<p>We suggest you also create a new user account on each dedicated web server and it needs to have write permissions for Web content directory on each web server. Also, create SSH keys for the account and distribue the public keys to /home/syncer/.ssh directory on other 2 web servers. It also allows login without password to the user account and update data at each intervals.</p>
<p>The following rsync updates web content :</p>
<p>#!/bin/bash<br />
rsync -r -a -v -e &#8220;ssh -l syncer&#8221; &#8211;delete /var/www/ webtwo:/var/www/<br />
rsync -r -a -v -e &#8220;ssh -l syncer&#8221; &#8211;delete /var/www/ webthree:/var/www/</p>
<p>When a LAMP Cluster is setup, cookies needs to be checked as Apache stored cookies in /tmp directory. In case, a visitor views a session on Web Servers and if HTTP requests are managed by a different web server, the cookie won&#8217;t exist and it won&#8217;t function as required. Solution to this is shared cookie directory on Web Servers and should be done before setting up LAMP Clusters.</p>
<p>Another requirement of the setup is to send the data to the database master server and should be distributed between master and slave server.</p>
<p>Now, if we focus on Database servers,  MySQL has a feature to maintain database on different servers. It is known as &#8220;log replay&#8221; which means a log is created on the master server which is read by a slave server and then applied to the database.</p>
<p>In this example, we will assign 2 database servers, one is Database Server 1 and Database Server 2.</p>
<p>In order to setup Master database server, you will need to create a replication account which is the user ID in MySQL which is utilized by slave servers which read the logs.</p>
<p>Following is an example :</p>
<p>GRANT REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO copyslave@&#8221;10.10.10.0/255.255.255.0&#8243; IDENTIFIED BY &#8216;copypass&#8217;;</p>
<p>You can also edit MySQL configuration which is located in  /etc/my.cnf and then add the following :</p>
<p># Replication Master Server (default)<br />
# binary logging is required for replication<br />
log-bin ( binary log file &#8211; required for applications )</p>
<p># required unique id<br />
server-id = 1 ( Master Server )</p>
<p>You can view new binary log file in MySQL directory with $HOSTNAME-bin.001. Here, MySQL will create new log files. In order to setup Slave Server, edit /etc/my.cnf and add the following :</p>
<p># required unique id<br />
server-id = 2<br />
#<br />
# The replication master for this slave &#8211; required<br />
# (Master Database Web Server IP)<br />
master-host =   10.1.1.21<br />
#<br />
# Slave Username<br />
# to the master &#8211; required<br />
master-user     =   copy</p>
<p># Slave Password<br />
# the master &#8211; required<br />
master-password =   copypass</p>
<p># Lost Connection Check<br />
master-connect-retry = 15</p>
<p># binary logs<br />
log-bin</p>
<p>Restart MySQL, slave server will connect to the master server and begin the replication process. At initial stage, it will create master.info file with all settings in the default directory which is /var/lib/mysql</p>
<p>In order to check if the replication is working, log in to the MySQL monitor and run show master status and then show slave status. There you need to check Slave_IO_Running and Slave_MySQL_Running. If both are Yes, then the replication process is working.</p>
<p>In case, the database web server loosed network connectivity, you can stop MySQL on the master as well as slave server, then dump master database and reload the database on the slave server and then start MySQL on master and slave server.</p>
<p>If there are any issues with the master database server, the slave database server can be configured as master database server by simply updating the IP address and MySQL configuration file. It is possible to easily setup LAMP cluster on <a href="http://www.bodhost.com"><span style="color: #000000;">dedicated web server hosting</span></a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Del.icio.us" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To digg" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup&amp;u=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To FURL" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To reddit" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup&amp;url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;version=0.7" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Feed Me Links" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Technorati" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;t=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Yahoo My Web" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;h=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Newsvine" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup&amp;description=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Ma.gnolia" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Stumble Upon" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Google Bookmarks" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Squidoo" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Blogmarks" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Bloglines" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;T=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Propeller" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Live-MSN" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup&amp;url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To SlashDot" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;t=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To FaceBook" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Mixx" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup&amp;c=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To MySpace" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/&amp;title=Linux+%26%238211%3B+Apache+%26%238211%3B+MySQL+%26%238211%3B+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup&amp;srcURL=http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Google Buzz" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Social Bookmarking Reloaded" alt="Add 'Linux &#8211; Apache &#8211; MySQL &#8211; PHP (LAMP) Load-balancing Dedicated Web Cluster Server Setup' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Linux+%E2%80%93+Apache+%E2%80%93+MySQL+%E2%80%93+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup+http%3A%2F%2Ftinyurl.com%2F27plkw7" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Linux+%E2%80%93+Apache+%E2%80%93+MySQL+%E2%80%93+PHP+%28LAMP%29+Load-balancing+Dedicated+Web+Cluster+Server+Setup+http%3A%2F%2Ftinyurl.com%2F27plkw7" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/load-balancing-lamp-dedicated-web-linux-apache-mysql-and-phpperlpython-cluster-server-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dedicated Server Hosting and Types</title>
		<link>http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/</link>
		<comments>http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 00:31:10 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Dedicated Server Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[windows vps hosting]]></category>
		<category><![CDATA[Bandwidth Dedicated Server Hosting]]></category>
		<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[load balancing dedicated servers]]></category>
		<category><![CDATA[Server Mirroring Dedicated Server Hosting]]></category>
		<category><![CDATA[Types of Dedicated Servers]]></category>

		<guid isPermaLink="false">http://www.bodhost.com/web-hosting/?p=849</guid>
		<description><![CDATA[Dedicated Server Hosting There are many types of dedicated server hosting packages and as per client&#8217;s requirements, each dedicated server should be setup accordingly. 1) Basic Dedicated Server Hosting If a client has outgrown from a shared / reseller / vps hosting account, he eventually upgrades to a dedicated server with his basic requirements. Client&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<h1>Dedicated Server Hosting</h1>
<p>There are many types of <a href="http://www.bodhost.com/dedicated-server-hosting.shtml"><span style="color: #000000;">dedicated server hosting</span></a> packages and as per client&#8217;s requirements, each dedicated server should be setup accordingly.</p>
<p>1) <strong>Basic Dedicated Server Hosting</strong></p>
<p>If a client has outgrown from a shared / reseller / vps hosting account, he eventually upgrades to a dedicated server with his basic requirements. Client&#8217;s do not require much RAM, Hard Disk and basic Operating System installed on the dedicated server hosting package. Their main aim is to improve the website response time.</p>
<p>2) <strong>High-end Dedicated Server Hosting</strong></p>
<p>This is probably the next stage of a basic <a href="http://www.bodhost.com/dedicated-server-hosting.shtml"><span style="color: #000000;">dedicated server hosting</span></a> package where a client is looking for more performance of the server as he has understood that his requirements are on a rise now which is then followed by a Quad Core Configuration. However, different client&#8217;s have different requirements and setup of the dedicated servers as per their selection is important. Infact, at times there are many pre-requisites that a web server hosting company should take care of.</p>
<p>3) <strong>Bandwidth Dedicated Server Hosting</strong></p>
<p>If a client needs to run live video streaming website such as you-tube. He will not only need a high-end server configuration, but also good amount bandwidth which ranges from basic standard metered bandwidth per month to unmetered bandwidth of 100Mbps or 1Gbps Unmetered Bandwidth. The requirement of Data Transfer is high on these kind of websites and it should be able to download or upload on the server as fast as possible.</p>
<p>4) <strong>Application Dedicated Server Hosting</strong></p>
<p><a href="http://www.bodhost.com/dedicated-server-hosting.shtml"><span style="color: #000000;">Dedicated Server Hosting</span></a> packages that are utilized to host Applications are known as Application Dedicated Web Servers. Client&#8217;s host all kinds of legal applications such as live chat softwares, Flash tutorials, Media file installations and many more.</p>
<p>5) <strong>Database Dedicated Server Hosting</strong></p>
<p>Client&#8217;s who run Databases such as MySQL or MS SQL on a dedicated server are known as Database Dedicated Server Hosting. These require more of storage space and higher-end server configurations in order to completely manage dedicated servers.</p>
<p>6) <strong><a href="http://www.bodhost.com/dedicated-server-hosting.shtml"><span style="color: #000000;">Server Mirroring Dedicated Server Hosting</span></a></strong></p>
<p>Many client&#8217;s require their data mirrored to another server. This is because they do not like to loose any data at any point of time. Servers are synchronized in order to transfer data from one server to the another. RAID Configurations are setup on the same theme as dedicated Server mirroring. The only main difference is that RAID mirrors / strips on Hard Disks and Server Mirroring is Server concept.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Dedicated Server Hosting and Types' To Del.icio.us" alt="Add 'Dedicated Server Hosting and Types' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Dedicated Server Hosting and Types' To digg" alt="Add 'Dedicated Server Hosting and Types' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Dedicated+Server+Hosting+and+Types&amp;u=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/" title="Add 'Dedicated Server Hosting and Types' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Dedicated Server Hosting and Types' To FURL" alt="Add 'Dedicated Server Hosting and Types' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Dedicated Server Hosting and Types' To reddit" alt="Add 'Dedicated Server Hosting and Types' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Dedicated+Server+Hosting+and+Types&amp;url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;version=0.7" title="Add 'Dedicated Server Hosting and Types' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Dedicated Server Hosting and Types' To Feed Me Links" alt="Add 'Dedicated Server Hosting and Types' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/" title="Add 'Dedicated Server Hosting and Types' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Dedicated Server Hosting and Types' To Technorati" alt="Add 'Dedicated Server Hosting and Types' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;t=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Dedicated Server Hosting and Types' To Yahoo My Web" alt="Add 'Dedicated Server Hosting and Types' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;h=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Dedicated Server Hosting and Types' To Newsvine" alt="Add 'Dedicated Server Hosting and Types' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types&amp;description=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Dedicated Server Hosting and Types' To Ma.gnolia" alt="Add 'Dedicated Server Hosting and Types' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Dedicated Server Hosting and Types' To Stumble Upon" alt="Add 'Dedicated Server Hosting and Types' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Dedicated Server Hosting and Types' To Google Bookmarks" alt="Add 'Dedicated Server Hosting and Types' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/" title="Add 'Dedicated Server Hosting and Types' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Dedicated Server Hosting and Types' To Squidoo" alt="Add 'Dedicated Server Hosting and Types' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Dedicated Server Hosting and Types' To Blogmarks" alt="Add 'Dedicated Server Hosting and Types' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/" title="Add 'Dedicated Server Hosting and Types' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Dedicated Server Hosting and Types' To Bloglines" alt="Add 'Dedicated Server Hosting and Types' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;T=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Dedicated Server Hosting and Types' To Propeller" alt="Add 'Dedicated Server Hosting and Types' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Dedicated Server Hosting and Types' To Live-MSN" alt="Add 'Dedicated Server Hosting and Types' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Dedicated+Server+Hosting+and+Types&amp;url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/" title="Add 'Dedicated Server Hosting and Types' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Dedicated Server Hosting and Types' To SlashDot" alt="Add 'Dedicated Server Hosting and Types' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;t=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Dedicated Server Hosting and Types' To FaceBook" alt="Add 'Dedicated Server Hosting and Types' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types" title="Add 'Dedicated Server Hosting and Types' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Dedicated Server Hosting and Types' To Mixx" alt="Add 'Dedicated Server Hosting and Types' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Dedicated+Server+Hosting+and+Types&amp;c=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/" title="Add 'Dedicated Server Hosting and Types' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Dedicated Server Hosting and Types' To MySpace" alt="Add 'Dedicated Server Hosting and Types' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/&amp;title=Dedicated+Server+Hosting+and+Types&amp;srcURL=http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/" title="Add 'Dedicated Server Hosting and Types' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Dedicated Server Hosting and Types' To Google Buzz" alt="Add 'Dedicated Server Hosting and Types' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Dedicated Server Hosting and Types' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Dedicated Server Hosting and Types' To Social Bookmarking Reloaded" alt="Add 'Dedicated Server Hosting and Types' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Dedicated+Server+Hosting+and+Types+http%3A%2F%2Ftinyurl.com%2F3mfzdyk" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Dedicated+Server+Hosting+and+Types+http%3A%2F%2Ftinyurl.com%2F3mfzdyk" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/dedicated-server-hosting-and-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows-based Firewall Installation (Juniper Netscreen 5-GT)</title>
		<link>http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/</link>
		<comments>http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 12:48:03 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Dedicated Website Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Virtual Private Server(s)]]></category>
		<category><![CDATA[Windows VPS Hosting]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/index.php/2007/09/07/windows-based-firewall-installation-juniper-netscreen-5-gt/</guid>
		<description><![CDATA[Windows-based Firewall Installation (Juniper Netscreen 5-GT) Bodhost.com provides windows-based firewall protection with servers in tie-up with Juniper Networks which are known for their security services. We offer firewall which are not only cost-effective but provide the best service when it comes to security. They are all-in-one security firewall provider which include IPs / Anti-viruses / [...]]]></description>
			<content:encoded><![CDATA[<h1><strong><a href="http://www.bodhost.com/dedicated-server-hosting.shtml">Windows-based Firewall</a> Installation (Juniper Netscreen 5-GT)<br />
</strong></h1>
<p>Bodhost.com provides windows-based firewall protection with servers in tie-up with Juniper Networks which are known for their security services. We offer firewall which are not only cost-effective but provide the best service when it comes to security.</p>
<p>They are all-in-one security firewall provider which include IPs / Anti-viruses / Anti-spams and network filtering. We also provide regular updates for anti-viruses to tackle day-to-day scenario.</p>
<p>Juniper Netsceen 5GT Ethernet has 5 ethernet interfaces which can be assigned to different configurations.</p>
<p>Bodhost.com also provide Cisco firewall protections which will be mentioned in our next web hosting knowledgebase article.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Del.icio.us" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To digg" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29&amp;u=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To FURL" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To reddit" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29&amp;url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;version=0.7" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Feed Me Links" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Technorati" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;t=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Yahoo My Web" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;h=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Newsvine" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29&amp;description=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Ma.gnolia" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Stumble Upon" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Google Bookmarks" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Squidoo" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Blogmarks" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Bloglines" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;T=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Propeller" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Live-MSN" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29&amp;url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To SlashDot" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;t=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To FaceBook" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Mixx" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29&amp;c=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To MySpace" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/&amp;title=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29&amp;srcURL=http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Google Buzz" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Social Bookmarking Reloaded" alt="Add 'Windows-based Firewall Installation (Juniper Netscreen 5-GT)' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29+http%3A%2F%2Ftinyurl.com%2F5w5g9ur" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Windows-based+Firewall+Installation+%28Juniper+Netscreen+5-GT%29+http%3A%2F%2Ftinyurl.com%2F5w5g9ur" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/windows-based-firewall-installation-juniper-netscreen-5-gt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)</title>
		<link>http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/</link>
		<comments>http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 12:32:53 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Dedicated Website Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Virtual Private Server(s)]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/index.php/2007/09/07/bodhostcom-security-issues-apf-firewall/</guid>
		<description><![CDATA[APF Firewall (Advanced Policy Firewall) Linux-based Firewall (Netfilter / IPtables) Firewalls are known to secure networks to a major extent. Bodhost.com has always aimed to provide better security to all our customers. Our support team works day and night to provide even better service in security of all our clients. Advanced Policy Firewall is a [...]]]></description>
			<content:encoded><![CDATA[<p>APF Firewall (<strong>Advanced Policy Firewall)</strong></p>
<p><a href="http://www.bodhost.com/dedicated-server-hosting.shtml">Linux-based Firewall</a> (Netfilter / IPtables)<strong><br />
</strong></p>
<p>Firewalls are known to secure networks to a major extent. Bodhost.com has always aimed to provide better security to all our customers. Our support team works day and night to provide even better service in security of all our clients.</p>
<p><strong>Advanced Policy Firewall </strong>is a linux-based firewall which aims to fulfil today&#8217;s needs to security. It is provided in the form of IPtables or netfilter. &#8216;apf&#8217; is a common command used which provides stats and information to us.</p>
<p>It normally follows the following rule :</p>
<p>> Static rule based policies &#8211; Traffic management of incoming and outgoing connections<br />
> Connection based stateful policies &#8211; Known Connections will only be allowed<br />
> Sanity based policies &#8211; Management of differenct traffic</p>
<p>Some of the features of APF are as follows -</p>
<p>> Configuration file (detailed)<br />
> Inbound and Outgoing filters<br />
> Known Connection / application filters<br />
> Rule downloads<br />
> Reactive address blocking (RAB)<br />
> feature test in debugging mode<br />
> speeding connection features<br />
> Individual network connections<br />
> global tcp/udp port / icmp filters<br />
> Rate of packet flows<br />
> network rule configurations<br />
> network / IP bans<br />
> Verification of Routing<br />
> Attack filters<br />
> Traffic detection<br />
> Easy Configuration<br />
> p2p application filters<br />
> network stats<br />
> Kernel Configurations with firewall<br />
> Network limit set</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Del.icio.us" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To digg" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29&amp;u=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To FURL" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To reddit" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29&amp;url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;version=0.7" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Feed Me Links" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Technorati" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;t=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Yahoo My Web" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;h=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Newsvine" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29&amp;description=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Ma.gnolia" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Stumble Upon" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Google Bookmarks" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Squidoo" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Blogmarks" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Bloglines" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;T=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Propeller" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Live-MSN" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29&amp;url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To SlashDot" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;t=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To FaceBook" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Mixx" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29&amp;c=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To MySpace" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/&amp;title=Bodhost.com+Security+Issues+%26%238211%3B+Linux+%26%238211%3B+APF+Firewall+%28IP-Tables+%2F+Netfilter%29&amp;srcURL=http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Google Buzz" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Social Bookmarking Reloaded" alt="Add 'Bodhost.com Security Issues &#8211; Linux &#8211; APF Firewall (IP-Tables / Netfilter)' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Bodhost.com+Security+Issues+%E2%80%93+Linux+%E2%80%93+APF+Firewall+%28IP-Tables+%2F+Netfilter%29+http%3A%2F%2Ftinyurl.com%2F43vzznr" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Bodhost.com+Security+Issues+%E2%80%93+Linux+%E2%80%93+APF+Firewall+%28IP-Tables+%2F+Netfilter%29+http%3A%2F%2Ftinyurl.com%2F43vzznr" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/bodhostcom-security-issues-apf-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP suhosin</title>
		<link>http://www.bodhost.com/web-hosting/php-suhosin/</link>
		<comments>http://www.bodhost.com/web-hosting/php-suhosin/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 13:58:00 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Dedicated Website Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/index.php/2007/08/13/php-suhosin/</guid>
		<description><![CDATA[It is php installation for securing server and users. It intends to use advanced protection system. It intends to have two parts &#8211; a) The first one includes small patch which includes some protection in against vulnerabilities. b) This is known to be a powerful PHP extention for high-level security. Social Bookmarking Tweet This Post]]></description>
			<content:encoded><![CDATA[<p>It is php installation for securing server and users. It intends to use advanced protection system. It intends to have two parts &#8211;   a) The first one includes small patch which includes some protection in against vulnerabilities. b) This is known to be a powerful PHP extention for high-level security.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'PHP suhosin' To Del.icio.us" alt="Add 'PHP suhosin' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'PHP suhosin' To digg" alt="Add 'PHP suhosin' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=PHP+suhosin&amp;u=http://www.bodhost.com/web-hosting/php-suhosin/" title="Add 'PHP suhosin' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'PHP suhosin' To FURL" alt="Add 'PHP suhosin' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'PHP suhosin' To reddit" alt="Add 'PHP suhosin' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=PHP+suhosin&amp;url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;version=0.7" title="Add 'PHP suhosin' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'PHP suhosin' To Feed Me Links" alt="Add 'PHP suhosin' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/php-suhosin/" title="Add 'PHP suhosin' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'PHP suhosin' To Technorati" alt="Add 'PHP suhosin' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/php-suhosin/&amp;t=PHP+suhosin" title="Add 'PHP suhosin' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'PHP suhosin' To Yahoo My Web" alt="Add 'PHP suhosin' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/php-suhosin/&amp;h=PHP+suhosin" title="Add 'PHP suhosin' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'PHP suhosin' To Newsvine" alt="Add 'PHP suhosin' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin&amp;description=PHP+suhosin" title="Add 'PHP suhosin' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'PHP suhosin' To Ma.gnolia" alt="Add 'PHP suhosin' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'PHP suhosin' To Stumble Upon" alt="Add 'PHP suhosin' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'PHP suhosin' To Google Bookmarks" alt="Add 'PHP suhosin' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/php-suhosin/" title="Add 'PHP suhosin' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'PHP suhosin' To Squidoo" alt="Add 'PHP suhosin' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'PHP suhosin' To Blogmarks" alt="Add 'PHP suhosin' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/php-suhosin/" title="Add 'PHP suhosin' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'PHP suhosin' To Bloglines" alt="Add 'PHP suhosin' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/php-suhosin/&amp;T=PHP+suhosin" title="Add 'PHP suhosin' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'PHP suhosin' To Propeller" alt="Add 'PHP suhosin' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'PHP suhosin' To Live-MSN" alt="Add 'PHP suhosin' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=PHP+suhosin&amp;url=http://www.bodhost.com/web-hosting/php-suhosin/" title="Add 'PHP suhosin' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'PHP suhosin' To SlashDot" alt="Add 'PHP suhosin' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/php-suhosin/&amp;t=PHP+suhosin" title="Add 'PHP suhosin' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'PHP suhosin' To FaceBook" alt="Add 'PHP suhosin' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin" title="Add 'PHP suhosin' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'PHP suhosin' To Mixx" alt="Add 'PHP suhosin' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=PHP+suhosin&amp;c=http://www.bodhost.com/web-hosting/php-suhosin/" title="Add 'PHP suhosin' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'PHP suhosin' To MySpace" alt="Add 'PHP suhosin' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/php-suhosin/&amp;title=PHP+suhosin&amp;srcURL=http://www.bodhost.com/web-hosting/php-suhosin/" title="Add 'PHP suhosin' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'PHP suhosin' To Google Buzz" alt="Add 'PHP suhosin' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'PHP suhosin' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'PHP suhosin' To Social Bookmarking Reloaded" alt="Add 'PHP suhosin' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=PHP+suhosin+http%3A%2F%2Ftinyurl.com%2F3kvjye4" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=PHP+suhosin+http%3A%2F%2Ftinyurl.com%2F3kvjye4" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/php-suhosin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advantages of Netfilter / IPtables</title>
		<link>http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/</link>
		<comments>http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/#comments</comments>
		<pubDate>Mon, 19 Mar 2007 15:14:45 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Virtual Private Server(s)]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/index.php/2007/03/19/advantages-of-netfilter-iptables/</guid>
		<description><![CDATA[a) Used to check network packets. b) Translation of network address c) IP chain backwards compatibility d) Modifications of rules for packet filters e) Open-Source Social Bookmarking Tweet This Post]]></description>
			<content:encoded><![CDATA[<p>a) Used to check network packets.<br />
b) Translation of network address<br />
c) IP chain backwards compatibility<br />
d) Modifications of rules for packet filters<br />
e) Open-Source</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Advantages of Netfilter / IPtables' To Del.icio.us" alt="Add 'Advantages of Netfilter / IPtables' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Advantages of Netfilter / IPtables' To digg" alt="Add 'Advantages of Netfilter / IPtables' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Advantages+of+Netfilter+%2F+IPtables&amp;u=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/" title="Add 'Advantages of Netfilter / IPtables' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Advantages of Netfilter / IPtables' To FURL" alt="Add 'Advantages of Netfilter / IPtables' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Advantages of Netfilter / IPtables' To reddit" alt="Add 'Advantages of Netfilter / IPtables' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Advantages+of+Netfilter+%2F+IPtables&amp;url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;version=0.7" title="Add 'Advantages of Netfilter / IPtables' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Advantages of Netfilter / IPtables' To Feed Me Links" alt="Add 'Advantages of Netfilter / IPtables' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/" title="Add 'Advantages of Netfilter / IPtables' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Advantages of Netfilter / IPtables' To Technorati" alt="Add 'Advantages of Netfilter / IPtables' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;t=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Advantages of Netfilter / IPtables' To Yahoo My Web" alt="Add 'Advantages of Netfilter / IPtables' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;h=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Advantages of Netfilter / IPtables' To Newsvine" alt="Add 'Advantages of Netfilter / IPtables' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables&amp;description=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Advantages of Netfilter / IPtables' To Ma.gnolia" alt="Add 'Advantages of Netfilter / IPtables' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Advantages of Netfilter / IPtables' To Stumble Upon" alt="Add 'Advantages of Netfilter / IPtables' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Advantages of Netfilter / IPtables' To Google Bookmarks" alt="Add 'Advantages of Netfilter / IPtables' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/" title="Add 'Advantages of Netfilter / IPtables' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Advantages of Netfilter / IPtables' To Squidoo" alt="Add 'Advantages of Netfilter / IPtables' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Advantages of Netfilter / IPtables' To Blogmarks" alt="Add 'Advantages of Netfilter / IPtables' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/" title="Add 'Advantages of Netfilter / IPtables' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Advantages of Netfilter / IPtables' To Bloglines" alt="Add 'Advantages of Netfilter / IPtables' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;T=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Advantages of Netfilter / IPtables' To Propeller" alt="Add 'Advantages of Netfilter / IPtables' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Advantages of Netfilter / IPtables' To Live-MSN" alt="Add 'Advantages of Netfilter / IPtables' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Advantages+of+Netfilter+%2F+IPtables&amp;url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/" title="Add 'Advantages of Netfilter / IPtables' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Advantages of Netfilter / IPtables' To SlashDot" alt="Add 'Advantages of Netfilter / IPtables' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;t=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Advantages of Netfilter / IPtables' To FaceBook" alt="Add 'Advantages of Netfilter / IPtables' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables" title="Add 'Advantages of Netfilter / IPtables' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Advantages of Netfilter / IPtables' To Mixx" alt="Add 'Advantages of Netfilter / IPtables' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Advantages+of+Netfilter+%2F+IPtables&amp;c=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/" title="Add 'Advantages of Netfilter / IPtables' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Advantages of Netfilter / IPtables' To MySpace" alt="Add 'Advantages of Netfilter / IPtables' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/&amp;title=Advantages+of+Netfilter+%2F+IPtables&amp;srcURL=http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/" title="Add 'Advantages of Netfilter / IPtables' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Advantages of Netfilter / IPtables' To Google Buzz" alt="Add 'Advantages of Netfilter / IPtables' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Advantages of Netfilter / IPtables' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Advantages of Netfilter / IPtables' To Social Bookmarking Reloaded" alt="Add 'Advantages of Netfilter / IPtables' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Advantages+of+Netfilter+%2F+IPtables+http%3A%2F%2Ftinyurl.com%2F3pghfqm" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Advantages+of+Netfilter+%2F+IPtables+http%3A%2F%2Ftinyurl.com%2F3pghfqm" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/advantages-of-netfilter-iptables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Setup SSL certificate?</title>
		<link>http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/</link>
		<comments>http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/#comments</comments>
		<pubDate>Tue, 19 Dec 2006 17:19:22 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Cheap Server Hosting]]></category>
		<category><![CDATA[Dedicated Website Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Virtual Private Server(s)]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/index.php/2006/12/19/how-to-setup-ssl-certificate/</guid>
		<description><![CDATA[This will mainly explains you on how to setup SSL on IIS 5.0, making use of Certificate Server 2.0 as Certificate Provider - 1) Web server Certificate request - a)Start Internet Service Manager>Right Click on the websites on which you want to enable SSL>Go on Properties>Directory Security tab>Server Certificate to start Web Server Certificate Wizard. [...]]]></description>
			<content:encoded><![CDATA[<p>This will mainly explains you on how to setup SSL on IIS 5.0, making use of Certificate Server 2.0 as Certificate Provider -</p>
<p>1) Web server Certificate request -<br />
a)Start Internet Service Manager>Right Click on the websites on which you want to<br />
enable <a target="_blank" title="SSL" style="color: #000000; text-decoration: none" href="http://www.bodhost.com/">SSL</a>>Go on Properties>Directory Security tab>Server Certificate to start<br />
Web Server Certificate Wizard.<br />
b) Next>Create a new certificate<br />
c) Next>Name the certificate>Select Server Gated Cryptography<br />
d) Next>Select type of organizational Unit<br />
e) Next>Common name (, if the URL is <a target="_blank" href="https://www.mydomain.com/securedir">https://www.mydomain.com/securedir</a>, then<br />
the common name must be <a target="_blank" href="http://www.mydomain.com/">www.mydomain.com</a>.<br />
f) Next>Type Country, State, City or locality.<br />
g) Next>Select Location and file name.<br />
h) Next twice>Finish</p>
<p>2) Process of Certificate Server Request -<br />
a) CAServerName/CertSrv >Request Certificate<br />
b) Next>Advance request>Next>Submit Certificate request making use of base64<br />
encoded PKCS #10 file/renewal request using a base64 encoded PKCS #7 file.<br />
c) Next>Request file that is saved from Web certificate wizard in Notepad>Past Entire<br />
Text of file>submit>Pending Certificate dialog box arises>If Download asked>Skip<br />
to step 2>Close Browser>Open Certification Authority MMC>Open>expand tree<br />
under the server name>select Pending requests folder.<br />
d) Right-click on the certificate that is submitted>Click All Task>Click Issue>Close<br />
CA MMC.<br />
e) Open a new browser <a target="_blank" title="Windows" style="color: #000000; text-decoration: none" href="http://www.bodhosting.com/windows-shared-hosting.shtml">Windows</a> browse to URL>Check on pending<br />
Certificate>Next>Select earlier Request>Next>DER encoded>Click Download CA<br />
certificate>Save file>Close Browser.</p>
<p>3) Finish processing IIS request and enabling SSL -<br />
a) Internet Information Services MMC> right-click the Web site on which you want to<br />
enable SSL> Properties> Directory Security tab> Server Certificate.<br />
b) Next> Process the pending request> install the certificate.<br />
c) Next>Enter path/file name saved> Next twice> Finish.<br />
d) Web Site tab>Default port is 443>OK>Close Web Site Properties dialog Box.</p>
<p>SSL now can be used on the server. The Url now will be https:// instead of http://.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'How to Setup SSL certificate?' To Del.icio.us" alt="Add 'How to Setup SSL certificate?' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'How to Setup SSL certificate?' To digg" alt="Add 'How to Setup SSL certificate?' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=How+to+Setup+SSL+certificate%3F&amp;u=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/" title="Add 'How to Setup SSL certificate?' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'How to Setup SSL certificate?' To FURL" alt="Add 'How to Setup SSL certificate?' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'How to Setup SSL certificate?' To reddit" alt="Add 'How to Setup SSL certificate?' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=How+to+Setup+SSL+certificate%3F&amp;url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;version=0.7" title="Add 'How to Setup SSL certificate?' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'How to Setup SSL certificate?' To Feed Me Links" alt="Add 'How to Setup SSL certificate?' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/" title="Add 'How to Setup SSL certificate?' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'How to Setup SSL certificate?' To Technorati" alt="Add 'How to Setup SSL certificate?' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;t=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'How to Setup SSL certificate?' To Yahoo My Web" alt="Add 'How to Setup SSL certificate?' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;h=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'How to Setup SSL certificate?' To Newsvine" alt="Add 'How to Setup SSL certificate?' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F&amp;description=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'How to Setup SSL certificate?' To Ma.gnolia" alt="Add 'How to Setup SSL certificate?' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'How to Setup SSL certificate?' To Stumble Upon" alt="Add 'How to Setup SSL certificate?' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'How to Setup SSL certificate?' To Google Bookmarks" alt="Add 'How to Setup SSL certificate?' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/" title="Add 'How to Setup SSL certificate?' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'How to Setup SSL certificate?' To Squidoo" alt="Add 'How to Setup SSL certificate?' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'How to Setup SSL certificate?' To Blogmarks" alt="Add 'How to Setup SSL certificate?' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/" title="Add 'How to Setup SSL certificate?' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'How to Setup SSL certificate?' To Bloglines" alt="Add 'How to Setup SSL certificate?' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;T=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'How to Setup SSL certificate?' To Propeller" alt="Add 'How to Setup SSL certificate?' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'How to Setup SSL certificate?' To Live-MSN" alt="Add 'How to Setup SSL certificate?' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=How+to+Setup+SSL+certificate%3F&amp;url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/" title="Add 'How to Setup SSL certificate?' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'How to Setup SSL certificate?' To SlashDot" alt="Add 'How to Setup SSL certificate?' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;t=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'How to Setup SSL certificate?' To FaceBook" alt="Add 'How to Setup SSL certificate?' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F" title="Add 'How to Setup SSL certificate?' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'How to Setup SSL certificate?' To Mixx" alt="Add 'How to Setup SSL certificate?' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=How+to+Setup+SSL+certificate%3F&amp;c=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/" title="Add 'How to Setup SSL certificate?' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'How to Setup SSL certificate?' To MySpace" alt="Add 'How to Setup SSL certificate?' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/&amp;title=How+to+Setup+SSL+certificate%3F&amp;srcURL=http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/" title="Add 'How to Setup SSL certificate?' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'How to Setup SSL certificate?' To Google Buzz" alt="Add 'How to Setup SSL certificate?' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'How to Setup SSL certificate?' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'How to Setup SSL certificate?' To Social Bookmarking Reloaded" alt="Add 'How to Setup SSL certificate?' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=How+to+Setup+SSL+certificate%3F+http%3A%2F%2Ftinyurl.com%2F6xhmkha" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=How+to+Setup+SSL+certificate%3F+http%3A%2F%2Ftinyurl.com%2F6xhmkha" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/how-to-setup-ssl-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kernel Security</title>
		<link>http://www.bodhost.com/web-hosting/kernel-security-2/</link>
		<comments>http://www.bodhost.com/web-hosting/kernel-security-2/#comments</comments>
		<pubDate>Tue, 19 Dec 2006 13:43:47 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Cheap Server Hosting]]></category>
		<category><![CDATA[Dedicated Website Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Virtual Private Server(s)]]></category>
		<category><![CDATA[cPanel VPS Hosting]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/index.php/2006/12/19/kernel-security-2/</guid>
		<description><![CDATA[Maintaing the kernel Security is one of the important task in Sys.Admin especially against the hackers. So friends following are some of the tips which will help to manage the kernel security through /proc pseudo-filesystem, Quite a few files /proc/sys are directly related to security. The parameter just need to have a flag(boolean value) set. [...]]]></description>
			<content:encoded><![CDATA[<p>Maintaing the kernel Security is one of the important task in Sys.Admin especially against the hackers. So friends following are some of the tips which will help to manage the kernel security through /proc pseudo-filesystem, Quite a few files /proc/sys are directly related to security. The parameter just need to have a flag(boolean value) set.</p>
<p>Enabled if contains a 1 and disables if contains 0 , Many of the options are under /proc/sys/net/ipv4</p>
<p>Such as ..</p>
<p>icmp_echo_ignore_all : Ignore all ICMP ECHO requests ( Ping Request)</p>
<p>ip_forward : Enables or disables the forwarding of IP packets between interfaces depending on the kernel is configured as a host or router.</p>
<p>For example just take a look at this command.</p>
<p>echo &#8220;0&#8243; > /proc/sys/net/ipv4/icmp_echo_ignore_all</p>
<p>The above command will deny all the ping request on the server.</p>
<p>The command sysctl -A will show the kernel configuration parameters set on the server, Basically the command reads the configuation file /etc/sysctl.conf after each reboot.</p>
<p>Caution !! Don&#8217;t try this with other parameters which you are not aware of. Otherwise the results maybe a KERNEL PANIC&#8230;</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Kernel Security' To Del.icio.us" alt="Add 'Kernel Security' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Kernel Security' To digg" alt="Add 'Kernel Security' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Kernel+Security&amp;u=http://www.bodhost.com/web-hosting/kernel-security-2/" title="Add 'Kernel Security' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Kernel Security' To FURL" alt="Add 'Kernel Security' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Kernel Security' To reddit" alt="Add 'Kernel Security' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Kernel+Security&amp;url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;version=0.7" title="Add 'Kernel Security' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Kernel Security' To Feed Me Links" alt="Add 'Kernel Security' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/kernel-security-2/" title="Add 'Kernel Security' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Kernel Security' To Technorati" alt="Add 'Kernel Security' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;t=Kernel+Security" title="Add 'Kernel Security' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Kernel Security' To Yahoo My Web" alt="Add 'Kernel Security' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;h=Kernel+Security" title="Add 'Kernel Security' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Kernel Security' To Newsvine" alt="Add 'Kernel Security' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security&amp;description=Kernel+Security" title="Add 'Kernel Security' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Kernel Security' To Ma.gnolia" alt="Add 'Kernel Security' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Kernel Security' To Stumble Upon" alt="Add 'Kernel Security' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Kernel Security' To Google Bookmarks" alt="Add 'Kernel Security' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/kernel-security-2/" title="Add 'Kernel Security' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Kernel Security' To Squidoo" alt="Add 'Kernel Security' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Kernel Security' To Blogmarks" alt="Add 'Kernel Security' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/kernel-security-2/" title="Add 'Kernel Security' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Kernel Security' To Bloglines" alt="Add 'Kernel Security' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;T=Kernel+Security" title="Add 'Kernel Security' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Kernel Security' To Propeller" alt="Add 'Kernel Security' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Kernel Security' To Live-MSN" alt="Add 'Kernel Security' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Kernel+Security&amp;url=http://www.bodhost.com/web-hosting/kernel-security-2/" title="Add 'Kernel Security' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Kernel Security' To SlashDot" alt="Add 'Kernel Security' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;t=Kernel+Security" title="Add 'Kernel Security' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Kernel Security' To FaceBook" alt="Add 'Kernel Security' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security" title="Add 'Kernel Security' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Kernel Security' To Mixx" alt="Add 'Kernel Security' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Kernel+Security&amp;c=http://www.bodhost.com/web-hosting/kernel-security-2/" title="Add 'Kernel Security' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Kernel Security' To MySpace" alt="Add 'Kernel Security' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/kernel-security-2/&amp;title=Kernel+Security&amp;srcURL=http://www.bodhost.com/web-hosting/kernel-security-2/" title="Add 'Kernel Security' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Kernel Security' To Google Buzz" alt="Add 'Kernel Security' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Kernel Security' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Kernel Security' To Social Bookmarking Reloaded" alt="Add 'Kernel Security' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Kernel+Security+http%3A%2F%2Ftinyurl.com%2F3lqkq7l" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Kernel+Security+http%3A%2F%2Ftinyurl.com%2F3lqkq7l" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/kernel-security-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kernel Introduced</title>
		<link>http://www.bodhost.com/web-hosting/kernel-introduced/</link>
		<comments>http://www.bodhost.com/web-hosting/kernel-introduced/#comments</comments>
		<pubDate>Tue, 19 Dec 2006 13:07:21 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Cheap Server Hosting]]></category>
		<category><![CDATA[Dedicated Website Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Virtual Private Server(s)]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/index.php/2006/12/19/kernel-introduced/</guid>
		<description><![CDATA[Kernel is the core of operating system; it is the program that controls the basic services that are utilised by user programs; it is this suite of basic services in the form of system calls that make an operating system &#8220;UNIX&#8221;. The kernel is also responsible for: -CPU resource scheduling (with the associated duties of [...]]]></description>
			<content:encoded><![CDATA[<p>Kernel is the core of operating system; it is the program that controls the basic services that are utilised by user programs; it is this suite of basic services in the form of system calls that make an operating system &#8220;UNIX&#8221;.</p>
<p>The kernel is also responsible for:<br />
-CPU resource scheduling (with the associated duties of process management)<br />
-Memory management (including the important implementation of protection)<br />
-Device control (including providing the device-file/device-driver interface)<br />
-Security (at a device, process and user level)<br />
-Accounting services (including CPU usage and disk quotas)<br />
-Inter Process Communication (shared memory, semaphores and message passing)</p>
<p>The Unix kernel acts as a mediator for your programs. First, it does the memory management for all of the running programs (processes), and makes sure that they all get a fair share of the processor&#8217;s cycles. In addition, it provides a nice, fairly portable interface for programs to talk to your hardware.</p>
<p>The kernel is physically a file that is usually located in the /boot directory. Under Linux, this file is called vmlinuz.</p>
<p>bash-2.05a# ls -l /boot/vm*<br />
-rwxr-xr-x 1 root root 3007276 Mar 14 04:10 vmlinux-2.4.18-27.7.x<br />
lrwxrwxrwx 1 root root 21 Mar 28 23:20 vmlinuz -> vmlinuz-2.4.18-27.7.x</p>
<p>You can see in this instance that the &#8220;kernel file&#8221; is actually a link to another file containing the kernel image. The actual kernel size will vary from machine to machine. The reason for this is that the size of the kernel is dependant on what features you have compiled into it, what modifications you&#8217;ve make to the kernel data structures and what (if any) additions you have made to the kernel code.</p>
<p>vmlinuz is referred to as the kernel image. At a physical level, this file consists of a small section of machine code followed by a compressed block. At boot time, the program at the start of the kernel is loaded into memory at which point it uncompresses the rest of the kernel.</p>
<p>An umcompressed kernel is really a giant object file; the product of C and assembler linking &#8211; the kernel is not an &#8220;executable&#8221; file (i.e. you just can&#8217;t type vmlinuz at the prompt to run the kernel). The actual source of the kernel is stored in the /usr/src/ directory; a typical listing may produce:</p>
<p>[bash-2.05a# /usr/src/ ls -l<br />
total 8<br />
lrwxrwxrwx 1 root root 19 Mar 28 23:19 linux-2.4 -> linux-2.4.18-27.7.x<br />
drwxr-xr-x 17 root root 4096 Mar 28 23:19 linux-2.4.18-27.7.x<br />
drwxr-xr-x 7 root root 4096 Mar 28 23:08 redhat</p>
<p>/usr/src/linux is a soft link to /usr/src/ - this means you can store several kernel source trees - however - you MUST change the soft link of /usr/src/linux to the version of the kernel you will be compiling as there are several components of the kernel source that rely on this.</p>
<p>Take note of the /boot/vmlinux* file - this is the uncompressed kernel! Notice the size? [vmlinuz is the .z (or compressed) version of vmlinux plus the decompression code]</p>
<p>Within this directory hierarchy are in excess of 1300 files and directories which consists of around 400 C source code files, 370 C header files, 40 Assembler source files and 46 Makefiles. These, when compiled, produce around 300 object files and libraries.</p>
<p>While this may seem like quite a bit of code, much of it actually isn&#8217;t used in the kernel. Quite a large portion of this is driver code; only drivers that are needed on the system are compiled into the kernel, and then only those that are required at run time (the rest can be placed separately in things called modules).</p>
<p>In the case of Linux, the following steps are performed to boot the kernel:</p>
<p>1) The boot loader program (e.g. lilo or grub) starts by loading the vmlinuz from disk into memory, then starts the code executing.<br />
2) After the kernel image is decompressed, the actual kernel is started. This part of the code was produced from assembler source; it is totally machine specific. Technically at this point the kernel is running. This is the first process (0) and is called swapper. Swapper does some low level checks on the processor, memory and FPU availability, then places the system into protected mode. Paging is enabled.<br />
3) Interrupts are disabled (every one) though the interrupt table is set up for later use. The entire kernel is realigned in memory (post paging) and some of the basic memory management structures are created.<br />
4) At this point, a function called start_kernel is called. start_kernel is physically located in /usr/src/linux-2.4.18-27.7.x/init/main.c and is really the core kernel function &#8211; really the equivalent of the void main(void). main.c itself is virtually the root file for all other source and header files.<br />
5) start_kernel sets up the memory, interrupts and scheduling. In effect, the kernel has now has multi-tasking enabled. The console already has had several messages displayed to it.<br />
6) The kernel command line options are parsed (those passed in by the boot loader) and all embedded device driver modules are initialised.<br />
7) Further memory initialisations occur, socket/networking is started and further bug checks are performed.<br />
8. The final action performed by swapper is the first process creation with fork whereby the init program is launched. Swapper now enters an infinite idle loop.</p>
<p>It is interesting to note that as a linear program, the kernel has finished running! The timer interrupts are now set so that the scheduler can step in and pre-empt the running process. However, sections of the kernel will be periodically executed by other processes.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Kernel Introduced' To Del.icio.us" alt="Add 'Kernel Introduced' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Kernel Introduced' To digg" alt="Add 'Kernel Introduced' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Kernel+Introduced&amp;u=http://www.bodhost.com/web-hosting/kernel-introduced/" title="Add 'Kernel Introduced' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Kernel Introduced' To FURL" alt="Add 'Kernel Introduced' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Kernel Introduced' To reddit" alt="Add 'Kernel Introduced' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Kernel+Introduced&amp;url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;version=0.7" title="Add 'Kernel Introduced' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Kernel Introduced' To Feed Me Links" alt="Add 'Kernel Introduced' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/kernel-introduced/" title="Add 'Kernel Introduced' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Kernel Introduced' To Technorati" alt="Add 'Kernel Introduced' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;t=Kernel+Introduced" title="Add 'Kernel Introduced' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Kernel Introduced' To Yahoo My Web" alt="Add 'Kernel Introduced' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;h=Kernel+Introduced" title="Add 'Kernel Introduced' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Kernel Introduced' To Newsvine" alt="Add 'Kernel Introduced' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced&amp;description=Kernel+Introduced" title="Add 'Kernel Introduced' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Kernel Introduced' To Ma.gnolia" alt="Add 'Kernel Introduced' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Kernel Introduced' To Stumble Upon" alt="Add 'Kernel Introduced' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Kernel Introduced' To Google Bookmarks" alt="Add 'Kernel Introduced' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/kernel-introduced/" title="Add 'Kernel Introduced' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Kernel Introduced' To Squidoo" alt="Add 'Kernel Introduced' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Kernel Introduced' To Blogmarks" alt="Add 'Kernel Introduced' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/kernel-introduced/" title="Add 'Kernel Introduced' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Kernel Introduced' To Bloglines" alt="Add 'Kernel Introduced' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;T=Kernel+Introduced" title="Add 'Kernel Introduced' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Kernel Introduced' To Propeller" alt="Add 'Kernel Introduced' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Kernel Introduced' To Live-MSN" alt="Add 'Kernel Introduced' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Kernel+Introduced&amp;url=http://www.bodhost.com/web-hosting/kernel-introduced/" title="Add 'Kernel Introduced' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Kernel Introduced' To SlashDot" alt="Add 'Kernel Introduced' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;t=Kernel+Introduced" title="Add 'Kernel Introduced' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Kernel Introduced' To FaceBook" alt="Add 'Kernel Introduced' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced" title="Add 'Kernel Introduced' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Kernel Introduced' To Mixx" alt="Add 'Kernel Introduced' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Kernel+Introduced&amp;c=http://www.bodhost.com/web-hosting/kernel-introduced/" title="Add 'Kernel Introduced' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Kernel Introduced' To MySpace" alt="Add 'Kernel Introduced' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/kernel-introduced/&amp;title=Kernel+Introduced&amp;srcURL=http://www.bodhost.com/web-hosting/kernel-introduced/" title="Add 'Kernel Introduced' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Kernel Introduced' To Google Buzz" alt="Add 'Kernel Introduced' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Kernel Introduced' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Kernel Introduced' To Social Bookmarking Reloaded" alt="Add 'Kernel Introduced' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Kernel+Introduced+http%3A%2F%2Ftinyurl.com%2F42k3b9b" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Kernel+Introduced+http%3A%2F%2Ftinyurl.com%2F42k3b9b" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/kernel-introduced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to block a website on your computer</title>
		<link>http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/</link>
		<comments>http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/#comments</comments>
		<pubDate>Tue, 28 Nov 2006 11:24:24 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Cheap Server Hosting]]></category>
		<category><![CDATA[Dedicated Website Hosting]]></category>
		<category><![CDATA[UK VPS Hosting]]></category>
		<category><![CDATA[Virtual Private Server(s)]]></category>
		<category><![CDATA[Managed Dedicated Servers]]></category>

		<guid isPermaLink="false">http://bodhost.com/web-hosting/?p=207</guid>
		<description><![CDATA[Do you want to block some site to be browsed from personal computer which have windows operatiing system. Ok then do this just Go to. C:\WINDOWS\system32\drivers\etc Open a “host” file in notepad. At the bottom of the line, you can see as per below 127.0.0.1 localhost Add the following line at end now 127.0.0.1 www.blocksitename.com [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to block some site to be browsed from personal computer which have windows operatiing system.</p>
<p>Ok then do this just Go to.</p>
<p>C:\WINDOWS\system32\drivers\etc</p>
<p>Open a “host”  file in notepad. At the bottom of the line, you can see as per below<br />
127.0.0.1       localhost</p>
<p>Add the following line at end now<br />
127.0.0.1<br />
www.blocksitename.com    put there the site name to which you want  to block</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'How to block a website on your computer' To Del.icio.us" alt="Add 'How to block a website on your computer' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'How to block a website on your computer' To digg" alt="Add 'How to block a website on your computer' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=How+to+block+a+website+on+your+computer&amp;u=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/" title="Add 'How to block a website on your computer' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'How to block a website on your computer' To FURL" alt="Add 'How to block a website on your computer' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'How to block a website on your computer' To reddit" alt="Add 'How to block a website on your computer' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=How+to+block+a+website+on+your+computer&amp;url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;version=0.7" title="Add 'How to block a website on your computer' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'How to block a website on your computer' To Feed Me Links" alt="Add 'How to block a website on your computer' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/" title="Add 'How to block a website on your computer' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'How to block a website on your computer' To Technorati" alt="Add 'How to block a website on your computer' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;t=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'How to block a website on your computer' To Yahoo My Web" alt="Add 'How to block a website on your computer' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;h=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'How to block a website on your computer' To Newsvine" alt="Add 'How to block a website on your computer' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer&amp;description=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'How to block a website on your computer' To Ma.gnolia" alt="Add 'How to block a website on your computer' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'How to block a website on your computer' To Stumble Upon" alt="Add 'How to block a website on your computer' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'How to block a website on your computer' To Google Bookmarks" alt="Add 'How to block a website on your computer' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/" title="Add 'How to block a website on your computer' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'How to block a website on your computer' To Squidoo" alt="Add 'How to block a website on your computer' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'How to block a website on your computer' To Blogmarks" alt="Add 'How to block a website on your computer' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/" title="Add 'How to block a website on your computer' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'How to block a website on your computer' To Bloglines" alt="Add 'How to block a website on your computer' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;T=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'How to block a website on your computer' To Propeller" alt="Add 'How to block a website on your computer' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'How to block a website on your computer' To Live-MSN" alt="Add 'How to block a website on your computer' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=How+to+block+a+website+on+your+computer&amp;url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/" title="Add 'How to block a website on your computer' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'How to block a website on your computer' To SlashDot" alt="Add 'How to block a website on your computer' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;t=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'How to block a website on your computer' To FaceBook" alt="Add 'How to block a website on your computer' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer" title="Add 'How to block a website on your computer' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'How to block a website on your computer' To Mixx" alt="Add 'How to block a website on your computer' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=How+to+block+a+website+on+your+computer&amp;c=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/" title="Add 'How to block a website on your computer' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'How to block a website on your computer' To MySpace" alt="Add 'How to block a website on your computer' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/&amp;title=How+to+block+a+website+on+your+computer&amp;srcURL=http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/" title="Add 'How to block a website on your computer' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'How to block a website on your computer' To Google Buzz" alt="Add 'How to block a website on your computer' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'How to block a website on your computer' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'How to block a website on your computer' To Social Bookmarking Reloaded" alt="Add 'How to block a website on your computer' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=How+to+block+a+website+on+your+computer+http%3A%2F%2Ftinyurl.com%2F3fx2fl4" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=How+to+block+a+website+on+your+computer+http%3A%2F%2Ftinyurl.com%2F3fx2fl4" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/how-to-block-a-website-on-your-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

