This will be the Not1MM contest data aggregation server. It's currently not feature complete.
- [25-12-21] changed multicast from 224.1.1.1 to 239.1.1.1
- [25-12-16] Add score widget.
- [25-10-5] Add Dupe checking.
- [25.9.26] Add support to get serial numbers from the server.
- [25.9.25] Got it generating Cabrillo files.
- Group chat
- Current User/Band/Mode
- QSO by band/mode/points
Renfield is an amateur radio contest contact aggregation server for Not1MM. It uses Textual for rendering the interface. This provides the user with either a CLI or a web interface depending on how it is launched.
The client(s) Not1MM and the server Renfield talk to each other over a UDP Multicast network connection. There is no file sharing or network file access. The Not1MM clients and Renfield each maintain their own database. As contacts are made they are stored in Not1MM's local database. That record is marked 'Dirty' and a UDP message is sent out. Once Renfield gets the message and saves it's copy, Renfield sends a response message to confirm. The Not1MM client gets the confirmation and clears the 'Dirty' flag on the record. Not1MM keeps track of the messages it has sent out. If it doesn't get a reply either because Renfield didn't get it or Not1MM didn't get the confirmation message, Not1MM will just retry every 30 seconds until it does. Each contact has a UUID v4 tag to prevent any duplicate records.
If Renfield should crash and burn, or the PC/device it is running on should catch fire. You can spin up another instance of Renfield, then have the Not1MM clients mark all their contacts as dirty, and they will re-stream all their contacts to the new server. Eventually I'll make that reciprocal. Where if a Not1MM client were to fail, it will be able to ask Renfield to send all it's contacts back.
- Make a stupid logo.
- Discover which contest is being run.
- Handle QSO CRUD operations.
- Show Points, Mults and Score.
- Show some basic band/qso/point statistics.
- Chat functions (handled by the clients)
- Manage giving out serial numbers.
- Generate a Cabrillo file.
- Indicate Dupes when queried.
- Reverse feed QSO's back to a client if requested.
You can install\update renfield easily with uv:
uv tool install renfield@latestYou can run renfield and have it's interface displayed directly in the terminal with:
# renfieldYou can run renfield as a web server with:
# textual serve renfieldYou'll see this message:
You or others on your network can connect to the web interface on port 8000
textual serve __main__.py
Communication between the clients and the server happens on UDP multicast port 2239 by default. Depending on your linux distribution you may need open that port in your firewall on each machine manually. I've retired from the IT field, so I'll leave that as an exercise for you.
Interacting with the server via it's CLI or web interface is limited.
- 'q' Quits the program.
- 'R' Resets/Wipes the database.
- 'Z' Zero out the SN server.
- 'c' Generates a Cabrillo file for whatever contest is active.

