Hi, we're trying to make a virtual IP address network interface, and we're having some trouble.
In a server with 2 physical adapters making an etherchannel and only one IP address it is working fine, but in servers with 2 physical adapters, each with its own IP address it's creating the virtual adapter but it cannot be reached from outside the server.
In the first server, the etherchannel has its IP address in the same subnet than the virtual adapter (10.1.10.X).
In the other servers, adapter en0 has an IP in a subnet (10.1.10.X) and en1 has its IP in another subnet (10.1.7.X)
The IP address of the virtual adapter is in the same subnet as en0 (10.1.10.X)
We've tried creating the virtual adapter in several ways, with the same results:
and
Any ideas?
In a server with 2 physical adapters making an etherchannel and only one IP address it is working fine, but in servers with 2 physical adapters, each with its own IP address it's creating the virtual adapter but it cannot be reached from outside the server.
In the first server, the etherchannel has its IP address in the same subnet than the virtual adapter (10.1.10.X).
In the other servers, adapter en0 has an IP in a subnet (10.1.10.X) and en1 has its IP in another subnet (10.1.7.X)
The IP address of the virtual adapter is in the same subnet as en0 (10.1.10.X)
We've tried creating the virtual adapter in several ways, with the same results:
Code:
mkdev -c if -s VI -t vi -a netaddr=10.1.10.xxx -a netmask=255.255.255.0 -a state=up (also tried with -a interface_names=en0)
Code:
ifconfig vi0 10.1.10.xxx netmask 0xffffff00 broadcast 10.1.10.255
Any ideas?