Problem:
VMware install Linux virtual machine, Bridge mode configure static IP after restart NIC, hint: error,some other host already uses address 10.252.252.21 ...
Ideas:
Find the information on the web and get the solution as follows:
Edit/etc/sysconfig/network-scripts/ifup-eth, Will (note: RHEL5.3)
if! Arping-q-C 2-w-i ${realdevice} ${ipaddr}; Then
echo $ "Error, some other host already uses address ${ipaddr}."
Exit 1
Fi
Comment out with #, then enter
#service Network Restart
Restart Network service, Nic loaded successfully
The above plan does not error, but the actual network is still not through!!!!
Final Solution:
VMware Select Bridge mode, the default bridge to the network card is "automatic mode", modify the mode, set the bridge to the specified network card, restart the virtual Machine network card, the network is normal and no error.
Linux:vmware Install Linux virtual machine, bridge mode configure static IP after restart NIC, hint: error,some other host already uses address 10.252.252.21 ...