Quote Originally Posted by newbiee View Post
Is it possible to configure SAMBA via web interface to use advanced security as described here - http://wl500g.info/showthread.php?31...-login-by-user ?
sure, for samba 3 a standard config is this:
Code:
[global]
	netbios name = Router
	guest account = admin
	server string = Router
	guest ok = Yes
	workgroup = MSHOME
	os level = 255
	interfaces = 192.168.2.1/24
	username map = /opt/etc/samba/user.map
	domain master = Yes
	hosts allow = 192.168.1.0/24
	encrypt passwords = yes
	security = share
	dns proxy = No
	wins support = true
	preferred master = yes

[movies]
	comment = Movies
	path = /tmp/mnt/disc0_1
	read only = No
Only thing you need to do is add the user security etc.
I recommend installing samba36 from ipkg (you have ipkg right?)

Code:
ipkg install samba36
configuration will be placed in /opt/etc/samba