Skip to content

Commit 6e5451d

Browse files
authored
Merge pull request #32471 from serewicz/patch-2
install-kubeadm: use nc instead of telnet
2 parents 6541860 + 5750981 commit 6e5451d

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 tools like 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)