dave330i wrote: » I've always used SSH into ESXi host vs. vMA. Now I'm trying to follow best practice by using vMA. I'm having a devil of a time trying to change the MTU using vMA. Using SSH the command to change MTU is esxcfg-vmknic -m 9000 <Port Group> or esxcfg-vmknic -m 9000 -v <DVPort> -s <DVS name>. I've tried several different variation using vicfg and none of it works. Vaguely remember reading something about MTU change being unsupported feature. Maybe I just need to do it using SSH.
vCole wrote: » I used PowerCLI to change the MTU on ESXi hosts. $vswitch = New-VirtualSwitch -Host <IP> -Name VSwitch Set-VirtualSwitch -VirtualSwitch $vswitch -MTU 9000
dave330i wrote: » Don't use PowerCLI, but it looks like that command changes the MTU of the vSwitch, not the vmk.
vCole wrote: » I've done it with the vmk as well. We found this to be the easiest way. (Setup a whole PowerCLI script to deploy ESXi servers)
dave330i wrote: » I'll look into PowerCLI. I went and temporarily enabled SSH and changed the vmk MTU via putty then disabled SSH. It was easier than banging my head against vMA.