Issue: Customer wanted to disable the nic teaming on his esx 4.1
Resolution: migrate all the VMs off of the host.
Disable the network service
Resolution: migrate all the VMs off of the host.
Disable the network service
service network stop
then disable the nic bonding
esxcli swiscsi nic remove -n vmk1 -d vmhba35
esxcli swiscsi nic remove -n vmk0 -d vmhba35
Restart the network service
service network start
check the results by
esxcli swiscsi nic list -d vmhba35
[or]
"service network stop && esxcli swiscsi nic remove -n vmk1 -d vmhba35 && esxcli swiscsi nic remove -n vmk0 -d vmhba35 && service network start && esxcli swiscsi nic list -d vmhba35"
run the single command...
Issue Resolved.
No comments:
Post a Comment