<?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>VPS Network Operation Center &#187; VPS hosting</title>
	<atom:link href="http://vpsnoc.com/blog/tag/vps-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://vpsnoc.com/blog</link>
	<description>Your Number One VPS Host</description>
	<lastBuildDate>Thu, 23 Feb 2012 14:14:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>VPS NOC &#8211; Reverse DNS Panel</title>
		<link>http://vpsnoc.com/blog/vps-noc-reverse-dns-panel/</link>
		<comments>http://vpsnoc.com/blog/vps-noc-reverse-dns-panel/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 17:10:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VPSNOC]]></category>
		<category><![CDATA[reverse dns]]></category>
		<category><![CDATA[VPS hosting]]></category>

		<guid isPermaLink="false">http://vpsnoc.com/blog/?p=103</guid>
		<description><![CDATA[We finished testing our latest project, reverse DNS panel. Since everything worked out great this features is now added on the customer&#8217;s panel at https://vpsnoc.com/clients/rdns.php Now our customers can edit the reverse DNS entries for their IPs at any time. We will continue to add features for our clients based on their feedback and requests. [...]]]></description>
			<content:encoded><![CDATA[<p>We finished testing our latest project, reverse DNS panel. Since everything worked out great this features is now added on the customer&#8217;s panel at <a href="http://vpsnoc.com/clients/rdns.php " target="_blank">https://vpsnoc.com/clients/rdns.php </a></p>
<p>Now our customers can edit the reverse DNS entries for their IPs at any time.</p>
<p>We will continue to add features for our clients based on their feedback and requests.</p>
<p>Soon we will be able to offer IPv6 via tunnel broker and hopefully in two or three months native IPv6.</p>
]]></content:encoded>
			<wfw:commentRss>http://vpsnoc.com/blog/vps-noc-reverse-dns-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup a VPN server on a CentOS VPS instantly</title>
		<link>http://vpsnoc.com/blog/how-to-setup-a-vpn-server-on-a-centos-vps-instantly/</link>
		<comments>http://vpsnoc.com/blog/how-to-setup-a-vpn-server-on-a-centos-vps-instantly/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 00:04:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CentOS VPS]]></category>
		<category><![CDATA[OpenVPN VPS]]></category>
		<category><![CDATA[VPN VPS]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[VPS hosting]]></category>

		<guid isPermaLink="false">http://vpsnoc.com/blog/?p=86</guid>
		<description><![CDATA[We have made a small and dirty bash script which installs and configures OpenVPN on CentOS 5 32bit. The VPN server&#8217;s primary (and only) use is for safe browsing i.e. tunneling all your traffic through your VPS. The script also generates your client configuration file along with the necessary keys for authentication. Requirements 1. CentOS [...]]]></description>
			<content:encoded><![CDATA[<p>We have made a small and dirty bash script which installs and configures <strong>OpenVPN on CentOS</strong> 5 32bit. The VPN server&#8217;s primary (and only) use is for safe browsing i.e. <strong>tunneling all your traffic through your VPS</strong>. The script also generates your client configuration file along with the necessary keys for authentication.</p>
<p><strong> Requirements </strong></p>
<p>1. CentOS 5 32bit minimal OS template</p>
<p>2. TUN/TAP device enabled on your VPS</p>
<p>3. iptables NAT support</p>
<p>You will have to open a ticket to request a TUN/TAP device to be enabled on your VPS. If you&#8217;re not a customer of ours and your host&#8217;s support staff doesn&#8217;t know how to do this, you may tell them to execute the following commands on the hardware node where your VPS is hosted.<br />
<code><br />
vzctl stop YOUR_VEID<br />
vzctl set YOUR_VEID  --devices c:10:200:rw --save<br />
vzctl set YOUR_VEID  --capability net_admin:on --save<br />
vzctl start YOUR_VEID<br />
vzctl exec YOUR_VEID  "mkdir -p /dev/net; mknod /dev/net/tun c 10 200; chmod 600 /dev/net/tun"<br />
# iptables support<br />
vzctl stop YOUR_VEID<br />
vzctl set YOUR_VEID  --iptables ipt_REJECT --iptables ipt_tos --iptables ipt_TOS --iptables ipt_LOG --iptables ip_conntrack --iptables ipt_limit --iptables ipt_multiport --iptables iptable_filter --iptables iptable_mangle --iptables ipt_TCPMSS --iptables ipt_tcpmss --iptables ipt_ttl --iptables ipt_length --iptables ipt_state --iptables iptable_nat --iptables ip_nat_ftp --save<br />
vzctl start YOUR_VEID<br />
</code><br />
Make sure they will replace &#8216;YOUR_VEID&#8217; with your VPS&#8217;s VEID and you will be ready to roll</p>
<p>Login to your VPS as root and execute the following commands<br />
<code><br />
wget http://vpsnoc.com/scripts/install-openvpn.sh<br />
chmod +x install-openvpn.sh<br />
./install-openvpn.sh<br />
</code><br />
You will be prompted to enter values for your server and client certificate, feel free to accept (hit enter) the default values. Its not recommended to setup a password for your server certificate as you will have to type in the password each time you wish to start/restart the <strong>openvpn daemon</strong>.<br />
You can however set a password for your client&#8217;s certificate since it offers extra level of protection in case your certificate and key files are compromised. You will be prompted for that password each time you connect on your <strong>VPS&#8217;s VPN</strong>.</p>
<p>After the script finished installing openvpn (should be very quick) the client keys and the <strong>openvpn client </strong>configuration file will be archived in /root/keys.tgz<br />
You may use a sftp/scp client such as <a href="http://winscp.net/eng/download.php">winscp</a> or <a href="http://filezilla-project.org/download.php">filezilla </a> to download the archive on your computer.</p>
<p>If you already haven&#8217;t installed <a href="http://openvpn.se/download.html">openvpn</a> for windows you may do so now.<br />
You may use winrar or 7zip to extract the content of keys.tgz in C:\Program Files\OpenVPN\config\VPN (create a folder named VPN there)<br />
After you have extracted the files from keys.tgz in the above folder, you may start openvpn-gui from the start menu, right click the tray icon, go to VPN and click connect. After the icon turns green all your traffic will be forwarded through your VPS, no extra configuration on your browser/IM client/email client is required.</p>
<p>If you&#8217;re facing issues make sure that your computer clock is synchronized, if so make sure that your VPS&#8217;s clock is correct as well. If it&#8217;s not you will have to ask your host to sync it.</p>
<p>For any other issues and feedback please e-mail us at support@vpsnoc.com</p>
<p>You may use and modify this script however you see fit, provided that you do not edit the original copyright.<br />
<code><br />
#!/bin/bash<br />
# Quick and dirty OpenVPN install script<br />
# Tested on Centos 5.x 32bit, openvz minimal CentOS OS templates<br />
# Please submit feedback and questions at support@vpsnoc.com</code></p>
<p><code># John Malkowski vpsnoc.com 01/04/2010</code></p>
<p><code>ip=`grep IPADDR /etc/sysconfig/network-scripts/ifcfg-venet0:0 | awk -F= '{print $2}'`</code></p>
<p><code>wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
rpm -iv rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
rm -rf rpmforge-release-0.3.6-1.el5.rf.i386.rpm</code></p>
<p><code>yum -y install openvpn openssl openssl-devel<br />
cd /etc/openvpn/<br />
cp -R /usr/share/doc/openvpn-2.0.9/easy-rsa/ /etc/openvpn/<br />
cd /etc/openvpn/easy-rsa/2.0/<br />
chmod +rwx *<br />
. ../vars<br />
./clean-all<br />
source ./vars</code></p>
<p><code>echo -e "\n\n\n\n\n\n\n" | ./build-ca<br />
clear<br />
echo "####################################"<br />
echo "Feel free to accept default values"<br />
echo "Wouldn't recommend setting a password here"<br />
echo "Then you'd have to type in the password each time openVPN starts/restarts"<br />
echo "####################################"<br />
./build-key-server server<br />
./build-dh<br />
cp keys/{ca.crt,ca.key,server.crt,server.key,dh1024.pem} /etc/openvpn/</code></p>
<p><code>clear<br />
echo "####################################"<br />
echo "Feel free to accept default values"<br />
echo "This is your client key, you may set a password here but it's not required"<br />
echo "####################################"<br />
./build-key client1<br />
cd keys/</code></p>
<p><code>client="<br />
client<br />
remote $ip 1194<br />
dev tun<br />
comp-lzo<br />
ca ca.crt<br />
cert client1.crt<br />
key client1.key<br />
route-delay 2<br />
route-method exe<br />
redirect-gateway def1<br />
dhcp-option DNS 10.8.0.1<br />
verb 3"<br />
</code><br />
<code>echo "$client" &gt; $HOSTNAME.ovpn</code></p>
<p><code>tar czf keys.tgz ca.crt ca.key client1.crt client1.csr client1.key $HOSTNAME.ovpn<br />
mv keys.tgz /root</code></p>
<p><code>opvpn='<br />
dev tun<br />
server 10.8.0.0 255.255.255.0<br />
ifconfig-pool-persist ipp.txt<br />
ca ca.crt<br />
cert server.crt<br />
key server.key<br />
dh dh1024.pem<br />
push "route 10.8.0.0 255.255.255.0"<br />
push "redirect-gateway"<br />
comp-lzo<br />
keepalive 10 60<br />
ping-timer-rem<br />
persist-tun<br />
persist-key<br />
group nobody<br />
daemon'</code></p>
<p><code>echo "$opvpn" &gt; /etc/openvpn/openvpn.conf</code></p>
<p><code>echo 1 &gt; /proc/sys/net/ipv4/ip_forward<br />
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o venet0 -j MASQUERADE<br />
iptables-save &gt; /etc/sysconfig/iptables<br />
sed -i 's/eth0/venet0/g' /etc/sysconfig/iptables # dirty vz fix for iptables-save<br />
echo "net.ipv4.ip_forward=1" &gt;&gt; /etc/sysctl.conf</code></p>
<p><code>/etc/init.d/openvpn start<br />
clear</code></p>
<p><code>echo "OpenVPN has been installed<br />
Download /root/keys.tgz using winscp or other sftp/scp client such as filezilla<br />
Create a directory named vpn at C:\Program Files\OpenVPN\config\ and untar the content of keys.tgz there<br />
Start openvpn-gui, right click the tray icon go to vpn and click connect<br />
For support/bug reports email us at support@vpsnoc.com"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://vpsnoc.com/blog/how-to-setup-a-vpn-server-on-a-centos-vps-instantly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your Number One Choice for VPS Hosting! VPSNOC, Now Open.</title>
		<link>http://vpsnoc.com/blog/your-number-one-choice-for-vps-hosting-vpsnoc-now-open/</link>
		<comments>http://vpsnoc.com/blog/your-number-one-choice-for-vps-hosting-vpsnoc-now-open/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:36:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VPSNOC]]></category>
		<category><![CDATA[24x7 support]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[discount]]></category>
		<category><![CDATA[fully managed]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Linux VPS]]></category>
		<category><![CDATA[Managed]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[unmanaged]]></category>
		<category><![CDATA[US Support]]></category>
		<category><![CDATA[VPS hosting]]></category>

		<guid isPermaLink="false">http://vpsnoc.com/blog/?p=5</guid>
		<description><![CDATA[We're delighted to be able to welcome you to <strong>VPSNOC</strong> – <em>Your Number One Choice for VPS Hosting.</em>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">
<p style="text-align: left;">We&#8217;re delighted to be able to welcome you to <strong>VPSNOC</strong> – <em>Your Number One Choice for VPS Hosting.</em></p>
<p><img class="size-full wp-image-34 aligncenter" title="plans" src="http://vpsnoc.com/blog/wp-content/uploads/2009/12/plans.png" alt="plans" width="300" height="225" /></p>
<p>After many months of detailed planning, testing and tweaking we are delighted to finally open our doors to the general public.  It has certainly been a long journey, but we have no doubt that it has been a worthwhile one.<br />
<span id="more-5"></span> We are immensely excited about our brand new <strong>VPS plans</strong>.  We&#8217;ve finely tuned our <strong>Linux VPS</strong> solutions to offer you the best of <strong><a href="http://vpsnoc.com/Unmanaged_VPS.html">Unmanaged</a></strong> and <strong><a href="http://vpsnoc.com/Corporate_VPS.html">Fully Managed</a> VPS Hosting</strong>.  After researching our potential audience we discovered that many VPS users have particular requirements for<strong> high resources</strong> – so we are pioneering new “<strong><a href="http://vpsnoc.com/VPS_Specials.html">VPS SPECIAL</a></strong>” plans, designed to cater to these specific needs.  And of course, our friendly <strong>US support</strong> and management teams are ready to assist you around the clock – that&#8217;s <strong>24&#215;7, 365 days a year</strong>.</p>
<p style="text-align: center;"><img class="size-full wp-image-21  aligncenter" title="twitter" src="http://vpsnoc.com/blog/wp-content/uploads/2009/12/twitter.png" alt="twitter" width="128" height="128" /></p>
<p>Don&#8217;t forget to <a href="http://twitter.com/vpsnoc" target="_blank">add us on Twitter</a>!  We think Twitter is great, so we&#8217;ll be tweeting regularly to keep our visitors and clients in the loop. You never know – you may even find some extra-special exclusive discounts lurking on the <a href="http://twitter.com/vpsnoc">VPSNOC Twitter feed</a>!  We really are passionate about becoming <em>Your Number One Choice for <strong>VPS Hosting</strong>.</em> <span style="color: #000000;"><strong><span style="color: #339966;"> </span></strong></span></p>
<p style="text-align: center;"><span style="color: #000000;"><strong><span style="color: #339966;"><img class="size-full wp-image-23  aligncenter" title="datacenter" src="http://vpsnoc.com/blog/wp-content/uploads/2009/12/datacenter.jpg" alt="datacenter" width="290" height="120" /> </span></strong></span></p>
<p>To celebrate our official opening we&#8217;re offering all new customers 15% off any of our Unmanaged VPS, Fully Managed VPS or VPS SPECIAL plans.  This is a <strong>recurring discount </strong>and it stands for as long as you keep your plan!  Simply use coupon code: <span style="color: #000000;"><strong><span style="color: #339966;">15%OFF</span></strong></span> <span style="color: #000000;"><span style="font-size: x-small;"><strong><span style="color: #339966;"> </span></strong></span></span> We look forward to hearing from you!  If you have any questions or queries please feel free to contact us: <a href="mailto:sales@vpsnoc.com">sales@vpsnoc.com</a>, <a href="mailto:support@vpsnoc.com">support@vpsnoc.com</a> or our <a href="http://vpsnoc.com/contact.php">contact form</a>.  That&#8217;s all from us for now.  We&#8217;ll be updating the blog frequently with tips, advice and news. Don&#8217;t miss out &#8211; make sure you check back often!  <em> </em> <em> </em></p>
<p><em>The VPSNOC Team </em></p>
]]></content:encoded>
			<wfw:commentRss>http://vpsnoc.com/blog/your-number-one-choice-for-vps-hosting-vpsnoc-now-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

