- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Samba configuration help
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2002 01:00 PM
07-19-2002 01:00 PM
Samba configuration help
Thanks for any help.
Jon.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2002 01:15 PM
07-19-2002 01:15 PM
Re: Samba configuration help
Your best bet would CIFS , It is the Samba for HP-UX. You can downlod this free software from
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProducts.pl?group_name=CIFS%2F9000&group_image=cat_featured.gif&group_type=family
You'll get very nice documentation and support for this product from HP
You can configure CIFS to use only /etc/passwd for user authentication
Goodluck.
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2002 01:22 PM
07-19-2002 01:22 PM
Re: Samba configuration help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2002 01:38 PM
07-19-2002 01:38 PM
Re: Samba configuration help
Though I am not doing it, I think it's the otherway you can setup.
You can use unix password sync = true parameter along with password program = /usr/bin/passwd in your smb.conf file.
When users change their samba password, it calls the "password program" that you specified to change the unix password.
Configuring this option is risky as this program will be run AS root.
Look at the man page of smb.conf.
You can also make use of mksmbpasswd.sh script to convert the /etc/passwd file into smbpasswd file. However, it will not synchronize the passwords.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2002 01:58 PM
07-19-2002 01:58 PM
Re: Samba configuration help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2002 04:49 AM
07-25-2002 04:49 AM
Re: Samba configuration help
If you have a windows domain you can try adding the following to [global] in your smb.conf file:
workgroup = $YOURDOMAIN
security = SERVER
password server = (one or more domain controllers).
username map = /some/dir/usermap.txt (where you can translate unix user names to nt-domain user names, refer to the smb.conf manual for more info.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2002 08:08 AM
07-25-2002 08:08 AM
Re: Samba configuration help
The other option I'm looking into is LDAP integration but that's going to take more research.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2002 11:13 AM
07-31-2002 11:13 AM
Re: Samba configuration help
I'm using
Security=Server with Encryption=No. This allows the server to authenticate against my domain PDC but allows it to use plaintext passwords without hacking the registry on all of the clients. The way I understand it, the PDC sees the user/password combo coming in unencrypted and treats the client as a Windows 95 client. It then passes the user/password to the unix system _unencrypted_ and allows access as long as an /etc/passwd entry exists. No smbpasswd to maintain and no PC registry changes.
I also discovered the same effect occurs if you use Security=Domain and Encryption=Yes, but only if the user doesn't exist on the PDC (autheticate using a PDC in another domain). Here I'm guessing the PDC fails authentication and just passes the user/password, again unencrypted, to the unix server to check /etc/passwd. This seemed more like a bug though.
Hopefully this helps the next person who's trying what I did.
Thanks for everyone's input!
Jon.