You need to verify that the SDC (the ESXi host vmknic, really) can talk to the MDM's SVM on the data network IPs.
First, make sure you don't have duplicate IPs anywhere.
SDC Module Parameter Retrieval
If the MDM does not recognize the SDC or there is a reason to think that SDC does not communicate with the MDM, the MDM IPs and the GUID can be retrieved by running:
esxcli system module parameters get -m scini
ESXi 6: esxcli system module parameters list -m scini
ESX SDC Connectivity Check
This article assumes two data networks, configured with 192.168.152.x and 192.168.154.x subnets.
Find out which vmknic is on which subnet, as well as MTU:
[root@server1-101:~] esxcfg-vmknic -l
Interface Port Group/DVPort/Opaque Network IP Family IP Address Netmask Broadcast MAC Address MTU TSO MSS Enabled Type NetStack
And if all configurations are ok, try search for "scini" in /var/run/log/vmkernel.* logs.
Find the last entry that includes the MDM IPs. If they are not the same as "esxcli system module parameters get -m scini" shows, reboot the ESXi to make sure the current config is effective.
Per the steps in my response above, you need to verify that jumbo frames are configured correctly on this network.
Your switch output indicates that it is configured, so you should be able to jumbo ping the network gateway.
Test pinging this with:
Ping the subnet gateway:
Jumbo:
vmkping -d -s 8972 -I vmk1 192.1.0.x
Normal:
vmkping -I vmk1 192.1.0.x
I notice that you have the first ESX node's vmk1 IP address set to .1, which would likely also be the network gateway's IP.
Please review your network configuration to ensure there are no duplicate addresses, and that pinging with jumbo frame size will also succeed to the network gateway.
Also please confirm jumbo ping from each ESX node to the others. 1 -> 2 and 3, 2 -> 1 and 3, 3 ->1 and 2.
Your data network subnet in the plugin is 10.24.120.x, but you've set the vmknic for the data network to the 192.1.0.x subnet.
The SDC (vmknic, 192.1.0.x) can't reach the MDM Data IP (10.24.120.x, per above).
Either redeploy with the data network using the same subnet as the vmknics currently have, or change your vmknic IP addresses to be on the same subnet as is configured in the last screenshot image above.
Either way, make sure you can ping the MDM SVM's data network IP from the vmknic with jumbo frames.
daverush
51 Posts
1667
0
Posted November 13th, 2015 14:00
Alex,
You need to verify that the SDC (the ESXi host vmknic, really) can talk to the MDM's SVM on the data network IPs.
First, make sure you don't have duplicate IPs anywhere.
SDC Module Parameter Retrieval
If the MDM does not recognize the SDC or there is a reason to think that SDC does not communicate with the MDM, the MDM IPs and the GUID can be retrieved by running:
ESX SDC Connectivity Check
This article assumes two data networks, configured with 192.168.152.x and 192.168.154.x subnets.
Find out which vmknic is on which subnet, as well as MTU:
Ping the Primary MDM's SVM via each vmknic:
If jumbo frames are configured and this test fails, network connectivity is not 100%:
Try without jumbo frames:
Ping the Secondary MDM:
Jumbo:
Normal:
Ping the subnet gateways:
Jumbo:
Normal:
Next steps, get:
The output of ifconfig run on the acting primary MDM's SVM
The output of "esxcli system module parameters get (list, if ESXi 6) -m scini"
The results of the vmkping -d -s 8972 -I vmkx MDM_SVM_IP commands against the primary MDM SVM IPs per above.