You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/content/en/docs/handbook/host-access.md
+16-4
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ aliases:
11
11
12
12
The service running on your host must either be bound to all IP's (0.0.0.0) and interfaces, or to the IP and interface your VM is bridged against. If the service is bound only to localhost (127.0.0.1), this will not work.
13
13
14
-
### host.minikube.internal
14
+
### `host.minikube.internal`
15
15
16
16
To make it easier to access your host, minikube v1.10 adds a hostname entry `host.minikube.internal` to `/etc/hosts`. The IP which `host.minikube.internal` resolves to is different across drivers, and may be different across clusters.
17
17
@@ -32,8 +32,20 @@ PING host.minikube.internal (192.168.64.1): 56 data bytes
32
32
64 bytes from 192.168.64.1: seq=0 ttl=64 time=0.225 ms
33
33
```
34
34
35
-
To test connectivity to a specific TCP service listening on your host, use `telnet host.minikube.internal <port>`. Here are how to interpret the different messages:
35
+
To test connectivity to a specific TCP service listening on your host, use `nc -vz host.minikube.internal <port>`:
36
36
37
-
*`<nothing>`: You are connected! Hit Ctrl-D to get back to a shell prompt.
37
+
```sh
38
+
$ nc -vz host.minikube.internal 8000
39
+
Connection to host.minikube.internal 8000 port [tcp/*] succeeded!
40
+
```
41
+
42
+
Here are how to interpret the different messages:
43
+
*`Connection succeeded`: You are connected!
38
44
*`Connection refused`: the service is not listening on the port, at least not across all interfaces
39
-
*`Connection closed by foreign host`: the service is listening, but decided that your telnet client did not meet the protocol handshake requirements. Using a real client will likely work.
45
+
46
+
{{% alert title="Note" color="primary" %}}
47
+
When using an older version of minikube, you may have to manually install tools like `ping` and `netcat` within the minikube image:
0 commit comments