mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-03 09:44:33 +02:00
add doc/ssh-keys-import.md
This commit is contained in:
parent
e8bc0a7169
commit
997ef3bf23
2 changed files with 37 additions and 5 deletions
33
doc/ssh-keys-import.md
Normal file
33
doc/ssh-keys-import.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
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:
|
||||
|
||||
while read type key name; do echo $type $key $name > $name.pub; done < authorized_keys
|
||||
|
||||
---
|
||||
[◀ Go back to main README](../README.md)
|
||||
[▲ Go back to top](#top)
|
Loading…
Add table
Add a link
Reference in a new issue