Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 875 Bytes

File metadata and controls

66 lines (43 loc) · 875 Bytes

smasniff

A python module to collect SMA Speedwire data from your local network.

Usage

Using uv
uv run --from https://github.com/helo9/smasniff.git spwdump
Using pip
pip install https://github.com/helo9/smasniff.git
spwdump

Common Issues

The communication is often blocked by firewalls. You need to allow udp port 9522, e.g.

Fedora

Check if the port is allowed

sudo firewall-cmd --query-port=9522/udp

Allow temporarily

sudo firewall-cmd --add-port=9522/udp # until next reboot

or permanent

sudo firewall-cmd --add-port=9522/udp --permanent
sudo firewall-cmd --reload
Debian
sudo ufw allow 9522/udp

License

MIT