jefcisco Thanks for sending the requested .zip (also attached in this reply).
Your PrimeClient has an IP of 10.199.135.11 with a subnet mask of 255.255.255.0. The VMmark3 benchmark harness created Client0, as shown from the log file below, powered it on, but could not ping it:
2019-04-29T14:15:38.010 [pool-3-thread-17] INFO COMM : Client0 Attempting to Ping at 10.199.135.31
2019-04-29T14:18:50.299 [pool-3-thread-17] WARN COMM : Client0 : All pings failed at 10.199.135.31 : Remediating
2019-04-29T14:18:50.302 [pool-3-thread-17] INFO vCSc : RemediateVM: Client0
2019-04-29T14:18:50.327 [pool-3-thread-17] INFO vCSc : DVS Disabled: NetworkLabel VM Network
2019-04-29T14:18:52.353 [pool-3-thread-17] INFO vCSc : Updated Client0 to use NetworkLabel VM Network and verified connected state
2019-04-29T14:18:52.356 [pool-3-thread-17] INFO COMM : RemediatedPing Client0 : Scanning for IP
2019-04-29T14:18:52.369 [pool-3-thread-17] INFO COMM : RemediatedPing Client0 Attempting to Ping at 10.199.135.31
2019-04-29T14:19:16.413 [pool-3-thread-17] ERROR COMM : RemediatedPing Client0 : All pings failed at 10.199.135.31
This means you will need to do some troubleshooting from your PrimeClient and/or vCenter to figure out why your PrimeClient can't ping Client0. Some possibilities/things to check:
- Is 'VM Network' is the right NetworkLabel? If not, uncomment and change the line in your VMmark3.properties file that reads "ProvisioningNetworkLabel = VM Network"
- Are you using a standard vSwitch (default)? If not (a distributed vSwitch), uncomment and change the line in your VMmark3.properties file that reads "ProvisioningNetworkType = standard" to "dvswitch".
- Double check your other network settings for accuracy, namely:
// String ProvisioningIPstaticStart : First IP address to use. Valid ranges are 1-245
ProvisioningIPstaticStart = 10.199.135.31
// String ProvisioningGateway : Gateway to use for static VM provisioning : Default 192.168.1.253
ProvisioningGateway = 10.199.135.1
// String ProvisioningSubnetMask : Subnet mask to use for static VM provisioning : Default 255.255.252.0
ProvisioningSubnetMask = 255.255.255.0
Long story short, in order for provisioning to succeed, you'll need to be able to ping client0 from your PrimeClient VM, and you can't right now.
Here is what you're likely seeing ("bad" case):
[root@primeclient ~]# ping 10.199.135.31
PING 10.199.135.31 (10.199.135.31) 56(84) bytes of data.
From 10.199.135.11 icmp_seq=10 Destination Host Unreachable
From 10.199.135.11 icmp_seq=11 Destination Host Unreachable
Here is what you need to see ("good" case):
[root@primeclient ~]# ping 10.199.135.31
PING 10.199.135.31 (10.199.135.31) 56(84) bytes of data.
64 bytes from 10.199.135.31: icmp_seq=1 ttl=64 time=0.142 ms
64 bytes from 10.199.135.31: icmp_seq=2 ttl=64 time=0.162 ms
64 bytes from 10.199.135.31: icmp_seq=3 ttl=64 time=0.188 ms
^C
--- 10.199.135.31 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 1999ms
rtt min/avg/max/mdev = 0.142/0.164/0.188/0.018 ms
Please let me know how it goes.
Thanks,
David