Open inuites opened 8 months ago
Maybe the DSM firewall is activated and needs an exception for WSD discovery. You could try if it makes any difference when disabling the firewall temporarily.
Thank you for your response. This is a fresh install, and the DSM firewall is off by default. Activating or deactivating the firewall doesn't seem to make a difference. For additional context, DSM is running in a Debian VM hosted on Proxmox. Is anyone else experiencing this issue?
Using nmap it seems that port 3702 used for WS-Discovery is closed on vDSM. I tried also without macvlan and forcing port mapping 3702:3702 but still not working :/
The port 3702 with WSDD is UDP and not TCP. So I am not sure if nmap will detect it, because it seems it can only scan TCP ports.
Yes you're right. I've just tested my real synology and 3702 is closed too so it means nothing
Just commenting for anyone that ends up here due to macvlan setup issues:
find /sys/class/net -type l -not -lname '*virtual*' -printf '%f\n'
Actually even using ports mapping without Macvlan I can't manage to auto-discover Samba shares with WS Discovery feature. So it looks like that Macvlan has nothing to do with it.
services: dsm: container_name: dsm image: vdsm/virtual-dsm environment: RAM_SIZE: "4G" CPU_CORES: "4" DISK_SIZE: "16G" # system disk ALLOCATE: "N" # growable disk DISK_FMT: "qcow2" # growable disk devices:
Note: If I setup an official virtual DSM on true synology device, then WS discovery is working correctly.
@kroese Do you manage to see virtual DSM in windows networks for instance ?
Thank you for your help
@inuites You mapped 3702 as a TCP port, but for UDP I think it should look something like: - 3702/udp:3702/udp
I guess.
I don't have a Windows network at my house and I am not using the container for any file sharing myself (but for Surveillance Station), so I have no easy way to test it. But as nobody ever mentioned this issue before, I just assumed it worked, otherwise I would have expected more people complaining about it.
So maybe someone else who reads this can comment if it works for them or not.
我也遇到这个问题,正在寻找解决办法
@inuites, Did you enable promiscuous mode on proxmox ?
Thank you for the suggestion. I enabled it as you recommended, but unfortunately, it doesn't seem to have made a difference.
Have you encountered this issue as well? I can't determine whether it's affecting everyone or just a few users. Understanding this could help me figure out whether I should focus on the host side, Docker settings, or the container itself to find a solution..
Yes, I've encountered similar issues when running AdguardHome as Docker container with macvlan
Hi everyone, I've set up my vDSM with a MacVLAN network. It's working fine; the vDSM has its own IP address (192.168.1.241), and I can manually access the shares in Windows by entering the share path, for example, \192.168.1.241\share1. Unfortunately, SMB discovery isn't working, even though WS-Discovery is activated in the DSM configuration panel. Is there anything else I could do to resolve this issue?
macVLAN settings
docker-compose.yml:
Thank you very much