Or
After the notebook instance is restarted, its public key changes. The alarm is generated when OpenSSH detected the key change.
ssh -tt -o StrictHostKeyChecking=no -i ${IdentityFile} ${User}@${HostName} -p ${Port}
Parameters:
- IdentityFile: Path to the local key
- User: Username, for example, ma-user
- HostName: IP address
- Port: Port number
Host xxx HostName x.x.x.x # IP address Port 22522 User ma-user IdentityFile C:/Users/my.pem StrictHostKeyChecking no UserKnownHostsFile=/dev/null ForwardAgent yes
Note that SSH logins will be insecure after the preceding parameters are added because the known_hosts file will be ignored during the logins.