Archive for the 'VPS' Category

VPSWow!:$3.98 128MB OpenVZ VPS

VPSWow! Is a British VPS provider, is now being done in February of discounted activities, according to the ad on WHT use Promo Code: Feb_50% _OFF half as long as the purchase of any VPS, and now his family has two VPS below 10 U.S. dollars after the discount, he Xen is also home of the VPS, but Xen VPS is not within the scope of this concession. VPSWow! Domain name has been registered for almost two years, compared Kaopu, data centers in Dallas TX, renting is the Limestone Networks servers and equipment. VPSWow! Is OSHS Limited, a company sub-brands, in addition to VPSWow! Things OSHS also has hostgd, flyhigh.net, slip7.net, helpinghandhost.com and so on, these are also done hosting the.

阅读全文 »

DareDevilHosting:$5 512MB OpenVZ VPS

DareDevilHosting is a Canadian Hosting Provider, now is the Canadian Winter Olympic Games in full swing when, this provider also launched two models, “Winter” promotion, according to WHT advertising, this 512MB Open VZ VPS as long as five U.S. dollars per months. Whois shows this domain name was registered two months, the official Web site even has no specific VPS product prices and presentation, they use SolusVM control panel. VPS configuration is as follows. 阅读全文 »

The Benefits of VPS Hosting

Seemingly out of nowhere, VPS has become the preferred hosting solution for small to medium sized businesses.  VPS stands for Virtual Private Server, a solution that effectively bridges the gap between the limitations of shared hosting and the flexibility of dedicated server hosting.  A VPS is created by virtualization software which partitions a single physical server to form multiple servers within it.  Each virtual server is completely independent of its neighbors and functions like an actual networked server.  What makes VPS hosting so popular is that it provides control at a level similar to a dedicated server at a price not to far removed from affordable shared hosting .

Here are some of the benefits that come along with VPS hosting:

Stability: Unlike shared hosting, the traffic and activities of other VPS customers will not adversely affect your operation.

Performance - Having your own allotment of resources allows you and your visitors to enjoy faster load times.

Dedicated Resources - VPS hosting provides you with more disk space, CPU and RAM.

Flexibility - You have the freedom to choose the operating system and software you want to install on the server.

VPS Features 阅读全文 »

What is a Virtual Private Server Hosting?

Virtual private server, or VPS, represents the next generation of web hosting that revolves around partitioning a single computer to simulate multiple servers. The unique aspect is that each server has the look and feel of a physical server, equipped with its own operating system and the ability to be rebooted independently of others. Similar practices have actually been used in mainframe computers for some time, but the emergence of virtualization technology has pushed VPS hosting into the mainstream market as a cost efficient, high performance solution.

How You Can You Benefit from VPS Hosting

Virtual private servers are designed to provide customers with a way to save money without the sacrifice of performance, flexibility and security. VPS hosting can be viewed as the perfect compromise between a shared and dedicated server, as it provides a great deal of freedom at what is usually a very reasonable price.

Here are more specific details on how you can benefit from a virtual private server:

• Incredible Value – A VPS hosting solution can provide you with a tremendous value. While a dedicated server could end up costing you well over $100 per month, the price of a virtualized platform is usually not too far removed from shared hosting. The distinct makeup of VPS technology allows the cost of the hardware, software, network connectivity and maintenance to be efficiently distributed without compromising your quality. 阅读全文 »

How to install OpenVPN on a Debian/Ubuntu VPS instantly

This is a follow up post to How to setup a VPN server on a CentOS VPS instantly same requirements and instructions apply.

Minor distribution specific changes were made on the previous CentOS script to get it working under Debian and Ubuntu. We might create one single script which will install OpenVPN on most distributions and architectures in future.

To install issue the following commands logged in as root on your VPS.

wget http://vpsnoc.com/scripts/debian-openvpn.sh

chmod +x debian-openvpn.sh

./debian-openvpn.sh

For any other issues and feedback please e-mail us at support@vpsnoc.com

You may use and modify this script however you see fit, provided that you do not edit the original copyright.

#!/bin/bash
# Quick and dirty OpenVPN install script
# Tested on debian 5.0 32bit, openvz minimal debian OS template
# and Ubuntu 9.04 32 bit minimal, should work on 64bit images as well
# Please submit feedback and questions at support@vpsnoc.com

# John Malkowski vpsnoc.com 01/18/2010

ip=`grep address /etc/network/interfaces | grep -v 127.0.0.1  | awk '{print $2}'`
apt-get update
apt-get install openvpn libssl-dev  openssl
cd /etc/openvpn/
cp -R /usr/share/doc/openvpn/examples/easy-rsa/ /etc/openvpn/
cd /etc/openvpn/easy-rsa/2.0/
chmod +rwx *
. ./vars
./clean-all
source ./vars

echo -e "\n\n\n\n\n\n\n" | ./build-ca
clear
echo "####################################"
echo "Feel free to accept default values"
echo "Wouldn't recommend setting a password here"
echo "Then you'd have to type in the password each time openVPN starts/restarts"
echo "####################################"
./build-key-server server
./build-dh
cp keys/{ca.crt,ca.key,server.crt,server.key,dh1024.pem} /etc/openvpn/

clear
echo "####################################"
echo "Feel free to accept default values"
echo "This is your client key, you may set a password here but it's not required"
echo "####################################"
./build-key client1
cd keys/

client="
client
remote $ip 1194
dev tun
comp-lzo
ca ca.crt
cert client1.crt
key client1.key
route-delay 2
route-method exe
redirect-gateway def1
dhcp-option DNS 10.8.0.1
verb 3"

echo "$client" > $HOSTNAME.ovpn

tar czf keys.tgz ca.crt ca.key client1.crt client1.csr client1.key $HOSTNAME.ovpn
mv keys.tgz /root

opvpn='
dev tun
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
push "route 10.8.0.0 255.255.255.0"
push "redirect-gateway"
comp-lzo
keepalive 10 60
ping-timer-rem
persist-tun
persist-key
group daemon
daemon'

echo "$opvpn" > /etc/openvpn/openvpn.conf

echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o venet0 -j MASQUERADE
iptables-save > /etc/iptables.conf
echo "#!/bin/sh" > /etc/network/if-up.d/iptables
echo "iptables-restore < /etc/iptables.conf" >> /etc/network/if-up.d/iptables
chmod +x /etc/network/if-up.d/iptables
echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf

/etc/init.d/openvpn start
clear

echo "OpenVPN has been installed
Download /root/keys.tgz using winscp or other sftp/scp client such as filezilla
Create a directory named vpn at C:\Program Files\OpenVPN\config\ and untar the content of keys.tgz there
Start openvpn-gui, right click the tray icon go to vpn and click connect

How to setup a VPN server on a CentOS VPS instantly

We have made a small and dirty bash script which installs and configures OpenVPN on CentOS 5 32bit. The VPN server’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 5 32bit minimal OS template

2. TUN/TAP device enabled on your VPS

3. iptables NAT support

You will have to open a ticket to request a TUN/TAP device to be enabled on your VPS. If you’re not a customer of ours and your host’s support staff doesn’t know how to do this, you may tell them to execute the following commands on the hardware node where your VPS is hosted.

vzctl stop YOUR_VEID
vzctl set YOUR_VEID --devices c:10:200:rw --save
vzctl set YOUR_VEID --capability net_admin:on --save
vzctl start YOUR_VEID
vzctl exec YOUR_VEID "mkdir -p /dev/net; mknod /dev/net/tun c 10 200; chmod 600 /dev/net/tun"
# iptables support
vzctl stop YOUR_VEID
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
vzctl start YOUR_VEID

Make sure they will replace ‘YOUR_VEID’ with your VPS’s VEID and you will be ready to roll

Login to your VPS as root and execute the following commands

wget http://vpsnoc.com/scripts/install-openvpn.sh
chmod +x install-openvpn.sh
./install-openvpn.sh

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 openvpn daemon.
You can however set a password for your client’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 VPS’s VPN.

After the script finished installing openvpn (should be very quick) the client keys and the openvpn client configuration file will be archived in /root/keys.tgz
You may use a sftp/scp client such as winscp or filezilla to download the archive on your computer.

If you already haven’t installed openvpn for windows you may do so now.
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)
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.

If you’re facing issues make sure that your computer clock is synchronized, if so make sure that your VPS’s clock is correct as well. If it’s not you will have to ask your host to sync it.

For any other issues and feedback please e-mail us at support@vpsnoc.com

You may use and modify this script however you see fit, provided that you do not edit the original copyright.

#!/bin/bash
# Quick and dirty OpenVPN install script
# Tested on Centos 5.x 32bit, openvz minimal CentOS OS templates
# Please submit feedback and questions at support@vpsnoc.com

# John Malkowski vpsnoc.com 01/04/2010

ip=`grep IPADDR /etc/sysconfig/network-scripts/ifcfg-venet0:0 | awk -F= '{print $2}'`

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rpm -iv rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rm -rf rpmforge-release-0.3.6-1.el5.rf.i386.rpm

yum -y install openvpn openssl openssl-devel
cd /etc/openvpn/
cp -R /usr/share/doc/openvpn-2.0.9/easy-rsa/ /etc/openvpn/
cd /etc/openvpn/easy-rsa/2.0/
chmod +rwx *
. ../vars
./clean-all
source ./vars

echo -e "\n\n\n\n\n\n\n" | ./build-ca
clear
echo "####################################"
echo "Feel free to accept default values"
echo "Wouldn't recommend setting a password here"
echo "Then you'd have to type in the password each time openVPN starts/restarts"
echo "####################################"
./build-key-server server
./build-dh
cp keys/{ca.crt,ca.key,server.crt,server.key,dh1024.pem} /etc/openvpn/

clear
echo "####################################"
echo "Feel free to accept default values"
echo "This is your client key, you may set a password here but it's not required"
echo "####################################"
./build-key client1
cd keys/

client="
client
remote $ip 1194
dev tun
comp-lzo
ca ca.crt
cert client1.crt
key client1.key
route-delay 2
route-method exe
redirect-gateway def1
dhcp-option DNS 10.8.0.1
verb 3"

echo "$client" > $HOSTNAME.ovpn

tar czf keys.tgz ca.crt ca.key client1.crt client1.csr client1.key $HOSTNAME.ovpn
mv keys.tgz /root

opvpn='
dev tun
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
push "route 10.8.0.0 255.255.255.0"
push "redirect-gateway"
comp-lzo
keepalive 10 60
ping-timer-rem
persist-tun
persist-key
group nobody
daemon'

echo "$opvpn" > /etc/openvpn/openvpn.conf

echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o venet0 -j MASQUERADE
iptables-save > /etc/sysconfig/iptables
sed -i 's/eth0/venet0/g' /etc/sysconfig/iptables # dirty vz fix for iptables-save
echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf

/etc/init.d/openvpn start
clear

echo "OpenVPN has been installed
Download /root/keys.tgz using winscp or other sftp/scp client such as filezilla
Create a directory named vpn at C:\Program Files\OpenVPN\config\ and untar the content of keys.tgz there
Start openvpn-gui, right click the tray icon go to vpn and click connect

Ultimate Guide for VPS Hosting Shoppers

VPS Hosting

What is VPS hosting?

A Virtual Private Server (VPS) is like a server in a bigger server. I know the statment is a little confusing but please don’t get panic about it.

The actual concept behind VPS is very simple – basically what VPS hosting providers do is to split a server into multiple smaller size individual servers (using virtualization technology) and rent it out to different customers. Each of these virtual servers looks and feels the same like a dedicated server except for one thing – they share the same hardware with one another.

What’s good about VPS hosting?

From a customer’s perceptive, a VPS hosting is the perfect stepping stone between shared and dedicated web hosting. When shared web hosting is no longer sufficient and you are not ready to go with dedicated – VPS hosting is your answer.

Advantages of VPS over shared hosting

What’s best about VPS is the isolated hosting environment that secures your website’s performance and safety. As mentioned, a VPS-hosted website will operates independently like a dedicated server – you do not share disk space, RAM, processes, TCP/IP stacks, operating system, or whatsoever. What’s going on with your neighbors (other private servers that run on the same machine), either it’s overloaded with heavy traffics or severely hacked, will not affect your website’s performance. 阅读全文 »

Your website “IPv6 Ready” it?

This article written for the students using VPS, even if your VPS provider does not support IPv6, you can put your site made IPv6 Ready! If you have a lot of readers in the education network, it will be very worthwhile to do next, because the education network without international connections, but there is a free IPv6. If your VPS provider to support IPv6 then you can see from the first step 5 onwards, if not support, then please look at starting from scratch. Is currently only in the Diahosting experiment was a success on the VPS (independent server, of course, there is no problem, as personal computers, must have a public network IP address of the will; because of the need kernel support for IPv6 and the tun / tap, it may be part of the Xen, OpenVZ does not support the ). Ready, Let’s begin!
1. The basic principles of

Although your VPS does not support IPv6, but we can through the IPv6 Tunnel to solve, which is usually said, IPv6 Over IPv4, can be interpreted as the IPv6 in IPv4 to establish a small pipeline. We use the HE (Hurricane Electronics) provides a free IPv6 Tunnel Broker, HE has the world’s largest IPv6 backbone network in the world, are provided with IPv6 Tunnel Broker service.
2. Register for a free HE IPv6 Tunnel Broker 阅读全文 »

What is VPS?

A virtual private server (VPS, also referred to as Virtual Dedicated Server or VDS) is a method of splitting a server. Each virtual server can run its own full-fledged operating system, and each server can be independently rebooted.(Via Wikipedia)

Benefits of VPS

The best things about VPS are its dedicated-server-alike features and affordable pricing.

Isolation Each private server has its unique file system and gets a  guaranteed fraction of the server’s disk space, CPU power, bandwidth, and memory. Hence, a website hosted on a VPS runs on an isolated environment where its performance will not be affected by other websites. Also, a VPS does not share web application and services with other websites thus it eliminates the risk of downtime or hacks due to other’s mistakes.

Customization VPS users get full root access. This allows server customization – you get to install your own software/application and manage your server as you would on a dedicated server.

Affordable VPS is cheap. You’ll get features like dedicated servers but cost a lot more cheaper (in most of the case, 50% less) than a dedicated hosting plan. You can compare the pricing different between a dedicated server and VPS hosting below.

What to look for when choosing a VPS?

Besides pricing, there are a few other important points that you should look at when it comes to VPS shopping. Choosing a VPS provider that’s easy to communicate is very important. A web host who’s willing to listen and accommodate your specific needs is very important.

Also, getting a flexible VPS provider that allows hardware customization is very important. Avoid web hosts who offer only ’standard’ plans as this will creates troubles in your future upgrades. Each website has different needs, maybe you need lower CPU speeds, or larger storage, or less bandwidth, or more RAM – you’ll never know what kind of upgrades you need in the future. Do you want to upgrade your entire hosting plan everytime you need a minor upgrades? No, of course. If all you need is just some extra RAM, why should you upgrade the entire hosting plan and pay for all the unnecessary storage and bandwidth?

Is VPS right for you?

When your website has outgrown your shared hosting plan and you couldn’t afford the price of a dedicated server, then VPS is your answer. Most webmasters see VPS as the stepping stone to dedicated or self-managed private server.

(Via webhostingsecretrevealed.com)

VPS / server network bandwidth of the basics of purchasing articles

Buy VPS, stand-alone server will be related to a problem is that service provider’s network bandwidth.

Confusing several concepts: Mbps, Mb / s, MB / s.

1, we often hear such and such a server, IDC provides exclusive access to bandwidth is 10M or 100M share of the class of data. Here, 10M, 100M in the end what is the idea?

The so-called 10M bandwidth, I was referring to 10Mbps (megabits), which is 1.25MB / s, but this is only a theoretical speed, in fact, but also minus wear and tear. 10M bandwidth according to this argument the fastest download speed is 1.25MB / s, 100M bandwidth of the fastest download speed is 12.5MB / s.

2, in the above we have come into contact with the MB / s, which MB / s and Mb / s What is the difference where? 阅读全文 »