- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
How to TOTALLY lock out ordinary domain users??
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have set the NG Nas Duo 2 for domain security.
I am able to configure existing shares by applying file permissions as domain admin.
However, any time a 'regular domain user' browses to the NAS, they automatically get a 'home' folder created for them, and they can do whatever they wish with it!
How can I configure things to block this behavior??
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I assume you're talking about the ReadyNAS Duo v2 (running 5.x firmware) rather than the original Duo (running 4.x).
Unfortunately user home folders cannot be disabled via the GUI on the NV+/Duo v2.
Home folders can be disabled in the back-end via SSH (from a previous thread by mdgm😞
- Edit the "/etc/default/services" file, changing "USER_HOME_DIRECTORY=1" to "USER_HOME_DIRECTORY=0"
- Update the configuration in the readynasd database:
sqlite3 /var/readynasd/db.sq3 "UPDATE service_misc SET val='0' WHERE key='USER_HOME_DIRECTORY'"
All Replies
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I assume you're talking about the ReadyNAS Duo v2 (running 5.x firmware) rather than the original Duo (running 4.x).
Unfortunately user home folders cannot be disabled via the GUI on the NV+/Duo v2.
Home folders can be disabled in the back-end via SSH (from a previous thread by mdgm😞
- Edit the "/etc/default/services" file, changing "USER_HOME_DIRECTORY=1" to "USER_HOME_DIRECTORY=0"
- Update the configuration in the readynasd database:
sqlite3 /var/readynasd/db.sq3 "UPDATE service_misc SET val='0' WHERE key='USER_HOME_DIRECTORY'"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: How to TOTALLY lock out ordinary domain users??
Yes, that's what is needed. If you are not comfortable with using SSH I can help with making the change.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: How to TOTALLY lock out ordinary domain users??
Worked like a CHARM! Thank You Very Much