ESXi 4.1 Kickstart Script for EDA Virtual Appliance
Summary: This one has been on the back burner for a little while, but I finally got it put together thanks to resources like virtualghetto . lamw is crazy smartz! Script: Everything seems to work fine, the only one I’m not sure of is the enabling the CIMoemProviderEnabled Advanced setting as to whether that works or not. Let me know if you happen to brave my custom kickstart script made for Dell servers, but can be adjusted for pretty much any setup I think. 1: # Bind vmnic4 to vSwitch0. EDA adds vmnic0 automatically 2: # Active/Passive 3: esxcfg-vswitch -L vmnic4 vSwitch0 4: esxcfg-vswitch -X 1 vSwitch0 5: 6: # Add vSwitch1, VMkernel, and bind vmnic1/3 7: # Active/Passive 8: # The following configures vSwitch1 as the vmKernel vmotion switch 9: esxcfg-vswitch -a vSwitch1 10: esxcfg-vswitch -A VMkernel vSwitch1 11: esxcfg-vswitch -L vmnic1 vSwitch1 12: esxcfg-vswitch -L vmnic3 vSwitch1 13: esxcfg-vswitc...