Skip to content

Commit ad29212

Browse files
authored
Update install-kubeadm.md
Telnet is a command that really should not be used, as there is too great a chance it could be misused. NetCat, nc, is a better and newer tool for testing single open ports.
1 parent dc947ab commit ad29212

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/docs/setup/production-environment/tools/kubeadm/install-kubeadm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ For more details please see the [Network Plugin Requirements](/docs/concepts/ext
6969
## Check required ports
7070
These
7171
[required ports](/docs/reference/ports-and-protocols/)
72-
need to be open in order for Kubernetes components to communicate with each other. You can use telnet to check if a port is open. For example:
72+
need to be open in order for Kubernetes components to communicate with each other. You can use NetCat to check if a port is open. For example:
7373

7474
```shell
75-
telnet 127.0.0.1 6443
75+
nc 127.0.0.1 6443
7676
```
7777

7878
The pod network plugin you use (see below) may also require certain ports to be

0 commit comments

Comments
 (0)