Guest User

Untitled

a guest
Jul 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. How to Join a Workgroup
  2.  
  3. 1.
  4.  
  5. Start the CIFS Service.
  6.  
  7. # svcadm enable -r smb/server
  8.  
  9. If the following warning is issued, you can ignore it:
  10. svcadm: svc:/milestone/network depends on svc:/network/physical, which has multiple instances
  11. 2.
  12.  
  13. Join the workgroup.
  14.  
  15. # smbadm join -w workgroup-name
  16.  
  17. The default workgroup name is WORKGROUP. If you want to use the default, skip this step.
  18. 3.
  19.  
  20. Establish passwords for CIFS workgroup users.
  21.  
  22. CIFS does not support UNIX or NIS style passwords. The SMB PAM module is required to generate CIFS style passwords. When the SMB PAM module is installed, the passwd command generates additional encrypted versions of each password that are suitable for use with CIFS.
  23.  
  24. 1.
  25.  
  26. Install the PAM module.
  27.  
  28. Add the following line to the end of the /etc/pam.conf file to support creation of an encrypted version of the user's password for CIFS.
  29.  
  30. other password required pam_smb_passwd.so.1 nowarn
Add Comment
Please, Sign In to add comment