-
Notifications
You must be signed in to change notification settings - Fork 317
docs: Added Internet Connection Status description #6171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -8,6 +8,14 @@ The **Profile** tab shows several information about the gateway, organized under | |||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
|  | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| **Internet connection status**: Displays the status of the internet connection. This is updated every 30 seconds through an ICMP request to a configured IP address and host. By default, these are 198.41.30.198 and eclipse.org. The IP address can be in IPv4 or IPv6 format. | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| The status can be: | ||||||||||||||||||||||||||
| - `FULL`: The internet connection is fully available. | ||||||||||||||||||||||||||
| - `IP_ONLY`: The system can ping the configured address, but cannot resolve the host name. | ||||||||||||||||||||||||||
| - `UNAVAILABLE`: The internet connection is unavailable. | ||||||||||||||||||||||||||
|
Comment on lines
+11
to
+16
|
||||||||||||||||||||||||||
| **Internet connection status**: Displays the status of the internet connection. This is updated every 30 seconds through an ICMP request to a configured IP address and host. By default, these are 198.41.30.198 and eclipse.org. The IP address can be in IPv4 or IPv6 format. | |
| The status can be: | |
| - `FULL`: The internet connection is fully available. | |
| - `IP_ONLY`: The system can ping the configured address, but cannot resolve the host name. | |
| - `UNAVAILABLE`: The internet connection is unavailable. | |
| **Internet connection status**: Displays the status of the internet connection. This is updated every 30 seconds by sending an ICMP echo request to a configured IP address and, separately, resolving and checking reachability of a configured host name. By default, these are 198.41.30.198 and eclipse.org. The IP address can be in IPv4 or IPv6 format. | |
| The status can be: | |
| - `FULL`: The internet connection is fully available (the configured IP address responds to ICMP echo requests and the configured host name can be resolved and reached). | |
| - `IP_ONLY`: The system can ping the configured IP address, but DNS resolution and/or reachability of the configured host name fails. | |
| - `UNAVAILABLE`: The internet connection is unavailable (the configured IP address does not respond to ICMP echo requests). |
Copilot
AI
Feb 10, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is an extra blank line after the status list (two consecutive blank lines) before the next section header. Consider removing one to keep the spacing consistent with the rest of the document.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line ends with trailing whitespace. In Markdown this is easy to miss in reviews and can cause unintended formatting (e.g., hard line breaks if it becomes two spaces). Please remove the trailing space at the end of the sentence.