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: README.md
+46-24
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
# tmo-monitor
6
6
7
-
A lightweight, cross-platform Python 3 script that can monitor the T-Mobile Home Internet Nokiaand Arcadyan 5G Gateways for 4G/5G bands, cellular site (tower), and internet connectivity and reboots as needed or on-demand.
7
+
A lightweight, cross-platform Python 3 script that can monitor the T-Mobile Home Internet Nokia, Arcadyan, and Sagecom 5G Gateways for 4G/5G bands, cellular site (tower), and internet connectivity and reboots as needed or on-demand.
8
8
9
9
By default, checks for n41 5G signal and connectivity to google.com via ping.
10
10
@@ -32,44 +32,51 @@ When in doubt, consult this document or run `tmo-monitor.py --help`.
--log-all always write connection details to logfile
81
88
--log-delta write connection details to logfile on change
82
-
--model {NOK5G21,ARCKVD21}
89
+
--syslog log to syslog
90
+
--model {NOK5G21,ARCKVD21,FAST5688W}
83
91
the gateway model (defaults to NOK5G21)
84
92
```
85
93
@@ -90,11 +98,25 @@ optional arguments:
90
98
91
99
By default, the script will assume the silver-colored Nokia NOK5G21 gateway is being used.
92
100
93
-
Valid values are `NOK5G21` for the Nokia gateway, or `ARCKVD21` for the square, black-colored Arcadyan gateway.
101
+
Valid values are `NOK5G21` for the Nokia gateway, `ARCKVD21` for the square, black-colored Arcadyan gateway without top vent holes, or `FAST5688W` for the square, black-colored Sagecom gateway with top vent holes.
102
+
103
+
### Connectivity check
104
+
**Mode:**`--connectivity-check`
105
+
Defaults to `ping`. Can instead use a HTTP(S) based health check with the `http` value. The `http` health check defaults to checking `https://google.com/generate_204` and checking its status code. _All connectivity checks will respect the `-I --interface` flag_.
94
106
95
-
### Ping options
96
107
**Interface:**`-I --interface`
97
-
Can be used to specify the network interface used by the ping command. Useful if T-Mobile Home Internet is not your default network interface: e.g., this is running on a dual WAN router. On Windows, pass the source IP address to use.
108
+
Can be used to specify the network interface used by the ping command. Useful if T-Mobile Home Internet is not your default network interface: e.g., this is running on a dual WAN router. On Windows, pass the source IP address to use. `http` connectivity checks will be dictated by system routing rules.
109
+
110
+
### HTTP check
111
+
**Target:**`--http-target`
112
+
Defaults to `https://google.com/generate_204` - both `http` and `https` targets are supported by the `http` value of the `--connectivity-check` flag.
113
+
114
+
**Status Code:**`--status-code`
115
+
Defaults to `204` for use with `https://google.com/generate_204` - in most common use cases, a `200` status code is expected instead. Expects a numeric value between 100-599 (inclusive).
116
+
117
+
### Ping options
118
+
119
+
`ping` checks are the default connectivity check in `tmo-monitor`. It's possible to use HTTP(S)-based checks instead. Refer to the `--connectivity-check` flag.
98
120
99
121
**Ping Host:**`-H --ping-host`
100
122
Defaults to `google.com` - override if you'd like to ping an alternate host to determine internet connectivity. Must specify a host if flag is provided - you can simply omit the flag if you'd like to use the default google.com ping check.
@@ -121,8 +143,8 @@ Valid values are `NOK5G21` for the Nokia gateway, or `ARCKVD21` for the square,
Defaults to 90 seconds - Specify a required uptime for an implicit reboot to occur. Intended to allow sufficient time to establish a connection and stabilize band selection. Setting is used to avoid boot looping, but is not respected when the `--reboot` flag is used.
0 commit comments