mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-06-24 02:28:39 +02:00
We had... ◀ Go back to main README ▲ Go back to top ... and switch to... ⬅️ Go back to main README ⬆️ Go back to top
33 lines
811 B
Markdown
33 lines
811 B
Markdown
Import SSH keys
|
|
===============
|
|
|
|
[⬅️ Go back to main README](../README.md)
|
|
|
|
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:
|
|
|
|
/system/script/run ssh-keys-import;
|
|
|
|
Starting with an `authorized_keys` file you can split it on a shell:
|
|
|
|
grep -E '^ssh-rsa' authorized_keys | nl -nrz | while read num type key name; do echo $type $key $name > $num-$name.pub; done
|
|
|
|
---
|
|
[⬅️ Go back to main README](../README.md)
|
|
[⬆️ Go back to top](#top)
|