-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ZeroConf Service Discovery #1
Comments
The Samba server automatic network discovery can be added with:
Windows Explorer: Avahi smb.service <?xml version="1.0" standalone='no'?>
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>
<name replace-wildcards="yes">%h</name>
<service>
<type>_smb._tcp</type>
<port>445</port>
</service>
</service-group> My proposal is to create two separate |
Yes indeed, the idea is to have sidecar containers to handle that. |
Do you have a preference to choose an existing well-maintained and easy to configure https://hub.docker.com/search?q=avahi&type=image |
I have added these two containers, which announces the host successfully in both worlds, Windows and *nix/OSX.
Should we add this as a seperate example docker-compose file? I'd be happy to open a pull request. |
@itrich Sure contribs welcomed! |
It looks like @crazy-max added support for service discovery in #86, but I enabled it and it doesn't seem to work. I've tested with a few different clients and nothing appears. Edit: It actually is appearing in my VLC SMB clients, but not Nautilus for some reason. I'm using Raspberry Pi 5 with Ubuntu 23.10. |
As this image drops support for legacy protocols including NetBIOS, WINS, and Samba port 139 for security purposes, for Windows clients, Samba won't be shown under network browsing. We could use mDNS and DNS-SD with Samba using Avahi daemon for that but it only works on Linux and OSX machines afaik.
The text was updated successfully, but these errors were encountered: