Closed lattice0 closed 1 month ago
LOL, #342 seems to be asking for the exact opposite? You can't please all the people all the time... :wink:
You can, but you have to add the option to make it exclusive one or another
I just setted pubkey login mode and it still allowed password mode.
That is not how it is supposed to be If you select in the advanced options "Enable SSH" -> "Allow Public key authentication only" it does is supposed to disallow password logins, as is indeed best practice.
What operating system are you provisioning? Cannot reproduce the issue with RPI OS. It lets me in with public key, but if I try to force password authentication it denies access:
$ ssh pi64.local
Linux pi64 5.15.32-v8+ #1538 SMP PREEMPT Thu Mar 31 19:40:39 BST 2022 aarch64
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Fri Jun 3 09:25:36 2022 from 192.168.178.146
max@pi64:~ $
logout
Connection to pi64.local closed.
$ ssh -o PreferredAuthentications=password pi64.local
max@pi64.local: Permission denied (publickey).
$ ssh -o PreferredAuthentications=keyboard-interactive pi64.local
max@pi64.local: Permission denied (publickey)
hi i am using the latest Raspberry Pi Imager and having this issue (need)
in the previous versions of imager, you had to have either ssh key or username/password. in the latest you can do both, but if you do you must set a password (unless i am doing something wrong, which is a strong possibility!)
what i would like to do is, im imager use passwordless loging with ssh keys (as all my Pi's are headless and remote); but i want to also change the default username - currently if i want to change the username I need to also set a password
in the previous versions of imager, you had to have either ssh key or username/password. in the latest you can do both, but if you do you must set a password (unless i am doing something wrong, which is a strong possibility!)
Recent RPI OS versions kinda demand that you set a password in all cases. You can agree or disagree with that, but your system will not work properly until you set one, the nag screen preventing other things from starting.
If you have set a proper SSH public key, the password is not used when logging in through SSH though. Only for local logins.
hi @maxnet
this is what I see on a brand new imaged Pi with imager 1.7.4 (setup purely for this post)
Linux pi400 5.15.84-v7l+ #1613 SMP Thu Jan 5 12:01:26 GMT 2023 armv7l GNU/Linux
$ cat /etc/passwd | grep pi
pi:x:1000:1000:,,,:/home/pi:/bin/bash
rpi-first-boot-wizard:x:116:65534:,,,:/home/rpi-first-boot-wizard:/bin/bash
looking at the shadow file, both pi and rpi-first-boot-wizard users have '*' in the password field
you also have this in the motd
Please note that SSH may not work until a valid user has been set up.
See http://rptl.io/newuser for details.
Linux pi400 5.15.84-v7l+ #1613 SMP Thu Jan 5 12:01:26 GMT 2023 armv7l
so I would like to keep this setup, but be able to set the default user to other than pi, and avoid having the rpi-first-boot-wizard
so I would like to keep this setup, but be able to set the default user to other than pi, and avoid having the rpi-first-boot-wizard
I understand what you want. Not setting a password and just SSH username + key + a "do not want the first run wizard" checkbox is something we had before...
But is no longer supported in newer Pi OS releases. You would need to convince the Pi OS folks first that was a mistake, and the old behavior was better, before this can be changed in Imager again...
@maxnet yep... so my solution is to create a new user after the image; it is what is 👍
yep... so my solution is to create a new user after the image; it is what is
??? Just set a password in Imager in addition to the SSH key.
oh god... it must be friday afternoon and time to knock off work... you're right of course!
Probably worth keeping this one open until we fix things in Pi OS. Things are a bit busy and I would prefer to have a test system in place to automatically test all the possible use cases before making further changes, so this might take a while.
Is it just me or I was unable to set a password in Imager for user "pi" or "root".
Is it just me or I was unable to set a password in Imager for user "pi" or "root".
No idea if the operating system you were installing allows setting the root password. But if it does, it likely only allows you to login locally with it. As allowing remote password logins for the root user typically also requires you to lower security settings in /etc/ssh/sshd_config and similar configuration files. And dumbing down standard security rules is not Imager's job.
Imager only disables PasswordAuthentication in sshd_config, it does not disable KbdInteractiveAuthentication (formerly known as ChallengeResponseAuthentication). That option defaults to enabled in stock OpenSSH, no idea about RPiOS.
I believe this is fixed - certainly I've never seen this behaviour not be true on a Raspberry Pi OS flash.
Closing as fixed, please raise a new PR if there's an outstanding problem in 1.9.0
I just setted pubkey login mode and it still allowed password mode. Some people are going to put the password as
raspberry
and still get it insecure. Also I don't want my relatively weak password to be brute forced. Should have an option to disable password SSH login entirely.Thanks!