Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | Previous revision | ||
|
anycast_vps [2015/01/27 16:28] |
anycast_vps [2023/06/30 15:46] (current) onekopaka |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Anycast IP VPS FREE How-to ====== | ||
| + | ===== What is Anycast? | ||
| + | |||
| + | Anycast is a routing feature BuyVM offers for free to all customers. | ||
| + | |||
| + | **Anycast requires customer to have a KVM Slice in all four BuyVM locations (Las Vegas, New York, Miami and Luxembourg).** | ||
| + | |||
| + | ===== Why use Anycast? ===== | ||
| + | |||
| + | Anycast helps speed up your sites or other services by putting visitors on server closest to them. Closest server choice results in low latency and higher throughput. | ||
| + | |||
| + | ===== Does AnyCast Have DDOS Protection? | ||
| + | We offer DDOS Protection for AnyCast for **$5.00 monthly** which is powered by Path.net. | ||
| + | ===== How much does AnyCast VPS cost ? ===== | ||
| + | |||
| + | Anycast is FREE for all BuyVM VPS customers. The cost will be three VPS purchases. | ||
| + | |||
| + | |||
| + | ===== How to Enable BuyVM Anycast ===== | ||
| + | |||
| + | - On any of your three VPS accounts go to the Networking tab, gearbox in the mainip box -> Assign Anycast IP (will be given option to set up to 5 anycast IPs, only one is needed) | ||
| + | - On each applicable VM, go to Networking tab, ensure Anycast IP is `on`, hit 'Save Changes' | ||
| + | - On each applicable VM, bind regular IP to eth0, Anycast to eth0:0 with only Address and Netmask fields | ||
| + | |||
| + | Sample / | ||
| + | |||
| + | root # cat / | ||
| + | < | ||
| + | auto lo | ||
| + | iface lo inet loopback | ||
| + | | ||
| + | auto eth0 | ||
| + | allow-hotplug eth0 | ||
| + | iface eth0 inet static | ||
| + | address | ||
| + | network | ||
| + | gateway | ||
| + | broadcast | ||
| + | netmask | ||
| + | |||
| + | | ||
| + | auto eth0:v6 | ||
| + | allow-hotplug eth0:v6 | ||
| + | iface eth0:v6 inet6 static | ||
| + | address | ||
| + | gateway | ||
| + | netmask | ||
| + | | ||
| + | | ||
| + | auto eth0: | ||
| + | allow-hotplug eth0: | ||
| + | iface eth0: | ||
| + | address | ||
| + | netmask | ||
| + | </ | ||
| + | * Standard naming practice is eth0, eth0:0, eth0:1, etc. I use eth0: | ||