{% extends 'base.html' %} {% from '_partials/page_header.html' import page_header %} {% block title %}Serial · SSH Gateway{% endblock %} {% block content %} {{ page_header('Serial', tabs=tabs, active_tab='ssh_gateway') }}

SSH gateway

Lets a console be reached with an SSH client instead of the browser. One switch for the whole unit: while it is running, every enabled console set to {{ ssh_modes | join(' or ') }} can be reached this way.

{{ 'running' if ssh_gateway_active else 'stopped' }}

Not 22 — that is the unit's own administration login.

ssh {{ '' }}:{{ '' }}@{{ device_ip or '' }} -p {{ ssh_gateway_port }}

The username carries the console's TCP port, e.g. admin:2001, and the password is your ConsoleMate account.

{% endblock %}