Operating System - OpenVMS
1753544 Members
5805 Online
108795 Solutions
New Discussion юеВ

Cluster Virtual IP /alias IP

 
SOLVED
Go to solution
Feige
Advisor

Cluster Virtual IP /alias IP

OpenVMS 8.2 Two nodes cluster.
Node A we0 IPaddress:100.1.0.221
Node B we0 IPaddress:100.1.0.222
Cluster IP: 100.1.0.220
when I use:
$UCX
TCPIP>telnet 100.1.0.220
When telnet clusterIP(100.1.0.220
),I find all clients login the Node A(Node A first started the tcpip service).
Can I set connect to 100.1.0.222 when i use 100.1.0.220 IP access?

Thanks.
4 REPLIES 4
Heinz W Genhart
Honored Contributor
Solution

Re: Cluster Virtual IP /alias IP

Hi Feige

This is the normal behaviour for the IP Cluster Alias. It is bound to the first booting node within a cluster. As long this node is up, all connects to the Tcpip Cluster alias will reach this node.

If you want to change this, then you must introduce FailSafe IP. Together with a DNS Sever which change the order of the two adresses you will have what you are looking for

Regards

Geni
Jan van den Ende
Honored Contributor

Re: Cluster Virtual IP /alias IP

Feige,

alas, this is standard TCPIP.
Never confuse IP workings with Decnet workings, an do NOT confuse similarly-named concepts!

A IP cluster alias is just another address that gets bound to the first network DEVICE that presents it (the "impersonator") and remains so as long as that device is available. Only if the device goes out of functionality (for whatever reason) does another potential cluster alias device become the new impersonator.

If you strive towards some kind of load balancing, then use
--METRIC - to determine available capacities
--LOADBROKER - to regularly determine which node (actually, which device) can currently best accept new load
--allow your BIND server to be updated by the loadbroker
AND ---- SET ALL IP KEEPALIVE TIMERS in ALL ROUTERS to the order of at most one or two minutes.

----- round-robin answers be the bind server are also a (rather more rude) means of spreading the load. That also required=s short keep-alive times.

hth

Proost.

Have one on me.

jpe
Don't rust yours pelled jacker to fine doll missed aches.
Jan van den Ende
Honored Contributor

Re: Cluster Virtual IP /alias IP

Feige,

I forgot one thing: this works with DNS names, NOT with IP addresses.
It just regularly changes the IP address for a given DNS name.

Proost.

Have one on me.

jpe
Don't rust yours pelled jacker to fine doll missed aches.
Feige
Advisor

Re: Cluster Virtual IP /alias IP

Thanks, I will try