Specify SSH server config for RKE

This commit is contained in:
Catherine Luse
2019-07-12 17:26:02 -07:00
parent 3ddc1f1598
commit 615ea404e0
+9
View File
@@ -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)
<!-- /TOC -->
@@ -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
```