Following instruction on this page you can test if your host has accses to the public internet.
On the machine host that runs your service run command below to prove that it has access to public internetthe next command:
Code Block | ||
---|---|---|
| ||
echo quit | timeout 3 telnet 8.8.8.8 53 | ||
The above command will try for three seconds to connect to a commonly
...
known named server hosted by google (port 53
is the default port for DNS services).
Panel | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
TIP: If google services are not available in your organizationorganisation, please pick a suitable alternative IP address port pair. In the UK |
Expected success output
Code Block |
---|
Trying 8.8.8.8... Connected to 8.8.8.8. Escape character is '^]'. Connection closed by foreign host. |
Tip |
---|
This means that your machine can establish a network connection to a google server on port 53. |
Expected failure output
Code Block |
---|
Trying 8.8.8.8... |
Warning |
---|
Absence of ` |
...
This is most probably an issue in your network.
Panel | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
TIPNEXT: Try to resolve the issue within your organization. |
...