Enable SSH in Routinator

For the next few labs to work, we must enable SSH support within the Routinator container.

From your clab server, connect to the bash shell of Routinator as root:

docker exec -it --user root clab-rpki-RPKI sh

Download the necessary packages to enable SSH and netcat:

apk add openssh
apk add openrc --no-cache
apk add netcat-openbsd
apk add busybox-extras

Enable SSHd service:

rc-update add sshd

Create an rpki user. Use rpki as the password. It will warn you that the password is weak, but still let you use it.

adduser rpki

Create a redirection to routinator in SSHd config:

Start the SSHd service:

Last updated