<?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>B2 Net Solutions Blog</title>
	<atom:link href="http://blog.b2netsolutions.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.b2netsolutions.com</link>
	<description>superior hosting made simple</description>
	<lastBuildDate>Mon, 11 Jan 2010 20:42:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to quickly bind a range of IPs in Debian based systems</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/how-to-quickly-bind-a-range-of-ips-in-debian-based-systems/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/how-to-quickly-bind-a-range-of-ips-in-debian-based-systems/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 20:29:32 +0000</pubDate>
		<dc:creator>veter</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>

		<guid isPermaLink="false">http://blog.b2netsolutions.com/?p=246</guid>
		<description><![CDATA[How to bind a range of IPs in Debian using bash scripting:

Lets say we want to add the C block of IPs. Its too boring to add all of them by hands in intefaces file. So&#8230; Lets make this job fast and simple  
Lets create a small bash script. This script will add the [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/how-to-quickly-bind-a-range-of-ips-in-debian-based-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Redmine + MySQL on CentOS 5</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/installing-redmine-on-centos-5/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/installing-redmine-on-centos-5/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 11:16:29 +0000</pubDate>
		<dc:creator>veter</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[Virtual Servers (VPS)]]></category>

		<guid isPermaLink="false">http://blog.b2netsolutions.com/?p=235</guid>
		<description><![CDATA[Small guide for Redmine installation on CentOS 5.3.

Requirements:

Ruby 1.8.7
RubyGems
MySQL 4.1 or higher (recommended)
openssl + openssl-devel
zlib + zlib-devel

Lets install all required packages before compiling ruby.
First of all, lets add rpmforge repository to your default CentOS installation:
rpm &#8211;import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
rpm -ihv http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
Now we will have the latest software that is not updated on official repos.
Installing all required software from [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/installing-redmine-on-centos-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Common iptables tasks</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/common-iptables-tasks/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/common-iptables-tasks/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 18:48:32 +0000</pubDate>
		<dc:creator>veter</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>

		<guid isPermaLink="false">http://blog.b2netsolutions.com/?p=228</guid>
		<description><![CDATA[Just few recent things about iptables.
Blocking IPs with iptables:
iptables -A INPUT -s 192.168.1.100/32 -i eth0 -j REJECT

You may have different network interfaces ‘eth1′, ‘rtl0′, etc…
If you have multiple network interfaces on your system you can use “eth+” instead of putting multiple lines for each of eth0, eth1, eth2, etc.

Port forwarding with iptables:
iptables -t nat -A [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/common-iptables-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup FXP on FTP servers.</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/setup-fxp-on-ftp-servers/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/setup-fxp-on-ftp-servers/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 18:38:00 +0000</pubDate>
		<dc:creator>veter</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[ftp]]></category>

		<guid isPermaLink="false">http://blog.b2netsolutions.com/?p=223</guid>
		<description><![CDATA[Here is a small guide about how to setup most popular FTP servers on linux for site-to-site transfers ( FXP ).

ProFTPD FTP server:
Config file: /etc/proftpd.conf
Add “AllowForeignAddress on” in the Global sections of the configuration file.
vsftpd FTP server:
Config file: /etc/vsftpd/vsftpd.conf
Add lines to config:
pasv_promiscuous=YES
port_promiscuous=YES
wu-ftpd FTP server:
Config file to edit: /etc/ftpaccess
Dirrectives in config:
port-allow {ArbitraryClassName} {HostAddrs}
pasv-allow {ArbitraryClassName} {HostAddrs}
If you [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/setup-fxp-on-ftp-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shoutcast NSV Tutorial</title>
		<link>http://blog.b2netsolutions.com/other/shoutcast-nsv-tutorial/</link>
		<comments>http://blog.b2netsolutions.com/other/shoutcast-nsv-tutorial/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 23:03:36 +0000</pubDate>
		<dc:creator>tyler</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://blog.b2netsolutions.com/?p=208</guid>
		<description><![CDATA[


What Is NSV




 NullSoft Video or NSV is a multimedia container format designed for Internet video streaming.  NSV was developed by the same great people that produced the popular Winamp media player and Shoutcast streaming audio software.
A package of NSV software tools was developed to allow people to encode and stream video content.  There are [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/other/shoutcast-nsv-tutorial/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Plesk 9.x Features</title>
		<link>http://blog.b2netsolutions.com/other/plesk-9x-features/</link>
		<comments>http://blog.b2netsolutions.com/other/plesk-9x-features/#comments</comments>
		<pubDate>Mon, 04 May 2009 19:44:06 +0000</pubDate>
		<dc:creator>tyler</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://blog.b2netsolutions.com/?p=203</guid>
		<description><![CDATA[ 

New features in Plesk 9 compared to previous versions:


1. Offer hundreds of applications via Application Packaging Standard Catalog – Now you can browse web applications packaged in APS Format directly from the Parallels Plesk Panel interface. Also, you can add them to the server Application Vault online without the hassles of manual uploading. These [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/other/plesk-9x-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a domain to Plesk</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/adding-a-domain-to-plesk/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/adding-a-domain-to-plesk/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 19:10:50 +0000</pubDate>
		<dc:creator>tyler</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[Virtual Servers (VPS)]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://blog.b2netsolutions.com/?p=192</guid>
		<description><![CDATA[Log into your Plesk control panel at https://yourdomain.com:8443/

1. Before adding a domain to plesk, you will need to have at least one client account. A client account is used for the maintainer of a set of domains (such as a reseller, or even an organization that wants total control over their entire set of domains.) [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/adding-a-domain-to-plesk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Implement domainkeys into QMail</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/how-to-implement-domainkeys-into-your-qmail-install/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/how-to-implement-domainkeys-into-your-qmail-install/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 18:24:46 +0000</pubDate>
		<dc:creator>tyler</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Virtual Servers (VPS)]]></category>

		<guid isPermaLink="false">http://b2netsolutions.b2blogs.com/?p=158</guid>
		<description><![CDATA[DomainKeys is an e-mail authentication system designed to verify the DNS domain of an e-mail sender and the message integrity. The DomainKeys specification has adopted aspects of Identified Internet Mail to create an enhanced protocol called DomainKeys Identified Mail (DKIM). This merged specification became the basis for an IETF Working Group which guided the specification [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/how-to-implement-domainkeys-into-your-qmail-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing qmail on a Linux server</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/installing-qmail-on-a-linux-server/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/installing-qmail-on-a-linux-server/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 18:19:29 +0000</pubDate>
		<dc:creator>tyler</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Virtual Servers (VPS)]]></category>

		<guid isPermaLink="false">http://b2netsolutions.b2blogs.com/?p=153</guid>
		<description><![CDATA[This blog will explain step by step how to setup and configure qmail (1.03) on a Linux-based server.  Different people setup qmail different ways but, I have found this to be the best and easiest way.  Do not skip any step unless the step is noted optional.

Add users and groups.
PATH=/bin:/sbin:/usr/bin:/usr/sbin
groupadd nofiles -g 81
groupadd qmail -g [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/installing-qmail-on-a-linux-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Setup Plesk email address in Outlook</title>
		<link>http://blog.b2netsolutions.com/dedicated-hosting/setup-plesk-email-address-in-outlook/</link>
		<comments>http://blog.b2netsolutions.com/dedicated-hosting/setup-plesk-email-address-in-outlook/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 17:03:21 +0000</pubDate>
		<dc:creator>tyler</dc:creator>
				<category><![CDATA[Dedicated Hosting]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[plesk]]></category>

		<guid isPermaLink="false">http://b2netsolutions.b2blogs.com/?p=139</guid>
		<description><![CDATA[How to setup a Plesk email address in Outlook
 

Log in to your Plesk Control Panel using the details you were provided with.  Your plesk URL will be https://yourdomain.com:8443 unless otherwise told.


Once you&#8217;re logged in, click on your domain name.


Click the Mail icon   


Click the Add New Mail Name icon


Enter the account name and [...]]]></description>
		<wfw:commentRss>http://blog.b2netsolutions.com/dedicated-hosting/setup-plesk-email-address-in-outlook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
