From 615ea404e0961ee97e698b5d33510efa1cda7a52 Mon Sep 17 00:00:00 2001 From: Catherine Luse Date: Fri, 12 Jul 2019 17:26:02 -0700 Subject: [PATCH] Specify SSH server config for RKE --- content/rke/latest/en/os/_index.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/rke/latest/en/os/_index.md b/content/rke/latest/en/os/_index.md index 44c16a28a2c..f97086d7db1 100644 --- a/content/rke/latest/en/os/_index.md +++ b/content/rke/latest/en/os/_index.md @@ -23,6 +23,7 @@ aliases: - [Opening port TCP/6443 using `iptables`](#opening-port-tcp-6443-using-iptables) - [Opening port TCP/6443 using `firewalld`](#opening-port-tcp-6443-using-firewalld) +- [SSH Server Configuration](#ssh-server-configuration) @@ -208,3 +209,11 @@ firewall-cmd --permanent --zone=public --add-rich-rule=' port protocol="tcp" port="6443" accept' firewall-cmd --reload ``` + +## SSH Server Configuration + +Your SSH server system-wide configuration file, located at `/etc/ssh/sshd_config`, must include this line that allows TCP forwarding: + +``` +AllowTcpForwarding yes +```