mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Fixed ARP issue that affected VmWare with Adavanced Network Zone that use Multiple vSwitches
This commit is contained in:
parent
5b7b47048b
commit
8ff8673f73
@ -364,6 +364,11 @@ setup_common() {
|
|||||||
ping -n -c 3 $LOCAL_GW &
|
ping -n -c 3 $LOCAL_GW &
|
||||||
sleep 3
|
sleep 3
|
||||||
pkill ping
|
pkill ping
|
||||||
|
#This code is added to address ARP issue by pinging MGMT_GW
|
||||||
|
MGMT_GW=$(echo $MGMTNET | awk -F "." '{print $1"."$2"."$3".1"}')
|
||||||
|
ping -n -c 3 $MGMT_GW &
|
||||||
|
sleep 3
|
||||||
|
pkill ping
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user