Difference between revisions of "VPS Migration with OSPF"

From OpenVZ Virtuozzo Containers Wiki
Jump to: navigation, search
 
Line 28: Line 28:
 
router ospf
 
router ospf
 
  redistribute kernel route-map only-vps
 
  redistribute kernel route-map only-vps
  network 62.220.128.0/19 area 0.0.0.0
+
  network YOUR_NETWORK/XX area 0.0.0.0
 
!
 
!
 
route-map only-vps permit 10
 
route-map only-vps permit 10

Revision as of 17:51, 22 January 2007


This article presents how to be able to migrate VPS between different subnets in the network by using a dynamic routing protocol such as OSPF. An already working OSPF setup is mandatory, this article only shows the OpenVZ specifics.

Quagga installation

Install the Quagga routing suite available on the official website.

Under Debian you can simply use the package.

apt-get install quagga

Quagga configuration

In /etc/quagga/zebra.conf just put a password to be able to access the telnet interface.

password zebra

In /etc/quagga/ospfd.conf configure the OSPF network and area in which is OpenVZ server will be and configure the redistribution of routes generated by the VPS.

password zebra
!
router ospf
 redistribute kernel route-map only-vps
 network YOUR_NETWORK/XX area 0.0.0.0
!
route-map only-vps permit 10
 match interface venet0
!
line vty

Usage

Once your OpenVZ server takes part in the OSPF network, you can easily use the ‘vzmigrate’ command to migrate a VPS between different subnet of the network and the IP of the VPS will be redistributed in the whole network as a /32 (host route).

Bugs

To avoid problems with this setup the IP addresses of your VPS must be taken outside of any other subnet configured on your network. If the IP address of the VPS is taken from an actual subnet, the other hosts of the subnet won't be able to communicate with it, except if you use proxy arp on the router.