diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-18 23:04:46 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-18 23:04:48 +0200 |
commit | e59da2923cbbb21258cc9769b6a152d6af78abe6 (patch) | |
tree | 3a54084962628c6faf15299daab3067586453625 /src/systemd/dropbearkey.service | |
parent | 067ddcf27ac1fbc33cee710ae66a85b0368a26d9 (diff) | |
download | vyos-1x-e59da2923cbbb21258cc9769b6a152d6af78abe6.tar.gz vyos-1x-e59da2923cbbb21258cc9769b6a152d6af78abe6.zip |
console-server: T2490: add SSH support
A user can define a port under the SSH node per device. WHen connecting to that
port and authenticating using regular credentials we will immediately drop to
the serial console. This is the same as executing "connect serial-proxy <name>".
Diffstat (limited to 'src/systemd/dropbearkey.service')
-rw-r--r-- | src/systemd/dropbearkey.service | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/systemd/dropbearkey.service b/src/systemd/dropbearkey.service new file mode 100644 index 000000000..770641c8b --- /dev/null +++ b/src/systemd/dropbearkey.service @@ -0,0 +1,11 @@ +[Unit] +Description=Dropbear SSH Key Generation +ConditionPathExists=|!/etc/dropbear/dropbear_rsa_host_key + +[Service] +ExecStart=/usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key +RemainAfterExit=yes + +[Install] +WantedBy=multi-user.target + |