From 0996d78ecd76f66af093c2063d4677f811098246 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 1 Nov 2018 03:49:36 -0600 Subject: [PATCH] add note on ssh --- lib/admin/index.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib/admin/index.html b/lib/admin/index.html index e6ffba2..51a748a 100644 --- a/lib/admin/index.html +++ b/lib/admin/index.html @@ -142,6 +142,22 @@
Key-Only Authentication is enabled :)

+
+ Important: Accessing this device with other SSH clients: +
+ In order to use your other ssh clients with telebit you will need to put them into + ssh+https mode. + + We recommend downloading sclient + to do so, because it makes it as simple as adding -o ProxyCommand="sclient %h" to your + ssh command to enable ssh+https: +
ssh -o ProxyCommand="sclient %h" {{ newHttp.name }}
+
+ However, most clients can also use openssl s_client, which does the same thing, but is + more difficult to remember: +
proxy_cmd='openssl s_client -connect %h:443 -servername %h -quiet'
+ssh -o ProxyCommand="$proxy_cmd" hot-skunk-45.telebit.io
+