0

I'm intending to use virtual IP for my failover implementation.

Setup:

  • **Server A (192.168.0.1) ** - takes virtual IP of 192.168.0.10 by default
  • **Server B (192.168.0.2) ** - takes virtual ip of 192.168.0.10 when server A is down

I'm using Windows machines and my current method is to run a script on another machine to check if server a has failed, and when it fail, the script will telnet into server B to add the virtual IP.

I'm wondering if there is an alternative solution to using telnet to change to virtual IP. I want to ensure that the failover is automatic the option of getting a network administrator to add the virtual IP is out of question.

cjc
  • 24,916
  • 3
  • 51
  • 70
tommi
  • 111
  • 1
  • 1
  • 4

2 Answers2

0

In orde to use a virtual IP you need to build a cluster. You didn't specify an OS version so you'll have to look up how to create one. Clustering has been supported since NT 4.0

Jim B
  • 24,081
  • 4
  • 36
  • 60
0

I'm using Windows machines and my current method is to run a script on another machine to check if server a has failed, and when it fail, the script will telnet into server B to add the virtual IP.

This is flawed in so many ways... please have a look at Failover Clustering and Network Load Balancing.

Massimo
  • 70,200
  • 57
  • 200
  • 323