Displaying 4 results from an estimated 4 matches for "other_name_seen".
2024 Oct 14
1
SSH host key rotation – known_hosts file not updated
...when a key received from the server in an update
> already exists under a different name. If you turn the debugging level up,
> then you'll see the name(s) that it matches too:
>
> 2100 if (sshkey_equal(l->key, ctx->keys[i])) {
> 2101 ctx->other_name_seen = 1;
> 2102 debug3_f("found %s key under different "
> 2103 "name/addr at %s:%ld",
> 2104 sshkey_ssh_name(ctx->keys[i]),
> 2105 l->path, l->linenum);
> 2106...
2024 Oct 14
1
Re: SSH host key rotation – known_hosts file not updated
...ddress" is triggered when a key received from the server in an update
already exists under a different name. If you turn the debugging level up,
then you'll see the name(s) that it matches too:
2100 if (sshkey_equal(l->key, ctx->keys[i])) {
2101 ctx->other_name_seen = 1;
2102 debug3_f("found %s key under different "
2103 "name/addr at %s:%ld",
2104 sshkey_ssh_name(ctx->keys[i]),
2105 l->path, l->linenum);
2106 return 0;
2107...
2024 Oct 13
1
SSH host key rotation – known_hosts file not updated
Hi,
I created new host keys on serverA, updated sshd_config accordingly
(adding the line below) and restarted ssh:
cd /etc/ssh
sudo ssh-keygen -f 2024_ssh_host_ed25519_key -t ed25519 -N ''
sudo vi /etc/ssh/sshd_config
# added line: HostKey /etc/ssh/2024_ssh_host_ed25519_key
sudo service ssh restart
When I connect to serverA (`ssh -v -o UpdateHostKeys=yes serverA`)
afterwards,
2024 Oct 17
2
Re: Re: SSH host key rotation – known_hosts file not updated
...m the server in an update
> > already exists under a different name. If you turn the debugging level up,
> > then you'll see the name(s) that it matches too:
> >
> > 2100 if (sshkey_equal(l->key, ctx->keys[i])) {
> > 2101 ctx->other_name_seen = 1;
> > 2102 debug3_f("found %s key under different "
> > 2103 "name/addr at %s:%ld",
> > 2104 sshkey_ssh_name(ctx->keys[i]),
> > 2105 l->path, l->linenum);...