From 3fbcadc69fab777eda9008813c6319c72b7b8d32 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 3dc63d908de..b92097c4823 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) @@ -217,3 +218,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 +```