Samba is a free open-source implementation of SMB protocol that provides network file share and print services. Ksmbd is a kernel server alternative for SMBv3 protocol which has less features but uses less resources.
To share a connected USB or eSATA drive (e.g. HDD, SSD, Flash) on your network you will first need to install the USB drivers, filesystem your drive is formatted to, and mount the drive. For NTFS also see writable_ntfs. Note if your filesystem is not listed below there are many others available, in LuCI filter System → Software for “kmod-fs”. Common package installation will be the following:
kmod-usb3 kmod-usb-storage-uas usbutils block-mount mount-utilskmod-fs-ext4 kmod-fs-exfat kmod-fs-ntfs3luci-app-hd-idle and enable in LuCI → Services → HDD Idle for your mounted drives to idle in low power state. hdparm may also be used instead as per usb-drives page.Note that at least 128MB RAM is recommended. Less RAM would have issues, although adding 128-256MB swap might help.
1. Install the package luci-app-samba4. Any dependencies, such as samba4-server, are installed automatically.
2. Configure Samba in LuCI on the Services → Network Shares page. It is recommended that you use LuCI for the initial configuration and only edit /etc/samba/smb.conf.template if needed via LuCI Edit Template tab, or from the shell. Basic LuCI configuration example is provided below:
3. For Network Discovery in Windows simply install wsdd2, for macOS read the section down below.
Installation is complete, you can now read/write shares on your LAN.
For example, to access a share named 'storage' hosted on your router default IP in Windows File Explorer via: \\192.168.1.1\storage\.
Windows, Linux, and macOS include SMB support in their file browsers. Android (like OpenWrt is also Linux-based) can browse shares with apps like X-plore, VLC, and Kodi.
/etc/passwd and /etc/groupsmbpasswd -a username to assign a password to samba for that user (note that command write them to /etc/samba/smbpasswd)
Example entry in /etc/passwd for user foo:
foo:x:1001:1001:smb user:/dev/null:/bin/false
Example entry in /etc/group for user foo:
foo:x:1001:foo
Select a value for the uid/gid that is >=1000 to avoid possible collisions with system reserved values of <1000.
Set up shared directories permissions according to your needs using chown and chmod.
Any unknown usernames used for authentication against Samba are mapped to a guest login silently by default.
The basic configuration from the LuCI page described above should work well for most users. For further configuration keep reading and see samba.
After modifying any of the config files, restart the Samba server so that your changes take effect:
service samba4 restart
When Samba is restarted this way, the file /etc/samba/smb.conf is (re)created from to the uci configuration file and /etc/samba/smb.conf.template.
SMB is the built-in way to share network resources between computers running Windows, even in a professional environment. Thus Samba can be very complicated to configure, especially if using Active Directory! It is also not the protocol of choice to accomplish this task in a Linux or Mac environment.
So, if for whatever reasons above configuration does not give you desired access to your shares, you can of course circumvent the uci system and hack the original Samba configuration files instead or in addition.
There may be entries which do not have a counterpart in UCI and thus can only be configured that way.
Just bear in mind, that the uci config will overwrite the values configured with it (but not the whole configuration) at every boot up! If you want configure Samba directly with /etc/samba/smb.conf instead of /etc/config/samba, it is possible to make changes to the smb.conf survive a reboot using the procedure below.
First, prevent OpenWrt from starting Samba at boot time, thus overwriting /etc/samba/smb.conf with the settings in the uci file /etc/config/samba:
service samba4 disable
Then add the following lines to /etc/rc.local to allow smbd and nmbd to start at boot time, using /etc/samba/smb.conf as the configuration file
smbd -D nmbd -D
Now edit your /etc/samba/smb.conf all you like without worrying they will be lost the next time you reboot!
The LuCI interface can be used to easily setup a share intended to be used as an Apple Time Machine Disk.
Some guides suggest the need to create a service file for avahi, this is not needed on OpenWrt. Consider also this wiki to configure Samba for macOS.
Some hints in advance:
user to share, restart the daemons and try accessing: In windows explorer type \\router_ip in the address bar.smb://router_ip/ into the address bar.Instead of looking up the whole configuration step by step, you maybe want to have a look at Samba.org: Example Network Configurations. Chapter 1: No-Frills Samba Servers. Notice that you can already achieve a great deal of security by neatly setting up the Firewall Documentation.
After installing the packages described in Installation, Samba will start on boot. This can be confirmed in the LuCI System → Startup page. If there is an issue, follow the same procedure as with most OpenWrt packages: The first command will create a symlink /etc/rc.d/S60samba, the second will only start samba right now.
service samba4 enable
service samba4 start
When Samba is configured, the shares are set browse-able, but they still don't appear when browsing the network, then it may be that local master = yes is missing from /etc/samba/smb.conf.template.
Also check if preferred master = yes is in /etc/samba/smb.conf.template.
If you cannot write to the share, Samba may not have the proper permissions to write to the shared folder.
Some have reported success by modifying the permissions and owner of the folder:
chmod -R 777 /mnt/sda1 chown -R nobody /mnt/sda1
If you are sharing a drive mounted wish fstab, you may need to modify /etc/config/fstab to include 'umask=000' in the options section.
config 'mount' option 'options' 'rw,umask=000' option 'enabled_fsck' '0' option 'enabled' '1' option 'device' '/dev/scsi/host0/bus0/target0/lun0/part1' option 'target' '/mnt/usbdisk' option 'fstype' 'vfat'
More info here: https://forum.openwrt.org/viewtopic.php?id=26625
If you need to read/write files and folders with accented characters.
sed -i -e "/unix charset/s/ISO-8859-1/UTF-8/" /etc/samba/smb.conf.template
Test results - many devices released over the late 2010s are fast enough to saturate gigabit LAN connections for Samba shares, thus testing on 2.5Gbps links are now a better check on device capability. Performance will be affected by CPU and RAM speed, USB/eSATA bus implementation, drive type and filesystem, Samba/Ksmbd version, other running tasks, etc. A short list below is pulled from various Forum posts:
Firewall configuration - for slower devices throughput may improve by disabling netfilter conntrack for Samba if you use NAT:
uci -q delete firewall.samba_nsds_nt uci set firewall.samba_nsds_nt="rule" uci set firewall.samba_nsds_nt.name="NoTrack-Samba/NS/DS" uci set firewall.samba_nsds_nt.src="lan" uci set firewall.samba_nsds_nt.dest="lan" uci set firewall.samba_nsds_nt.dest_port="137-138" uci set firewall.samba_nsds_nt.proto="udp" uci set firewall.samba_nsds_nt.target="NOTRACK" uci -q delete firewall.samba_ss_nt uci set firewall.samba_ss_nt="rule" uci set firewall.samba_ss_nt.name="NoTrack-Samba/SS" uci set firewall.samba_ss_nt.src="lan" uci set firewall.samba_ss_nt.dest="lan" uci set firewall.samba_ss_nt.dest_port="139" uci set firewall.samba_ss_nt.proto="tcp" uci set firewall.samba_ss_nt.target="NOTRACK" uci -q delete firewall.samba_smb_nt uci set firewall.samba_smb_nt="rule" uci set firewall.samba_smb_nt.name="NoTrack-Samba/SMB" uci set firewall.samba_smb_nt.src="lan" uci set firewall.samba_smb_nt.dest="lan" uci set firewall.samba_smb_nt.dest_port="445" uci set firewall.samba_smb_nt.proto="tcp" uci set firewall.samba_smb_nt.target="NOTRACK" uci commit firewall service firewall restart
For remote access configure your firewall as per below. See port explanation. Use caution here, as you may eventually expose your network to security concerns. Samba and many other packages are not always updated to the latest CVEs between releases. This is not needed for LAN access to your shares, file sharing such as SMB and NAS are typically best used for LAN access for this reason.
uci -q delete firewall.samba_nsds uci set firewall.samba_nsds="rule" uci set firewall.samba_nsds.name="Allow-Samba/NS/DS" uci set firewall.samba_nsds.src="lan" uci set firewall.samba_nsds.dest_port="137-138" uci set firewall.samba_nsds.proto="udp" uci set firewall.samba_nsds.target="ACCEPT" uci -q delete firewall.samba_ss uci set firewall.samba_ss="rule" uci set firewall.samba_ss.name="Allow-Samba/SS" uci set firewall.samba_ss.src="lan" uci set firewall.samba_ss.dest_port="139" uci set firewall.samba_ss.proto="tcp" uci set firewall.samba_ss.target="ACCEPT" uci -q delete firewall.samba_smb uci set firewall.samba_smb="rule" uci set firewall.samba_smb.name="Allow-Samba/SMB" uci set firewall.samba_smb.src="lan" uci set firewall.samba_smb.dest_port="445" uci set firewall.samba_smb.proto="tcp" uci set firewall.samba_smb.target="ACCEPT" uci commit firewall service firewall restart
Simply install the package wsdd2 which is compatible with Windows 10 and 11. File Explorer will see your share(s) on the Network page.
Apple Spotlight connections was resolved in Samba4. Some older versions of macOS (e.g. Yosemite) have problems discovering SMB network shares broadcasted by each client over the LAN, you can set up a WINS server on your router which will help them out. A WINS server is a central name server analogous to DNS but for a LAN. This service will discover SMB shares then make them available over WINS. Macs will connect to WINS to receive the list of network shares, hopefully with more success than discovering network shares themselves.
Edit the UCI template (/etc/samba/smb.conf.template) instead of directly changing /etc/samba/smb.conf so as to maintain compatibility with UCI and LuCI.
Log into LuCI, go to Services > Network Shares, go to the Edit Template tab, and add or change the following entries in the “[global]” section in the template.
[global] domain master = yes local master = yes name resolve order = wins lmhosts hosts bcast os level = 99 preferred master = yes wins support = yes
Save & Apply the changes.
You can also configure dnsmasq to broadcast the WINS server address via DHCP:
uci add_list dhcp.lan.dhcp_option="44,$(uci get network.lan.ipaddr)"
uci commit dhcp
service dnsmasq restart
SMB network shares should appear in Network home shortly after rebooting the Mac.
ps aux should show smbd -D and nmbd -D.service samba4 restart or on LuCI startup page/etc/config/fstab.fsck.exfat /dev/sda1