We are trying to setup a test bed for our server testing, to simulate multiple connection / msg handling, I am trying to connect to our test server from a virtual IP.
on the client machine (Debian) through "/etc/network/interfaces" created virtual IP
allow-hotplug eth0
iface eth0 inet dhcp (192.168.10.2)
auto eth0:1
allow-hotplug eth0:1
iface eth0:1 inet static
address 192.168.11.1
netmask 255.255.0.0
gateway 192.168.11.1
auto eth0:5
allow-hotplug eth0:5
iface eth0:5 inet static
address 192.168.11.5
netmask 255.255.255.0
gateway 192.168.11.1
auto eth0:6
allow-hotplug eth0:6
iface eth0:6 inet static
address 192.168.11.6
netmask 255.255.255.0
gateway 192.168.11.1
Server Ip: 192.168.10.246
With our test client we are using "eth0.6" to connect it with server and connection is getting failed.
Request guidance, am i missing any routing configuration ??