SPECvirt ® Datacenter 2021 Known Issues

Current Known Issues

vSphere 7.0.3 and later only supports ECDSA with SSH. To add ECDSA support between svdc-director and the vSphere hosts, on svdc-director issue the following:

ssh-keygen -t ecdsa -f /root/.ssh/id_ecdsa -N ''
for Host in `grep Host /etc/hosts | awk '{print $1}'`
  do
     cat ~/.ssh/id_ecdsa.pub | ssh $Host 'cat >> /etc/ssh/keys-root/authorized_keys'
     ssh $Host 'chmod +t /etc/ssh/keys-root/authorized_keys'
     ssh $Host '/etc/init.d/SSH restart'
  done