Hi Bill,
Our linux admin tested it out and said that linux does get back an error if the ip address is in use.
-----------------------
This happens whenever I do the VLAN testing. The IP that was free before when I ran the test previously, is now assigned to a guest VM.
This is on PROD POOL1 using an unassigned IP:
# cat ifcfg-eth0
DEVICE="eth0"
NM_CONTROLLED="no"
ONBOOT="yes"
IPADDR=129.219.113.210
##IPADDR=129.219.113.206
NETMASK=255.255.255.192
GATEWAY=129.219.113.193
# ping 129.219.16.157
PING 129.219.16.157 (129.219.16.157) 56(84) bytes of data.
64 bytes from 129.219.16.157: icmp_seq=1 ttl=122 time=2.52 ms
64 bytes from 129.219.16.157: icmp_seq=2 ttl=122 time=1.12 ms
^C
--- 129.219.16.157 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1538ms
rtt min/avg/max/mdev = 1.120/1.820/2.520/0.700 ms
Change the IP to one already in use:
# cat ifcfg-eth0
DEVICE="eth0"
NM_CONTROLLED="no"
ONBOOT="yes"
##IPADDR=129.219.113.210
IPADDR=129.219.113.206
NETMASK=255.255.255.192
GATEWAY=129.219.113.193
# service network restart
Shutting down interface eth0: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: Error, some other host already uses address 129.219.113.206.
[FAILED]
# ping 129.219.16.157
connect: Network is unreachable
This is a ping from 129.219.113.206 , network is still up:
# ping 129.219.16.157
PING 129.219.16.157 (129.219.16.157) 56(84) bytes of data.
64 bytes from 129.219.16.157: icmp_seq=1 ttl=122 time=1.31 ms
--- 129.219.16.157 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 1.315/1.315/1.315/0.000 ms
---sB