eworm.routeros-scripts/doc/ssh-keys-import.md
Christian Hesse 4a5c55ca2b doc/ssh-keys-import: handle RSA keys only
Sadly RouterOS does not (yet) support ed25519 keys...
2021-12-16 22:26:25 +01:00

784 B

Import SSH keys

◀ Go back to main README

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 | while read type key name; do echo $type $key $name > $name.pub; done

◀ Go back to main README
▲ Go back to top