Bash + Python hybrid script to automatically toggle Home Mode in Synology Surveillance Station, based on the presence of authorized devices detected via your FritzBox router.
This project is an enhanced, FritzBox-integrated Bash fork of
dtypo/Home-Mode-Switcher-for-Synology-Surveillance-Station.
Unlike the original version, this script:
- 💡 Uses your FritzBox API to reliably detect active devices in your Wi-Fi (even iPhones!)
- 🔒 Keeps Synology Home Mode fully in sync with the router state
- 🧩 Includes a local fallback scan for when the FritzBox is unreachable
- ⚙️ Runs directly on your NAS — lightweight, automatic, and update-safe
- ✅ Reliable detection of active devices directly via FritzBox API
- ✅ Works very well with iPhones
- ✅ Automatically toggles Home Mode in Synology Surveillance Station
- ✅ Compares desired vs. current state → avoids redundant notifications
- ✅ Lightweight Bash + Python hybrid — runs locally on your NAS
- ✅ Optional Nighttime Mode to force disarming during defined hours
- ✅ Easy integration with DSM Task Scheduler
- Synology NAS with DSM 7.x
- Surveillance Station installed and configured
- FritzBox router with local TR-064 API enabled (default on most models)
- Python 3.8–3.11 available on the NAS
- A local Python virtual environment (venv) with:
ℹ️ You do not need to open ports to the internet. Everything works over your local network.
In Surveillance Station → User → Add, create:
- User:
HomeModeSwitcher - Permission: allow only “Switch Home Mode manually.”
- Disable other SS privileges.
mkdir -p /volume1/pathto/homemode_switcher2
cd /volume1/pathto/homemode_switcher2
# Download the script
wget https://raw.githubusercontent.com/chriswa81/Home-Mode-Switcher2-for-Synology-Surveillance-Station/main/homemode_switcher2.sh
# Make it executable
chmod +x homemode_switcher2.shThis step isolates dependencies from the Synology system and ensures the setup remains functional after DSM updates.
# Create a Python virtual environment (update-safe)
# This isolates dependencies from the Synology system and remains intact after DSM updates.
cd /volume1/pathto/homemode_switcher2
# Create the virtual environment
/usr/bin/python3 -m venv venv
python3 -m venv venv
# Activate it
source venv/bin/activate
# Install required Python packages into the venv
pip install --upgrade pip
pip install fritzconnection requests
# Deactivate the venv after installation
deactivate💡 Why use venv? Synology DSM updates can overwrite or remove global Python packages. Keeping the FritzBox dependencies in a local venv folder ensures:
- The script remains self-contained and update-safe
- No system-level Python changes are required
- Easy cleanup (just delete the folder to remove dependencies)
Edit the top section of homemode_switcher2.sh with your own values:
SYNO_USER="HomeModeSwitcher"
SYNO_PASS="yourpassword"
SYNO_URL="192.168.xx.xx:5000"
FRITZ_IP="192.168.xx.1"
FRITZ_USER="homemodeswitcher"
FRITZ_PASS="yourfritzboxpassword"You will pass the authorized MAC addresses as script arguments.
bash /volume1/pathto/homemode_switcher2/homemode_switcher2.sh AA:BB:CC:11:22:33 DD:EE:FF:44:55:66Expected output:
Executed at: ...
Gefundene MAC-Adressen im Netzwerk:
-> Treffer mit autorisierter MAC: AA:BB:CC:11:22:33
Treffer insgesamt: 1
Homemode aktiviertUse DSM → Task Scheduler → Create → Scheduled Task → User-defined script:
/bin/bash /volume1/pathto/homemode_switcher2/homemode_switcher2.sh AA:BB:CC:11:22:33 DD:EE:FF:44:55:66- Run as
root(or a user with required privileges) - Set interval: every 1–5 minutes (as preferred)
- Optionally enable email notifications on failure
After the script executes:
- Open Surveillance Station → Home Mode
- Confirm that Home Mode is toggled automatically based on device presence.
-
The script authenticates to your FritzBox using fritzconnection.
-
It reads the list of active devices (MAC + hostname + status).
-
If any authorized MAC is currently active → desired state = Home Mode ON. Otherwise → desired state = OFF
-
It fetches the current Home Mode from Surveillance Station and compares:
- If desired ≠ current → it toggles Home Mode via the Synology Web API.
- If desired = current → it does nothing (no duplicate notification).
-
It writes a small cache to /tmp/homemode_state to keep track of the last decision.
If the FritzBox query fails, the script falls back to a local ARP scan to still provide best effort detection.
fritzconnection uses the same local API (TR-064) that Fritz!OS itself provides.
Compared to pure ARP/ping approaches, this has key advantages:
- Real-time device status from the router’s perspective (no stale ARP caches)
- Very reliable with iPhones, even when Wi-Fi sleeps
- No need for
nmapor SynoCli — fewer moving parts - Purely local communication, no internet access required
The helper is_nighttime() can force Home Mode OFF during certain hours:
function is_nighttime() {
current_time=$(date "+%H%M")
# Example: 23:00–06:00
if [ "$current_time" -ge "2300" ] || [ "$current_time" -lt "0600" ]; then
return 0
else
return 1
fi
}To disable the feature entirely:
is_nighttime() { return 1; }All Python dependencies live in the local venv inside the project folder:
No global packages are modified → update-safe across DSM upgrades.
-
FritzBox login fails
- Check
FRITZ_IP,FRITZ_USER,FRITZ_PASS - Ensure local TR-064 is enabled (default for most FritzBox models)
- Make sure the following options are enabled:
✅ “Allow access for applications (Apps)”
✅ “Transmit status information via UPnP”
- Make sure the following options are enabled:
- Test manually:
/volume1/pathto/homemode_switcher2/venv/bin/python3 -c "from fritzconnection.lib.fritzhosts import FritzHosts; print(FritzHosts(address='192.168.xx.1', user='USER', password='PASS').get_hosts_info()[:1])"```
- Check
-
No devices found
- Ensure NAS and FritzBox are in the same subnet
- Make sure devices connect via the FritzBox or its repeaters/mesh
-
Home Mode doesn’t change
- Verify the Surveillance Station user can switch Home Mode
- Check
SYNO_URL(port 5000/5001) - Script only toggles when desired ≠ current (by design)
- Run every 1–2 minutes for near real-time behavior
- Keep the
venvnext to your script — avoids system Python changes - For iPhones, disabling “Private Wi-Fi Address” can improve consistency (optional)
- Synology Web API endpoint:
SYNO.SurveillanceStation.HomeMode - FritzBox data via
fritzconnection.lib.fritzhosts.FritzHosts() - Local cache:
/tmp/homemode_state(storestrue/false) - Avoids redundant SS notifications by comparing desired vs. actual state
- Fallback to
/proc/net/arpscanning if FritzBox API is temporarily unavailable
MIT License
Copyright (c) 2025, chriswa81
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
Credit and inspiration: Home-Mode-Switcher-for-Synology-Surveillance-Station by dtypo
Contributions are welcome! Please open issues or pull requests for bug fixes, improvements, or new features.
