Hi!
I would have to set up some AIX network interfaces to use behind LVS load balancers. The LVS admin required me to set the service IP adresses in NOARP mode, as they really reside on the LVS cluster.
Now, I see that I can set an adapter to NOARP mode, using either
, or I can use
, but both of the set all the device to noarp, thus the host to reply to ARP request for its own address as well.
I've seen that there is an option to set up a VIPA device, which is rather some kind of device alias, but I did not succeed to set up such a device on my AIX 5.3 box:
Does VIPA need some extra filesets to be installed, or why might I not be able to create such a device?
Thanks in advance,
--Trifo
I would have to set up some AIX network interfaces to use behind LVS load balancers. The LVS admin required me to set the service IP adresses in NOARP mode, as they really reside on the LVS cluster.
Now, I see that I can set an adapter to NOARP mode, using either
Code:
chdev -l interface -a arp=no
Code:
ifcofig iface -arp
I've seen that there is an option to set up a VIPA device, which is rather some kind of device alias, but I did not succeed to set up such a device on my AIX 5.3 box:
Code:
# mkdev -c if -s VI -t vi -a netaddr="10.0.5.180" -a netmask="255.255.255.0" -w en1 -a state=down
Method error (/usr/lib/methods/chgif):
0514-006 Cannot retrieve an object from the device
configuration database.
0821-224 chgif: Expected one if instance, retrieved 0.
Method error (/usr/lib/methods/udefif):
0514-006 Cannot retrieve an object from the device
configuration database.
0821-122 udefif: Expected one interface instance, retrieved 0.
#
Does VIPA need some extra filesets to be installed, or why might I not be able to create such a device?
Thanks in advance,
--Trifo