Minimal illustration of two computer monitors with Windows and Linux icons connected by arrows, and the text ‘View Linux on Windows.’

Enable Linux Machine Discovery in Windows 10/11 Using WS-Discovery (WSD)

Last updated on | 100 replies

Introduction

Modern Windows 10/11 systems no longer use legacy SMBv1/NetBIOS for network discovery, meaning your Linux machines may not show up automatically in File Explorer’s Network view. Instead, Windows relies on Web Services for Devices (WSD) to locate devices. This guide explains how to use the lightweight wsdd daemon on Linux so your Samba shares are discoverable by Windows.

Prerequisites

  • A Linux system with administrative (sudo) access.
  • Samba installed and configured with at least one shared folder.
  • A Windows PC set to a Private Network with Network Discovery enabled.

Step 1: Install and Configure Samba

Samba is essential for sharing files between Linux and Windows. If you haven’t installed Samba yet, follow the instructions below for your distribution:

Ubuntu/Debian:

sudo apt update && sudo apt install samba

Fedora: sudo dnf install samba
Arch Linux: sudo pacman -S samba
openSUSE: sudo zypper install samba

After installation, configure a Samba share by editing /etc/samba/smb.conf or using a GUI tool. Ensure that Samba’s services are running and that the firewall allows access to ports 445 and 139 (plus UDP 137-138 if needed).

Step 2: Install the WS-Discovery Daemon (wsdd)

The wsdd daemon advertises your Linux system on the network so Windows can discover it. Install it using your package manager:

Ubuntu 22.04+/Debian:

sudo apt update && sudo apt install wsdd

Fedora: sudo dnf install wsdd
Arch Linux: sudo pacman -S wsdd
openSUSE: sudo zypper install wsdd

If wsdd is not available in your repository, refer to the wsdd GitHub repository for manual installation.

Step 3: Enable and Verify the wsdd Service

Check that the wsdd service is active:

systemctl status wsdd

If the service isn’t running, start and enable it:

sudo systemctl start wsdd
sudo systemctl enable wsdd

You can monitor its logs with sudo journalctl -u wsdd -f to ensure it’s working properly.

Step 4: (Optional) Limit wsdd to Specific Interfaces

If your Linux system has multiple network interfaces and you prefer to limit wsdd to one (for example, eth0), edit its configuration file. On Debian/Ubuntu, this is typically /etc/default/wsdd (on RPM-based systems, it might be /etc/sysconfig/wsdd):

/etc/default/wsdd
# Specify network interfaces (space-separated)
WSDD_INTERFACES="eth0"

# Optional: additional wsdd options
WSDD_OPTIONS="--shortlog"

Save and exit (press CTRL + X, press Y, then press ENTER)

Reload systemd and restart wsdd:

sudo systemctl daemon-reload
sudo systemctl restart wsdd

Step 5: Configure Firewall Rules

Allow the necessary ports for WSD discovery. The wsdd daemon uses:

  • 3702/udp for multicast discovery
  • 5357/tcp for HTTP responses
  • 5358/tcp for HTTPS responses (if used)

For example, on Ubuntu with ufw:

sudo ufw allow 3702/udp
sudo ufw allow 5357/tcp
sudo ufw allow 5358/tcp

Also ensure Samba’s ports (TCP 445 and 139, plus UDP 137-138 if required) are open. If your network uses VLANs or multicast filtering, verify that multicast addresses (239.255.255.250 for IPv4 and ff02::c for IPv6) are not blocked.

Step 6: Testing and Troubleshooting

With wsdd running and your firewall configured, open Windows File Explorer and click on Network. Your Linux machine should appear within a few minutes. If it doesn’t:

  • Ensure the Windows PC is on a Private Network with Network Discovery enabled.
  • Verify the wsdd service status with systemctl status wsdd and review logs using sudo journalctl -u wsdd -f.
  • Temporarily disable firewalls on both Linux and Windows to check for blocking issues.
  • Confirm that Samba is properly configured and that you can access the share manually (e.g., via \\hostname\share).

Step 7: Manual Installation for Older or Unsupported Distros

If your distribution doesn’t include wsdd in its repositories, you can install it manually:

  • Download the latest source from the wsdd GitHub repository.
  • Extract the archive and copy the wsdd.py script to /usr/bin/wsdd (renaming it to wsdd) and make it executable.
  • Copy the provided wsdd.service file to /etc/systemd/system/.
  • Reload systemd and enable the service:
    sudo systemctl daemon-reload
    sudo systemctl enable wsdd
    sudo systemctl start wsdd

Conclusion

This guide has shown you how to enable Linux machine discovery in Windows 10/11 using WS-Discovery (WSD) via the wsdd daemon. With Samba sharing and wsdd in place, your Linux server will be visible in Windows File Explorer’s Network section—making cross-OS file sharing both seamless and secure.

Let me know if this helped. Follow me on Twitter, Facebook and YouTube, or 🍊 buy me a smoothie.

100 replies

Leave a reply

Your email address will not be published. Required fields are marked *

  1. hi,
    i am an absolute linux/ubuntu noob. after 3 days of following different guides for connection problems between ubuntu and win10 (without success except loosing my mind) i found this awesome explanation. Thank you so much for your effort.

  2. I sitting at my Windows desktop following this guide using super putty to cycle through my long-missing SAMBA shares R-pi’s and and Ubuntu server running my Ubiquiti controller and video services. No sooner I’m done with each SAMBA servers config from this guide, BAM, it’s populating my Win10 network explorer. KUDOS!

  3. Finally I found the greatest step by step guide!!! Thank you Author, you’ve done an amazing work!!!
    Let me just describe in short my problem and what result I wished to achieve:

    1. I have a wi-fi router to which there are several laptops connected without any special “pro level”, “upper level” network setting stuff. Just from time to time buying a new device, “search for wlan”, “enter the password”, “connected” – that’s all.
    2. All the laptops I connected before were with Windows and all of them just “see” each other without any “magic”. Once I “Share a folder” on any Windows laptop it’s seen and accessable from the other Win laptops.
    3. Recently I purchased a laptop without an OS and decided to use Linux Mint the latest Cinnamon (20) flavor of Ubuntu. Clean installation. And the same scenario — “search wlan”→”enter password”=”Connected”. OK. But this device was unseen by the Windows laptops and it does not detect any Windows device. In fact it just sees itself in its “network” window…
    4. So in order to change that situation I just installed SAMBA, updated all the apps, then added WDS in accordance with your instructions. Now there’s a great result: my Mint laptop is seen on all the Windows devices. I can create a shared folder on my Linux device and Windows has an instant access to its content. Super!
    5. But I have to state that it’s the half of the path as the Linux device itself does not see any Windows device in its “Network”. So I have to do some additional actions in the opposite direction: to make my Linux Mint laptop “see” or “discover” the other Windows laptops.

    What steps shall I have to do???
    Thanks in advance

  4. Hey,

    I did the master branch install and the Samba share didn’t show up in Win10 or the server either. I then uninstalled and installed the feat-discovery branch and installed fine. But when I ran the wsdd status command at the end, I had the following errors.

    wsdd.service – Web Services Dynamic Discovery host daemon
    Loaded: loaded (/etc/systemd/system/wsdd.service; enabled; vendor preset: enabled)
    Active: active (running) since Sat 2020-08-15 16:15:41 EDT; 40s ago
    Main PID: 30179 (python3)
    Tasks: 1 (limit: 18918)
    Memory: 10.1M
    CGroup: /system.slice/wsdd.service
    └─30179 python3 /usr/bin/wsdd –shortlog

    Aug 15 16:15:41 devastator systemd[1]: Started Web Services Dynamic Discovery host daemon.
    Aug 15 16:15:41 devastator wsdd[30179]: WARNING: no interface given, using all interfaces
    Aug 15 16:15:41 devastator wsdd[30179]: /usr/bin/wsdd:989: DeprecationWarning: The ‘warn’ method is deprecated, use ‘warning’ instead
    Aug 15 16:15:41 devastator wsdd[30179]: logger.warn(‘new address {} on {}’.format(addr, interface.name))
    Aug 15 16:15:41 devastator wsdd[30179]: WARNING: new address 127.0.0.1 on lo
    Aug 15 16:15:41 devastator wsdd[30179]: /usr/bin/wsdd:992: DeprecationWarning: The ‘warn’ method is deprecated, use ‘warning’ instead
    Aug 15 16:15:41 devastator wsdd[30179]: logger.warn(‘ignoring address on {}’.format(interface.name))
    Aug 15 16:15:41 devastator wsdd[30179]: WARNING: ignoring address on lo

    What do I need to edit to remove or fix those errors?

    1. Also wanted to include the feat-discovery branch, I dont’ see the share or the server in Win10. I’m running Ubuntu 20.04

    2. You shouldn’t need the feat-discovery branch anymore, and by the way, those errors are “normal” – but they are removed in the master branch.

      I would recommend removing it and reinstalling master branch. Then I would make sure sharing and enabled correctly in Win 10. Check firewall, etc. Can you see other Win 10 shares for example? (if you have another machine to test).

      1. I reinstalled the master branch, rebooted Win10, checked over my Win10 FW and I can’t see anything that would stop the Samba server/shares from showing up. I really haven’t played with the Win10 FW I have my advanced sharing option set to “Private” vs “Public”. Network Discovery is enabled on Private and so is “Turn on automatic setup of network connected devices”. Other than that, I don’t see what else to change that would prevent the shares/server from showing up. On another note, I have an app called CX Explorer on android and it can see my Samba server name just find. I also checked on my 2 Nvidia Shields and they are not seeing the shares/server under the SMB mounting section in Kodi.

      2. So I setup my 2 laptops with a share on each and I can access them and see the “Computer names” under the Network section in explorer. However I don’t see the folder or “Computer name” for my desktop on either of the laptops. Not sure if that would cause any problems with seeing the Samba share. I also don’t see the Samba share or server name on either of the laptops.

        I also am able to see the computer names and shares of each laptop on one another.

        So my desktop is seeing the other Win10 laptops, but still not showing Samba. Not concerned about the laptops not being able to see my desktop at this point. Just want that Samba server and share to show up on all the computers at this point.

        Any suggestions?

        1. Have you set up a shared folder in Ubuntu? You can list them with smbclient -L localhost

          Mine looks like:

          Sharename       Type      Comment
          ---------       ----      -------
          Public          Disk      
          Media           Disk      
          IPC$            IPC       IPC Service (Samba 4.11.6-Ubuntu)
          SMB1 disabled -- no workgroup available
          1. Yup they do:

            Sharename Type Comment


                print$          Disk      Printer Drivers
                LTS             Disk
                IPC$            IPC       IPC Service (devastator server (Samba, Ubuntu))

            SMB1 disabled — no workgroup available

            LTS is the one I’m sharing

          2. I noticed something funny happening. So I can’t see the server. I can Map a network drive to the share. Now if I goto “Map Network Drive section and type in \LTS and then click browse, I see the server ip address under the Network tree.

            Network
            v
            192.168.1.101 (ubuntu server)
            Laptop 1 (laptop shares are still accessible)
            Laptop 2

            If I expand the server 192.168.1.101, I then see the LTS share, and I can map the drive or specific directory on the sharew I want. But still no luck on it showing up under Explorer – > Network.

          3. I posted a couple messages yesterday, they were pending review. When I refreshed the pending messages were gone. Not sure if you got them or not. Let me know and I can re-post.

      3. UPDATE: I’m now able to see my desktop computer and shares on my Laptops and vice versa. Still no luck with the Ubuntu Samba server or share showing up. Except on my cellphone.

  5. Fixed. I had switched from /home/username/sambashare to /home/samba/sambashare and needed to run
    the following series of (sudo) commands: service smb stop; vi /etc/smb.conf (to make certain the new path was changed); service smb restart; service smb force-reload; service smb status. I can see the non-empty files now. My first files (in the old sambashare path) had the same names (as the ones in the new sambashare path) and were created with touch (so were empty). I wish I could’ve merely edited my original comments so these added ones are not separate, however, the “waiting for approval is the slowdown and I didn’t want to bother anyone with my mistakes, as one comment would’ve allowed. That’s life. Best to all. chris

  6. I am seeing the Ubuntu 18.04 sambashare folder and its files (in both This PC and Network/ubuntu-ipAddress) however, when opening or editing the one-liner test files, they have no lines in them at all. I must have missed an ironically-described “intuitive step” along the way. Does the issue sound familiar? Thanks.

  7. Well Done. Thanks a lot. You did my day! My Xubuntu changed interface name(Ill try later discover why). My ip was changed, also interface name and I couldnt reconnect my win10 to samba server on Xubuntu 18.04. I found this wsdd package and suppose, may be later, will be included on next version of Ubuntu.

  8. I followed the instructions without success.
    All services are available and running (samba & wsdd), in Windows Explorer I can see the Ubuntu machine but I get an error when I try to open it. Windows displays a “Windows cannot access \MYSERVER. I run the diagnostics but all I get is this message: “Troubleshooting couldn’t identify the problem”.
    I’m running Windows 10 Version 2004 (19041.329) and Ubuntu Desktop 20.04.
    Any help will be appreciated.

  9. regarding the Ubuntu 20.04 related issue, I opened an issue on Github and the answer is: use v0.6
    I replaced the /usr/bin/wsdd file with the v0.6 wsdd.py and everything is OK now. Most warnings have also vanished.
    It would be great if you could update your post here, because your detailed step by step instructions are very helpful for people like me.
    I would not have even tried without your guide.
    Thanks again!

    1. Hi Pat. Many thanks for the update and kind comments.

      I have now updated the guide to use the master branch as these CPU and race issues seem to be resolved in 0.6.

      I have kept the instructions for installing the feat-disovery branch at the bottom of the guide just in case anyone is having issues with the master branch.

  10. Same as Boandlgramer 🙁
    Didn’t work for me. No discovery and the service puts a 100% load on one core permanently. No special warning, looked like it’s working but it didn’t.
    Ubuntu 20.04 – fresh install.

    1. Did you have Samaba installed and working before following this guide? To check if it’s working ok, run sudo systemctl status smbd

      If we can gather some more information about this issue, we can submit an issue on the GitHub.

      1. After a bit of “guesstroubleshooting” (I am not python fluent, by far!) I managed to make it work (samba server visible and no more 100% CPU load), by editing the wsdd file in the def handle_request(self): part to add a break statement as shown below (100% load was created by a never ending loop)

        addr = None
                    i = offset + IFA_MSG_LEN
                    while i - offset < msg_len:
                        attr_len, attr_type = struct.unpack_from('HH', buf, i)
                        logger.warning('ligne1171 attr_type:{}'.format(attr_type))
                        if attr_type == IFA_LABEL:
                            name, = struct.unpack_from(str(attr_len - 4 - 1) + 's',
                                                       buf, i + 4)
                            self.add_interface(name.decode(), ifa_idx, ifa_scope)
                        break # exit the loop once an interface has been added
                        elif attr_type == IFA_LOCAL and ifa_family == socket.AF_INET:
                            addr = buf[i + 4:i + 4 + 4]
                        elif (attr_type == IFA_ADDRESS and
                                ifa_family == socket.AF_INET6):
                            addr = buf[i + 4:i + 4 + 16]
                        elif attr_type == IFA_FLAGS:
                            _, ifa_flags = struct.unpack_from('HI', buf, i)
                        i += ((attr_len + 1) // RTA_ALIGNTO) * RTA_ALIGNTO
                        logger.debug('rt_attr {} {}'.format(attr_len, attr_type))

        While at it, I also replaced 6 occurences of logger.warn( by logger.warning(to get rid of related warning messages.
        Now I don't have the message about "using all interfaces" or something similar any more, but I have warnings about invalid resolve request:
        Not sure what they mean but they don't seem to hurt… in my own case 😉
        This is not a clean fix, I don't have the required knowledge, it's just an opportunistic fix.

        HTH

        1. Thanks for the response. Hopefully it can help others.

          (And sorry for the comments system, it’s still a bit buggy when handling code but I will have it fixed soon)

  11. Sorry – didn’t work for me. No discovery and the service puts a 100% load on one core permanently. No special warning, looked like it’s working but it didn’t.
    Ran it on ubuntu server 20.04 – nearly clean install.

  12. Installed this morning following guide above with the “feat-discovery” changes. Everything worked as advertised except the status numbers were different and I had an extra line of warnings. I was using ssh on Windows Powershell to install and after the sucessful installation I jumped to my Windows File Explorer and opened then after a few seconds the Network section showed all of my Windows machines and the Linux server. I clicked on the server and it then showed my Linux shares which I opened a previous saved text document and watched a clip of a video from the server on the Windows machine.

    Next I used Powershell to reboot the Linux server and closed the File Expolrer window. Linux server has a fast bootup and after waiting a minute I opened a new File Explorer window and again after a few seconds all Windows machines and Linux server appeared in the Network section.

    Wonderful and thank you. I have a 3 drive ZFS pool on the Linux server. To get the shares setup using the ZFS wrapper, Samba configuration, and Windows Discovery has taken me quite a while in which weeks were spent using Duck Duck Go and Google to almost finally end this journey. Hopefully the Samba gurus will get their socks on and implement this discovery process soon. Kind of silly for the “Next Operating System” to be behind M$ Windows instead of leading.

    Thanks again,
    Rich

    1. The guide has now been updated to use a different branch (feat-discovery), which will resolve that reboot issue.

      If you had already installed the master branch, please follow section “How to Uninstall wsdd” and then reinstall by following section “Installing WDS on Ubuntu”. Let me know if it works.

  13. It’s works until reboot, then the wsdd service fails to start. I have to start it manually myself. Any ideas?

    ● wsdd.service - Web Services Dynamic Discovery host daemon
         Loaded: loaded (/etc/systemd/system/wsdd.service; enabled; vendor preset: enabled)
         Active: failed (Result: exit-code) since Sun 2020-05-03 12:48:08 CEST; 35min ago
        Process: 1398 ExecStart=/usr/bin/wsdd --shortlog (code=exited, status=1/FAILURE)
       Main PID: 1398 (code=exited, status=1/FAILURE)
    
    may 03 12:48:08 ubuntu wsdd[1398]:     self.server_bind()
    may 03 12:48:08 ubuntu wsdd[1398]:   File "/usr/bin/wsdd", line 64, in server_bind
    may 03 12:48:08 ubuntu wsdd[1398]:     super().server_bind()
    may 03 12:48:08 ubuntu wsdd[1398]:   File "/usr/lib/python3.8/http/server.py", line 138, in server_bind
    may 03 12:48:08 ubuntu wsdd[1398]:     socketserver.TCPServer.server_bind(self)
    may 03 12:48:08 ubuntu wsdd[1398]:   File "/usr/lib/python3.8/socketserver.py", line 466, in server_bind
    may 03 12:48:08 ubuntu wsdd[1398]:     self.socket.bind(self.server_address)
    may 03 12:48:08 ubuntu wsdd[1398]: OSError: [Errno 99] Cannot assign requested address
    may 03 12:48:08 ubuntu systemd[1]: wsdd.service: Main process exited, code=exited, status=1/FAILURE
    may 03 12:48:08 ubuntu systemd[1]: wsdd.service: Failed with result 'exit-code'.
    1. There is a problem with the master branch of wsdd, which causes a race issue on Ubuntu after reboot. The guide has now been updated to use a different branch (feat-discovery), which will resolve that reboot issue. If you had already installed the master branch, please follow section “How to Uninstall wsdd” and then reinstall by following section “Installing WDS on Ubuntu”. Let me know if it works.

      A note from the wsdd dev on this issue:

      I haven’t looked into the package, but I assume the user-contributed Ubuntu/Debian package does not include the development version but an officially released one from the master branch. The master branch version is still affected from the race condition. Nothing has been merged/rebased into master so far. So, if you want to try the latest version from the development branch (feat/discovery), you have to clone/download it from Github and install it manually.

  14. Thank you so much this had been driving me crazy !! i had even tried smb1 and it still wasnt working but i followed your instructions and tada worked like a charm!!