From 49fd6d8a3a1f9427b56bc51c7a7cf5985a3ea960 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Fri, 18 Apr 2025 18:26:48 +0200 Subject: [PATCH] Added suggestion to enable quiet mode for ssh client --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e9ea8c3..db2816c 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This deployment runs in a cluster with [Authelia](https://github.com/authelia/au A tunnel can be opened using the following command: ``` -ssh @ [-p ] -t -R :localhost: +ssh @ [-p ] -tq -R :localhost: ``` This will open a new tunnel with a randomly generated name, you can specify a name for the tunnel by instead using `-R ::localhost:`. @@ -44,10 +44,11 @@ To make connecting slightly easier I recommend adding the following to `~/.ssh/c ``` Host tunnel - HostName + HostName Port - User - RequestTTY yes + User + RequestTTY yes + LogLevel QUIET ``` You can now connect with `ssh tunnel -R :localhost:`.