|
|
|
|
|
by hnlmorg
3206 days ago
|
|
That is intentional behavior on the part of `ssh`. You can still disable that prompt within `ssh` (though it's not recommended): ssh -oStrictHostKeyChecking=no 192.168.0.100
...or by adding rules in /etc/ssh/ssh_config or ~/.ssh/config Host 192.168.0.*
StrictHostKeyChecking no
|
|