Last active
December 4, 2025 23:22
-
-
Save Zahorone/6915be6f5088edb2f64018ce9e4dfe97 to your computer and use it in GitHub Desktop.
Fix for macOS 26 Tahoe Time Machine SMB backup failing with BACKUP_FAILED_DISCONNECTED_DISK_IMAGE error on Synology, QNAP, TrueNAS, UNAS. nsmb.conf configuration guide.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [default] | |
| signing_required=yes | |
| streams=yes | |
| soft=yes | |
| dir_cache_max_cnt=0 | |
| protocol_vers_map=6 | |
| mc_prefer_wired=yes |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Verified Solutions for macOS Tahoe Time Machine SMB Issues
Create or edit the file /etc/nsmb.conf:
Add the following lines:
Save the file (Ctrl+O, Enter, Ctrl+X), restart your Mac (optionally not necessary), and retry your Time Machine backup.
Explanation: macOS Tahoe changed the default from signing_required=no to stricter control. NAS devices with relaxed SMB settings cannot handle this without explicit configuration.
If your Mac, NAS, or folder name contains non-ASCII characters (e.g., Peťov MacBook), Time Machine in Tahoe will fail:
Open Disk Utility and mount the sparsebundle
Change the name to pure ASCII characters (no accents or special characters)
Time Machine will then work normally
Navigate to Control Panel > File Services > SMB > Advanced and set:
Maximum SMB protocol: SMB3
Enable Opportunistic Locking: Yes
Enable SMB2 Lease: Yes
Enable SMB Durable Handles: Yes
Server signing: No (or "Auto")
Transport encryption: Disabled
Many users have successfully used the Automounter app to keep SMB connections alive and prevent disconnections during backups.
Summary
The root cause is a compatibility issue between macOS Tahoe 26 and network NAS SMB implementations. These fixes address the SMB signing/encryption handling changes Apple introduced in Tahoe. Start with solution #1 (the /etc/nsmb.conf file) as it's the most effective and universally applicable.