2020-03-27 20:50:53 +00:00
|
|
|
Import SSH keys
|
|
|
|
===============
|
|
|
|
|
2023-01-10 13:45:27 +00:00
|
|
|
[⬅️ Go back to main README](../README.md)
|
2020-03-27 20:50:53 +00:00
|
|
|
|
|
|
|
Description
|
|
|
|
-----------
|
|
|
|
|
|
|
|
This script imports public SSH keys (files with extension "`pub`") into
|
|
|
|
local store for user authentication.
|
|
|
|
|
|
|
|
Requirements and installation
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
Just install the script:
|
|
|
|
|
|
|
|
$ScriptInstallUpdate ssh-keys-import;
|
|
|
|
|
|
|
|
Usage and invocation
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
Copy files with extension "`pub`" containing public SSH keys for your device.
|
|
|
|
Then run the script:
|
|
|
|
|
2022-05-11 08:29:01 +00:00
|
|
|
/system/script/run ssh-keys-import;
|
2020-03-27 20:50:53 +00:00
|
|
|
|
|
|
|
Starting with an `authorized_keys` file you can split it on a shell:
|
|
|
|
|
2021-12-16 15:30:29 +00:00
|
|
|
grep -E '^ssh-rsa' authorized_keys | nl -nrz | while read num type key name; do echo $type $key $name > $num-$name.pub; done
|
2020-03-27 20:50:53 +00:00
|
|
|
|
|
|
|
---
|
2023-01-10 13:45:27 +00:00
|
|
|
[⬅️ Go back to main README](../README.md)
|
|
|
|
[⬆️ Go back to top](#top)
|