SINUMERIK 808D Network Drive Lost: Enable SMB1 in Windows 10

David Krause12 min read
HMI / SCADASiemensTroubleshooting
Licensed PE Working through this on a live machine? A Maine-licensed engineer can take it from here — included with IMD hardware, by the hour for everything else. Book an engineer

1. Problem Description

The SINUMERIK 808D ADVANCED Turning HMI reports "The network drive connection is lost. Please check your network connection!" when an operator attempts to map or browse a shared folder on a Windows 10 PC from Setup → Network → Network Drive on the operator panel. The error is returned immediately after the operator submits a UNC path (e.g. \\192.168.214.10\MPF), a username, and a password — even when:

  • The Windows PC responds to ICMP ping from the 808D (and vice versa).
  • The shared folder is reachable from other Windows machines on the same LAN.
  • The supplied credentials are valid and the share has both NTFS and share-level permission for that account.
  • The Ethernet adapter in Windows shows only "Unidentified network" — a benign Windows behavior on point-to-point links without a DHCP server or default gateway.
Symptom signature: TCP/IP layer-3 connectivity is intact (ping passes), but the session-layer file-share handshake fails. This pattern points to a protocol-dialect mismatch on the Windows side, not a physical or IP-layer fault. Standard Windows share troubleshooting (firewall, share permissions, password) does not resolve it.

2. Affected Systems and Versions

Component Affected Versions / Models
Controller SINUMERIK 808D ADVANCED Turning — order number 6FC5370-2AM03-0AA0 — and the equivalent 808D ADVANCED Milling variant (6FC5370-2BM03-0AA0) with PPU hardware revisions that predate the SMB2/3 client upgrade.
HMI software Embedded Linux with the legacy Samba 3.x client library shipped with HMI sl versions prior to the SMB2 upgrade. The HMI's Network Drive function negotiates only the NT1 (SMB1) dialect.
Windows host Windows 10 1709 (Fall Creators Update, Oct 2017) and later — SMB1/CIFS is still installed as an optional feature but is disabled by default. Windows 11 inherits the same default state.
Network topology Direct patch or crossover cable (point-to-point) and standard switched LAN. DHCP is not required; static addressing is preferred on isolated engineering cells.

3. Root Cause: SMB1 Disabled by Default in Modern Windows

Microsoft disabled the Server Message Block 1.0 / Common Internet File System (SMB1) client and server in Windows 10 starting with version 1709 (October 2017), in response to publicly weaponized exploits including EternalBlue (MS17-010), WannaCry, NotPetya, and Adylkuzz. The protocol is still shipped as an optional Windows feature but is toggled OFF in the default install image and in many enterprise lockdown baselines.

The 808D ADVANCED HMI is built on an embedded Linux platform bundled with an older Samba client. When the operator mounts a network drive, the HMI initiates an SMB negotiate offering only the NT1 dialect. If the Windows 10 peer advertises only SMB2/SMB3 dialects in its response, the 808D cannot complete session setup — TCP three-way handshake completes, but the application-layer conversation aborts. The HMI's status message reports this as a "lost connection" because the SMB session itself never finished negotiating.

Windows 7 PCs default-enable SMB1, which is why direct, reliable mapping works from a Win7 host but fails from any Win10 build since 1709. This is the documented behavior Microsoft describes in its SMB1 removal lifecycle notice (see SMB1 deprecation lifecycle).

808D HMI Samba 3.x client Windows 10 SMB1 disabled TCP SYN → SYN-ACK → ACK (port 445) SMB negotiate request — dialects: NT1 SMB negotiate response — only SMB2/SMB3 Result: "Network drive connection is lost"

4. Prerequisites

  • Local Administrator rights on the Windows 10 PC, or ability to run elevated PowerShell / DISM.
  • Network cable connecting the 808D Ethernet port (X60 on Turning, X61 on Milling) directly to the PC's RJ-45, or via an unmanaged/managed switch.
  • Both devices on the same IPv4 subnet. 808D default: 192.168.214.1, subnet mask 255.255.255.0. Recommended PC: 192.168.214.10 static.
  • A Windows user account on the PC with a non-empty password — SMB1 / LanManager refuses empty-password client logons.
  • The folder shared with at least Read permission (and Modify if NC program write-back is needed) for the supplied account.
  • Windows Firewall profile set to Private or Domain — Public profile blocks inbound SMB by default.

5. Primary Fix: Enable SMB1 via Windows Features

  1. Open Control Panel (Win+R → control).
  2. Navigate to Programs → Programs and Features.
  3. In the left pane click Turn Windows features on or off.
  4. In the Windows Features dialog, expand SMB 1.0/CIFS File Sharing Support.
  5. Tick the checkbox(es):
    • SMB 1.0/CIFS Client — required so the 808D can mount a Windows share.
    • SMB 1.0/CIFS Server — required if the 808D's own HMI share (used by some service tools) must also be reachable from the PC.
  6. Click OK and allow Windows to apply the change. A reboot is mandatory; mounting attempts before the reboot will continue to fail.
  7. After reboot, verify the listener state from an elevated PowerShell:
    Get-SmbServerConfiguration | Select-Object EnableSMB1Protocol, RestrictReceivingNtmlSessionSecurity
    # Expect: EnableSMB1Protocol = True
Control Panel Programs Programs and Features Turn Windows features on/off Tick SMB 1.0/CIFS Client + Server → Reboot
Security warning: Enabling SMB1 reintroduces exposure to MS17-010-class exploits. Apply this fix only on isolated shop-floor segments behind a managed switch or VLAN, and pair it with a Windows Firewall rule that restricts inbound TCP 445 to the 808D PPU IP and the engineering PC IP only. See Section 11 for a hardening checklist and reference the Microsoft SMB protocol overview for protocol-dialect details.

6. Alternative: PowerShell One-Liner

For scripted deployment across multiple engineering stations, batch files, or MDT/SCCM task sequences:

# Requires elevated PowerShell
Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol-Client" -NoRestart
Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol-Server" -NoRestart
Restart-Computer -Force

Equivalent DISM invocation, useful for offline image servicing or WinPE:

DISM /Online /Enable-Feature /FeatureName:SMB1Protocol-Client /All /NoRestart
DISM /Online /Enable-Feature /FeatureName:SMB1Protocol-Server /All /NoRestart

Confirm afterward:

Get-WindowsOptionalFeature -Online | Where-Object {$_.FeatureName -match "SMB1"} | Select FeatureName, State

7. Alternative: Group Policy (Local or Domain)

For persistent enterprise deployment, or to permit guest-style access when the 808D HMI account does not strictly emit NTLMv2 responses:

  1. Open gpedit.msc (Local Group Policy Editor) or the equivalent GPO in Active Directory Group Policy Management.
  2. Navigate to Computer Configuration → Administrative Templates → Network → Lanman Workstation.
  3. Enable "Enable insecure guest logons". This permits the 808D HMI to authenticate against a share whose account has minimal LM/NTLMv1 response semantics.
  4. Navigate to Computer Configuration → Administrative Templates → Network → Lanman Server.
  5. Enable "Enable SMB1 Protocol" on the server side.
  6. Force-refresh policy: gpupdate /force, then reboot.

Equivalent registry-only toggle for locked-down images where GPO is unavailable:

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" `
  -Name "SMB1" -Type DWord -Value 1
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" `
  -Name "AllowInsecureGuestAuth" -Type DWord -Value 1

8. Verification Procedure

  1. From the Windows 10 PC, open File Explorer and enter \\192.168.214.1. The 808D's HMI share should appear (typically named share, user, or the part-program directory).
  2. From the 808D HMI: Setup → Network → Network Drive. Configure:
    • Computer: 192.168.214.10 (or the PC's hostname)
    • Path: MPF (or your shared folder name)
    • User: Windows account name
    • Password: account password
    • Domain: leave blank for local accounts
  3. Press Mount. A successful mount lists the share contents; failure returns to the same error message.
  4. Write a 1 KB test file from the 808D into the mounted share; read it back from Windows to confirm bi-directional transfer.
  5. On the Windows host, while the 808D is connected, run Get-SmbSession. The 808D's IP must appear with Dialect: 1.00 and the share name in the Path column.
  6. For TCP-layer confirmation independently of SMB: Test-NetConnection -ComputerName 192.168.214.1 -Port 445 → TcpTestSucceeded : True.

9. Network Configuration Reference

Parameter Default / Recommended Notes
808D PPU IPv4 address 192.168.214.1 Configured at Setup → Network → TCP/IP → Address
Subnet mask 255.255.255.0 (/24) Required for direct connection
Default gateway 0.0.0.0 (direct link) Set only if routed to engineering network
Engineering PC IPv4 192.168.214.10 (recommended) Static; outside DHCP pool if a router exists
SMB TCP port 445 Must be permitted inbound on the Windows Firewall Private/Domain profile
NetBIOS ports 137/UDP, 138/UDP, 139/TCP Only required if using NetBIOS names instead of IP-based UNC paths
Maximum NC filename length 32 characters Longer names silently rejected by the HMI; rename before transfer
Authentication NTLMv2 preferred; NTLMv1 fallback on legacy PPUs Disable LMHash storage on PC if compliance requires
Default 808D hostname SINUMERIK Configurable; not needed when using IP-based UNC paths
SINUMERIK 808D PPU 6FC5370-2AM03-0AA0 192.168.214.1 / 24 Windows 10 PC Engineering workstation 192.168.214.10 / 24 Patch / crossover Cat 5e or better Optional: managed switch for VLAN isolation of shop-floor segment

10. Alternative File Transfer Methods

If SMB1 cannot be enabled for security or compliance reasons, the 808D supports several alternate channels for NC program and tooling-data transfer:

Method Media / Port Typical Throughput Recommended Use Case
CF card slot (PPU front) CompactFlash up to 32 GB, FAT32 ~20 MB/s Offline part-program exchange between identical machines; no network exposure
USB stick (front Type-A) USB 2.0, FAT32 ~25 MB/s Field engineering, small NC files < 4 GB
RS-232 / DNC mode (X27) DB-9 null-modem cable, 9600–115 200 baud ~115 kbit/s Legacy shops with no Ethernet infrastructure
FTP server (firmware-activated) Ethernet, TCP 21 ~8 MB/s Replaces SMB with a more permissive protocol when SMB1 cannot be enabled
SINUMERIK Integrate Client Ethernet, TCP 102 (S7 protocol) native Modern successor to network drives; requires 808D ADVANCED PPU with the corresponding firmware option
Field tip: For shops running Windows 10 22H2 or Windows 11 with mandatory SMB1 disabled by policy, configure the 808D's FTP server (Setup → Network → FTP) and transfer via FileZilla or Windows command-line FTP. The FTP username and password are configured in the same menu as the network drive. FTP avoids the SMB1 exposure entirely.

11. Security Considerations

Enabling SMB1 reintroduces vulnerabilities that Microsoft has deprecated since 2017. The risk profile depends entirely on network exposure — on an isolated engineering cell, residual risk is manageable; on a corporate network, it is not.

Threat CVE / Bulletin Mitigation
EternalBlue remote code execution MS17-010 Apply all cumulative Windows updates; restrict inbound 445/TCP via Windows Firewall
WannaCry / NotPetya worm propagation n/a (worm class) Isolate shop-floor subnet from corporate LAN and internet; disable SMB1 on any internet-routable machine
NTLMv1 relay / pass-the-hash n/a (protocol weakness) Force NTLMv2 on the PC; require SMB signing; use a dedicated service account with no local admin rights
Anonymous / guest enumeration n/a Disable "Enable insecure guest logons" if the share account supports strict auth; require explicit username + password

Recommended hardening checklist when SMB1 must remain enabled:

  1. Configure Windows Firewall with Advanced Security: inbound rule for 445/TCP scoped to the 808D PPU IP and the engineering PC IP only. Reject all other sources.
  2. Place both devices on a dedicated VLAN with no route to the corporate LAN or internet.
  3. Use a low-privilege local account on the PC (for example cncuser) with a strong 12+ character password; remove it from the local Administrators group.
  4. Apply the principle of least privilege: NTFS ACL on the share folder = cncuser: Modify; share permission = cncuser: Read/Write.
  5. Audit share access weekly from PowerShell: Get-SmbSession | Where-Object {$_.ClientComputerName -match 'SINUMERIK'} | Select ClientComputerName, ClientUserName, Dialect, SecondsConnected.
  6. Subscribe to Siemens Industry Online Support security advisories for firmware updates that add SMB2/3 support on the 808D ADVANCED PPU.

12. Troubleshooting Matrix

Observed Symptom Likely Cause Fix / Action
Ping OK, share not visible from 808D SMB1 disabled on Win10 Enable SMB1 per Section 5; reboot
Ping OK, mount fails with auth error Empty / wrong password; LMCompatibility mismatch Set a non-empty password on the share account; enable "insecure guest logons" GPO
Ping fails; "Unidentified network" on PC Mismatched subnet or absent gateway on direct link Set PC IP 192.168.214.10/24, no gateway; temporarily disable Windows Firewall for diagnosis
Mount succeeds, file write fails NTFS read-only ACL on share Grant the 808D account Modify on the folder (Properties → Security → Edit)
Mount succeeds, file names truncated 808D NC filename limit 32 chars Rename to ≤ 32 chars before copy; HMI silently rejects longer names
Mount succeeds, then drops after ~30 s Windows Firewall idle-timeout killing session, or SMB signing mismatch Disable SMB signing requirement on the share; set Windows Firewall inbound 445 idle timeout to never
Works pre-Windows Update, fails post-update Update re-disabled the SMB1 feature Re-enable; lock feature state via Group Policy Preferences or a scheduled task that re-applies the optional feature
Works on Win7, fails on Win10 only SMB1 dialect — confirmed root cause Apply Section 5 fix
Mount succeeds but copy of NC file is corrupted File > 4 GB on FAT32 share, or transfer interrupted Use NTFS-formatted share or split files; verify file size match after copy
DNS / hostname resolution fails No DNS server on direct link Use IP-based UNC path (\\192.168.214.10\MPF) instead of hostname

13. Reference: 808D Network Menu Map

Setup
└── Network
    ├── TCP/IP
    │   ├── DHCP            [OFF]            (default OFF)
    │   ├── Address         192.168.214.1    (default)
    │   ├── Subnet Mask     255.255.255.0    (default)
    │   └── Gateway         0.0.0.0          (default — direct link)
    ├── Computer Name      SINUMERIK         (default, configurable)
    ├── Network Drive
    │   ├── Computer        192.168.214.10   (engineering PC)
    │   ├── Path            MPF              (shared folder name)
    │   ├── User            cncuser          (low-privilege account)
    │   ├── Password        ********
    │   └── Mount           [Execute]
    ├── FTP (optional)
    │   ├── Server Active   [ON]
    │   ├── User            cncuser
    │   └── Password        ********
    └── HMI Access          [Activate]

HMI sl Menu (alt path)
└── Setup
    └── Network Drive
        └── (same fields as above)

FAQ

Why does my Windows 10 PC show "Unidentified network" when connected directly to the 808D?

This is normal on point-to-point Ethernet links that lack a DHCP server, default gateway, or DNS resolver. It is purely a Windows network-location indicator and does not affect TCP/IP file sharing once SMB1 is enabled. Suppress the warning by assigning a static IP on the PC, configuring the adapter profile as "Private" in Network and Sharing Center, and using an IP-based UNC path (e.g. \\192.168.214.10\MPF) instead of a hostname.

Will enabling SMB1 on Windows 10 also expose the PC to internet-borne worms?

Only if inbound TCP 445 is reachable from untrusted networks. Block inbound 445 on any perimeter firewall and on the Windows Firewall Public profile. On an isolated shop-floor subnet the residual risk is limited to lateral movement from a compromised engineering laptop; apply MS17-010 patches and use a low-privilege service account with no local administrator rights to bound that risk.

Why does the shared folder work from Windows 7 but not Windows 10?

Windows 7 ships with SMB1 enabled by default; Windows 10 (1709+) ships with it disabled. The 808D HMI only speaks the NT1 (SMB1) dialect. The two operating systems behave identically once the optional SMB1 feature is enabled on the Windows 10 host and the machine is rebooted.

Is there a firmware update for the 808D that supports SMB2 or SMB3?

Newer 808D ADVANCED PPU revisions and the SINUMERIK ONE successor support SMB2/3 and the SINUMERIK Integrate client for direct program transfer. Verify your PPU order number (6FC5370-2AM03-0AA0 for the Turning variant) against the latest firmware release notes on the Siemens Industry Online Support portal and apply the most recent service pack if available.

Can a mapped network drive be used to transfer NC programs and tooling data simultaneously?

Yes. The 808D treats the mounted share as a single block device; multi-file copy from the HMI's Program Manager is sequential. For large multi-megabyte NC programs, prefer FTP or the CF card slot for higher throughput and to avoid intermittent drops on long-lived SMB1 sessions.

Back to blog