Skip to content

Commit 7649a2b

Browse files
authored
Merge pull request #80 from highvolt-dev/enhancement/alternative_connectivity_test
add support for alternative connectivity checks - fixes #13 #78 ; add…
2 parents 3ca7a44 + bdddfa1 commit 7649a2b

File tree

6 files changed

+136
-62
lines changed

6 files changed

+136
-62
lines changed

README.md

+46-24
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# tmo-monitor
66

7-
A lightweight, cross-platform Python 3 script that can monitor the T-Mobile Home Internet Nokia and 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.
88

99
By default, checks for n41 5G signal and connectivity to google.com via ping.
1010

@@ -32,44 +32,51 @@ When in doubt, consult this document or run `tmo-monitor.py --help`.
3232

3333
### Command line usage
3434
```
35-
usage: tmo-monitor.py [-h] [-I INTERFACE] [-H PING_HOST]
36-
[--ping-count PING_COUNT]
37-
[--ping-interval PING_INTERVAL] [-6] [-R] [-r] [--skip-bands]
38-
[--skip-5g-bands] [--skip-ping] [--skip-enbid]
35+
usage: tmo-monitor.py [-h] [--connectivity-check {ping,http}]
36+
[-I INTERFACE]
37+
[--http-target HTTP_TARGET] [--status-code {[100,600)}]
38+
[-H PING_HOST] [--ping-count PING_COUNT] [--ping-interval PING_INTERVAL] [-6]
39+
[-R] [-r]
40+
[--skip-bands] [--skip-5g-bands] [--skip-connectivity-check] [--skip-enbid]
3941
[--uptime UPTIME]
40-
[-4 {B2,B4,B5,B12,B13,B25,B26,B41,B46,B48,B66,B71}]
41-
[-5 {n41,n71}] [--enbid ENBID] [--print-config] [--logfile LOGFILE]
42-
[--log-all] [--log-delta]
43-
[--model {NOK5G21,ARCKVD21}]
42+
[-4 {B2,B4,B5,B12,B13,B25,B26,B41,B46,B48,B66,B71}] [-5 {n41,n71}]
43+
[--enbid ENBID]
44+
[--print-config]
45+
[--logfile LOGFILE] [--log-all] [--log-delta] [--syslog]
46+
[--model {NOK5G21,ARCKVD21,FAST5688W}]
4447
[username] [password]
4548
46-
Check T-Mobile Home Internet cellular band(s) and connectivity and reboot if
47-
necessary
49+
Check T-Mobile Home Internet cellular band(s) and connectivity and reboot if necessary
4850
4951
positional arguments:
5052
username the username (most likely "admin")
51-
password the administrative password (will be requested at
52-
runtime if not passed as argument)
53+
password the administrative password (will be requested at runtime if not passed as argument)
5354
5455
optional arguments:
5556
-h, --help show this help message and exit
57+
--connectivity-check {ping,http}
58+
type of connectivity check to perform (defaults to ping)
5659
-I INTERFACE, --interface INTERFACE
5760
the network interface to use for ping. pass the source IP on Windows
61+
--http-target HTTP_TARGET
62+
the URL to perform a http check against (defaults to https://google.com/generate_204)
63+
--status-code {[100,600)}
64+
expected HTTP status code for http connectivity check (defaults to 204)
5865
-H PING_HOST, --ping-host PING_HOST
5966
the host to ping (defaults to google.com)
6067
--ping-count PING_COUNT
61-
how many ping health checks to perform
68+
how many ping health checks to perform (defaults to 1)
6269
--ping-interval PING_INTERVAL
63-
how long in seconds to wait between ping health checks
70+
how long in seconds to wait between ping health checks (defaults to 10)
6471
-6, --ping-6 use IPv6 ping
6572
-R, --reboot skip health checks and immediately reboot gateway
6673
-r, --skip-reboot skip rebooting gateway
6774
--skip-bands skip check for connected 4g band
6875
--skip-5g-bands skip check for connected 5g band
69-
--skip-ping skip check for successful ping
76+
--skip-connectivity-check, --skip-ping
77+
skip connectivity check
7078
--skip-enbid skip check for connected eNB ID
71-
--uptime UPTIME how long the gateway must be up before considering a
72-
reboot (defaults to 90 seconds)
79+
--uptime UPTIME how long the gateway must be up before considering a reboot (defaults to 90 seconds)
7380
-4 {B2,B4,B5,B12,B13,B25,B26,B41,B46,B48,B66,B71}, --4g-band {B2,B4,B5,B12,B13,B25,B26,B41,B46,B48,B66,B71}
7481
the 4g band(s) to check
7582
-5 {n41,n71}, --5g-band {n41,n71}
@@ -79,7 +86,8 @@ optional arguments:
7986
--logfile LOGFILE output file for logging
8087
--log-all always write connection details to logfile
8188
--log-delta write connection details to logfile on change
82-
--model {NOK5G21,ARCKVD21}
89+
--syslog log to syslog
90+
--model {NOK5G21,ARCKVD21,FAST5688W}
8391
the gateway model (defaults to NOK5G21)
8492
```
8593

@@ -90,11 +98,25 @@ optional arguments:
9098

9199
By default, the script will assume the silver-colored Nokia NOK5G21 gateway is being used.
92100

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_.
94106

95-
### Ping options
96107
**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.
98120

99121
**Ping Host:** `-H --ping-host`
100122
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,
121143
**Skip 5g Bands:** `--skip-5g-bands`
122144
Skip check for connected 5g band.
123145

124-
**Skip Ping:** `--skip-ping`
125-
Skip check for successful ping.
146+
**Skip Ping:** `--skip-connectivity-check --skip-ping`
147+
Skip check for successful connectivity check.
126148

127149
**Uptime Threshold:** `--uptime`
128150
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.

bin/tmo-monitor.py

+12-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161

6262
if config.model == GatewayModel.NOKIA:
6363
gw_control = TrashCanController(config.login['username'], config.login['password'])
64-
elif config.model == GatewayModel.ARCADYAN:
64+
# The Arcadyan and Sagecom gateways appear to conform to the same API
65+
elif config.model in [GatewayModel.ARCADYAN, GatewayModel.SAGECOM]:
6566
gw_control = CubeController(config.login['username'], config.login['password'])
6667
else:
6768
raise Exception('Unsupported Gateway Model')
@@ -105,14 +106,22 @@
105106
print('Camping on ' + band_5g + '.')
106107

107108
# Check for successful ping
108-
ping_ms = gw_control.ping(config.ping['ping_host'], config.ping['ping_count'], config.ping['ping_interval'], config.ping['interface'], config.ping['ping_6'])
109+
ping_ms = gw_control.ping(config.ping['ping_host'], config.ping['ping_count'], config.ping['ping_interval'], config.connectivity['interface'], config.ping['ping_6'])
109110
if log_all:
110111
connection['ping'] = ping_ms
111-
if ping_ms < 0:
112+
if ping_ms < 0 and config.connectivity['connectivity_check'] == 'ping':
112113
logging.error('Could not ping ' + config.ping['ping_host'] + '.')
113114
if config.reboot['ping']:
114115
reboot_requested = True
115116

117+
# Check for successful http check
118+
if config.connectivity['connectivity_check'] == 'http':
119+
status_code = gw_control.http_check(config.http['http_target'])
120+
if status_code != config.http['status_code']:
121+
logging.error('Status code failed check for ' + config.http['http_target'] + ' - received status code ' + str(status_code))
122+
if config.reboot['http']:
123+
reboot_requested = True
124+
116125
# Reboot if needed
117126
reboot_performed = False
118127
if (reboot_requested or log_all):

example.env

+30-22
Original file line numberDiff line numberDiff line change
@@ -16,36 +16,44 @@ tmo_ping_reboot=True
1616
tmo_print_config=True
1717

1818
# Gateway model
19-
# tmo_model # {'NOK5G21' | 'ARCKVD21' } The gateway model (defaults to NOK5G21)
19+
# tmo_model # {'NOK5G21' | 'ARCKVD21' | 'FAST5688W' } The gateway model (defaults to NOK5G21)
2020

2121
# Trashcan login settings
22-
# tmo_username # defaults to 'admin'
23-
# tmo_password # if not supplied, will be prompted interactively
22+
# tmo_username # defaults to 'admin'
23+
# tmo_password # if not supplied, will be prompted interactively
24+
25+
# Connectivity check
26+
# tmo_connectivity_check # {'ping' | 'http' } Type of connectivity check to perform (defaults to ping)
27+
# tmo_interface # The network interface to use for ping. Pass the source IP on Windows. http checks use system routing rules.
28+
29+
# HTTP checks
30+
# tmo_http_target # HTTP connectivity test target (defaults to https://google.com/generate_204)
31+
# tmo_status_code # The expected HTTP status code for HTTP connectivity tests (defaults to 204)
2432

2533
# Ping configuration
26-
# tmo_interface # The network interface to use for ping. Pass the source IP on Windows.
27-
# tmo_ping_host # The host to ping (defaults to 'google.com')
28-
# tmo_ping_count # How many pings to perform before rebooting (defaults to 1)
29-
# tmo_ping_interval # The interval between pings (defaults to 10)
30-
# tmo_ping_6 # {True | False } Use IPv6 ping
34+
# tmo_ping_host # The host to ping (defaults to 'google.com')
35+
# tmo_ping_count # How many pings to perform before rebooting (defaults to 1)
36+
# tmo_ping_interval # The interval between pings (defaults to 10)
37+
# tmo_ping_6 # {True | False } Use IPv6 ping
3138

3239
# Connection configuration
33-
# tmo_primary_band # 4G band: comma-separated list from {B2,B4,B5,B12,B13,B25,B26,B41,B46,B48,B66,B71}
34-
# tmo_secondary_band # 5G band: comma-separated list from {n41,n71}
35-
# tmo_enbid # eNB ID
40+
# tmo_primary_band # 4G band: comma-separated list from {B2,B4,B5,B12,B13,B25,B26,B41,B46,B48,B66,B71}
41+
# tmo_secondary_band # 5G band: comma-separated list from {n41,n71}
42+
# tmo_enbid # eNB ID
3643

3744
# Reboot settings: minimum uptime (seconds) & reboot on failed check {True, False}
3845
# Note that these semantics differ from command line arguments!
39-
# tmo_skip_reboot # overrides all other reboot options
40-
# tmo_min_uptime # Minimum uptime to reboot, defaults to 90 seconds
41-
# tmo_ping_reboot # {True | False } Reboot on failed ping
42-
# tmo_4G_band_reboot # {True | False } Reboot on failed 4G band check
43-
# tmo_5G_band_reboot # {True | False } Reboot on failed 5G band check
44-
# tmo_enbid_reboot # {True | False } Reboot on failed eNB ID check
46+
# tmo_skip_reboot # overrides all other reboot options
47+
# tmo_min_uptime # Minimum uptime to reboot, defaults to 90 seconds
48+
# tmo_ping_reboot # {True | False } Reboot on failed ping
49+
# tmo_http_reboot # {True | False } Reboot on failed http connectivity test.
50+
# tmo_4G_band_reboot # {True | False } Reboot on failed 4G band check
51+
# tmo_5G_band_reboot # {True | False } Reboot on failed 5G band check
52+
# tmo_enbid_reboot # {True | False } Reboot on failed eNB ID check
4553

4654
# General settings
47-
# tmo_print_config # {True | False } Output configuration to console
48-
# tmo_logfile # Filename for logging output (default: 'tmo-monitor.log')
49-
# tmo_log_all # {True | False } Log all connection statistics
50-
# tmo_log_delta # {True | False } Log any change in connection statistics
51-
# syslog # {True | False } Log to syslog
55+
# tmo_print_config # {True | False } Output configuration to console
56+
# tmo_logfile # Filename for logging output (default: 'tmo-monitor.log')
57+
# tmo_log_all # {True | False } Log all connection statistics
58+
# tmo_log_delta # {True | False } Log any change in connection statistics
59+
# syslog # {True | False } Log to syslog

0 commit comments

Comments
 (0)