mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
add doc/ssh-keys-import.md
This commit is contained in:
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)
|
@@ -3,9 +3,8 @@
|
|||||||
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
|
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
|
||||||
#
|
#
|
||||||
# import ssh keys from file
|
# import ssh keys from file
|
||||||
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ssh-keys-import.md
|
||||||
|
|
||||||
# Split files with several keys from a shell...
|
:foreach Key in=[ / file find where type="ssh key" ] do={
|
||||||
# while read type key name; do echo $type $key $name > $name.pub; done < keys.pub
|
/ user ssh-key import user=admin public-key-file=[ / file get $Key name ];
|
||||||
# ... then transfer with scp/sftp.
|
}
|
||||||
|
|
||||||
:foreach Key in=[ / file find where type="ssh key" ] do={ / user ssh-key import user=admin public-key-file=[ / file get $Key name ]; }
|
|
||||||
|
Reference in New Issue
Block a user