Go to file
Santiago Lo Coco f1ca89f186 Update README.md 2024-11-05 19:40:26 +01:00
src Run linter 2024-11-05 19:39:20 +01:00
.gitignore Add files 2024-11-05 19:34:45 +01:00
.pre-commit-config.yaml Add files 2024-11-05 19:34:45 +01:00
README.md Update README.md 2024-11-05 19:40:26 +01:00

README.md

Zeroconf

This Python project broadcasts a service on a local network using UDP to enable client devices to discover and connect to it. It is especially useful when DNS is unavailable, or setting up DNS records is not feasible. By listening to UDP multicast messages, client applications (such as a Unity-based HoloLens app) can dynamically discover the service location without needing hardcoded addresses.

Features

  • Local service discovery: Allows clients on the same network to find the service by listening to a specific multicast address and port (224.0.0.251:5353)
  • Broadcasted service information: Periodically sends out service details, including IP and port, for clients to pick up and use.
  • Reliable fallback option: Offers service discovery without relying on DNS, suitable for local networks and ad-hoc setups/networks.

Prerequisites

  • python >= 3.11
  • python-venv

Usage

  1. Create your src/.env file according to your requirements. You can copy src/.env.dev as a reference.

  2. Run the application:

    bash run.sh
    

    or, if you are on Windows:

    .\start.bat
    

How clients receive the service announcement

Clients can listen to the same multicast address and port to receive service information. For instance, in Unity, you could set up a UDP listener on the multicast address, parse the received data, and use it to connect to the service. For debugging purposes, we include a client.py that you can run to test that the UDP broadcast is working as expected.

Limitations

  • Local network only: The UDP multicast approach is intended for devices on the same local network, and may not work over the internet or in networks that restrict multicast traffic.
  • No authentication: Broadcasts are open to any listener on the network, so it should only be used in secure, controlled environments.