From fdd0032be5f1b0f3f1c99a320a6d032948c7bbc8 Mon Sep 17 00:00:00 2001 From: up-n-atom Date: Fri, 15 Sep 2023 16:01:12 -0400 Subject: [PATCH] Add examples to readme --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 9c87d60..328fd9a 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,21 @@ source .venv/bin/activate pip install -r requirements.txt deactivate ``` + +## Bell Home Hub 4000 Examples + +```bash +source .venv/bin/activate +# List available commands +python3 xmo-remote-client.py --help +# Dump Device tree +python3 xmo-remote-client.py -a MD5 get-value --path "Device" +# Get WAN mode +python3 xmo-remote-client.py -a MD5 get-wan-mode +# Get DNS settings +python3 xmo-remote-client.py -a MD5 get-dns +# Enable local DNS server ie. Pi-hole +python3 xmo-remote-client.py -a MD5 set-dns-servers -s 192.168.2.254 192.168.2.254 +# Disable 5G and 2.4G radios +python3 xmo-remote-client.py -a MD5 disable-wifi-radios -r RADIO5G -r RADIO2G4 +```