2023-08-07 13:39:39 +00:00
|
|
|
# mDNS Explorer
|
|
|
|
|
2023-08-23 07:39:45 +00:00
|
|
|
|
|
|
|
See all devices on your local network that advertises services through mDNS (multicast DNS).
|
2023-08-14 17:25:41 +00:00
|
|
|
|
|
|
|
![mDNS-Explorer](doc/mDNS-Explorer.png)
|
|
|
|
|
2023-08-23 07:39:45 +00:00
|
|
|
When selecting an entry from the list:
|
|
|
|
- the service URL is copied to your clipboard
|
|
|
|
- and you will see any properties from the selected service
|
2023-08-07 13:39:39 +00:00
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
Java SDK version 17 (or later) is required.
|
|
|
|
|
2023-08-23 07:39:45 +00:00
|
|
|
Information on how to build and package mDNS-Explorer:
|
2023-08-07 13:39:39 +00:00
|
|
|
|
|
|
|
```shell
|
2023-08-14 15:58:57 +00:00
|
|
|
./gradlew build jpackage
|
2023-08-07 13:39:39 +00:00
|
|
|
```
|
|
|
|
|
2023-08-14 15:58:57 +00:00
|
|
|
### Windows
|
2023-08-07 13:39:39 +00:00
|
|
|
|
2023-08-23 07:39:45 +00:00
|
|
|
Download and install:
|
|
|
|
|
2023-08-14 15:58:57 +00:00
|
|
|
- Microsoft .NET Framework 3.5
|
|
|
|
- Wix Toolset 3.11.2 (or later)
|
2023-08-07 13:39:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
### Linux
|
|
|
|
|
2023-08-23 07:39:45 +00:00
|
|
|
On Debian/Ubuntu:
|
2023-08-07 13:39:39 +00:00
|
|
|
|
2023-08-23 07:39:45 +00:00
|
|
|
- ```apt install dpkg-dev rpm```
|
2023-08-07 13:39:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
### MacOS
|
|
|
|
|
2023-08-23 07:39:45 +00:00
|
|
|
Install xcode command line tools:
|
|
|
|
|
|
|
|
- ```xcode-select --install```
|
|
|
|
|