<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAMBA Configuration in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621243#M377520</link>
    <description>Hi Anoop,&lt;BR /&gt;&lt;BR /&gt;1.  Depends on how you want to map users:  usermap file, winbind, Unified Login.  Look at this whitepaper:  &lt;A href="http://docs.hp.com/en/16322/CIFSUnifiedLoginV2.pdf" target="_blank"&gt;http://docs.hp.com/en/16322/CIFSUnifiedLoginV2.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2.  Don't understand the question, but you can use [homes] as the default for /home.  But for /share/test you need a specific share defined.&lt;BR /&gt;&lt;BR /&gt;3.  No - not for authentication.  But for ACL management you need to run syncsmbpasswd (see appendix C in the whitepaper above).&lt;BR /&gt;&lt;BR /&gt;4.  Mount the share from a Windows client.  /share/test needs to have the correct local (HP-UX) permissions for user authorization.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Eric Roseme</description>
    <pubDate>Thu, 22 Apr 2010 15:25:04 GMT</pubDate>
    <dc:creator>eric roseme</dc:creator>
    <dc:date>2010-04-22T15:25:04Z</dc:date>
    <item>
      <title>SAMBA Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621240#M377517</link>
      <description>Hi Talents&lt;BR /&gt;Need to clarify some basic queries related to samba configuration in hp-ux&lt;BR /&gt;version: hp-ux 11.23&lt;BR /&gt;queries&lt;BR /&gt;=======&lt;BR /&gt;1.Whether we need to use same passwd on both boxes(windows/unix)?&lt;BR /&gt;2.Whether users home directory should be same as the shared drive(here /share/test)?&lt;BR /&gt;3.Here security = ADS, so whether the user test need to be added as smabpasswd -a test?&lt;BR /&gt;4.How wecan check from whether the user test can access the shared drive /share/test.&lt;BR /&gt;5.Any other modification need to be done below configurations.&lt;BR /&gt;&lt;BR /&gt;in /etc/opt/smb/smb.conf we are configured as below&lt;BR /&gt;&lt;BR /&gt;workgroup = IND&lt;BR /&gt;security = ADS&lt;BR /&gt;realm = IND.CHN.CORP.DO.COM&lt;BR /&gt;netbios name = nxxxxxxx&lt;BR /&gt;encrypt passwords = yes&lt;BR /&gt;password server = Axxxxxxx.com, Bxxxxx.com, *&lt;BR /&gt;domain master = auto&lt;BR /&gt;local master = yes&lt;BR /&gt;preferred master = auto&lt;BR /&gt;wins server = Cxxxxxxx.com&lt;BR /&gt;********sharing************&lt;BR /&gt;[test]&lt;BR /&gt;comment = test&lt;BR /&gt;path = /share/test&lt;BR /&gt;browseable = yes&lt;BR /&gt;guest ok = no&lt;BR /&gt;===========================================&lt;BR /&gt;regards,</description>
      <pubDate>Wed, 21 Apr 2010 03:58:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621240#M377517</guid>
      <dc:creator>Anoop Sivan</dc:creator>
      <dc:date>2010-04-21T03:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAMBA Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621241#M377518</link>
      <description>Hi,&lt;BR /&gt;Here is the step by step to configure samba &lt;BR /&gt;May this help you,&lt;BR /&gt;&lt;BR /&gt;TO check the CIFS Software is installed or not.&lt;BR /&gt;#swlist -l product| grep -i cifs&lt;BR /&gt;&lt;BR /&gt;Edit the file and make the value 1 to stsrt the smb services at every boot.&lt;BR /&gt;#vi /etc/rc.config.d/samba&lt;BR /&gt;&lt;BR /&gt;RUN_SAMBA=1&lt;BR /&gt;&lt;BR /&gt;Configure /etc/opt/samba/smb.conf&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#vi /etc/opt/samba/smb.conf {Make the changes as per your requirment}&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;[global]&lt;BR /&gt;&lt;BR /&gt;# workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4&lt;BR /&gt;&lt;BR /&gt;workgroup = UKDOM1&lt;BR /&gt;&lt;BR /&gt;# server string is the equivalent of the NT Description field&lt;BR /&gt;&lt;BR /&gt;server string = CIFS9000 Samba Server&lt;BR /&gt;&lt;BR /&gt;# this tells Samba to use a separate log file for each machine&lt;BR /&gt;&lt;BR /&gt;# that connects&lt;BR /&gt;&lt;BR /&gt;log file = /var/opt/samba/log.%m&lt;BR /&gt;&lt;BR /&gt;log level = 1&lt;BR /&gt;&lt;BR /&gt;# Security mode. Most people will want user level security. See&lt;BR /&gt;&lt;BR /&gt;# security_level.txt for details.&lt;BR /&gt;&lt;BR /&gt;security = user&lt;BR /&gt;#=========================== Share Definitions =========================&lt;BR /&gt;&lt;BR /&gt;[homes]&lt;BR /&gt;&lt;BR /&gt;comment = Home Directories&lt;BR /&gt;&lt;BR /&gt;browseable = no&lt;BR /&gt;&lt;BR /&gt;# This one is useful for people to share files&lt;BR /&gt;&lt;BR /&gt;[tmp]&lt;BR /&gt;&lt;BR /&gt;comment = Temporary file space&lt;BR /&gt;&lt;BR /&gt;path = /tmp&lt;BR /&gt;&lt;BR /&gt;read only = no&lt;BR /&gt;&lt;BR /&gt;[ora1]&lt;BR /&gt;&lt;BR /&gt;comment = Shared Database Directory&lt;BR /&gt;&lt;BR /&gt;path = /ora1&lt;BR /&gt;&lt;BR /&gt;writable = yes&lt;BR /&gt;&lt;BR /&gt;browseable = yes&lt;BR /&gt;&lt;BR /&gt;Verify your smb.conf configuration with the testparm utility&lt;BR /&gt;&lt;BR /&gt;#/opt/samba/bin/testparm&lt;BR /&gt;&lt;BR /&gt;Load smb config files from /etc/opt/samba/smb.conf&lt;BR /&gt;&lt;BR /&gt;Processing section "[homes]"&lt;BR /&gt;&lt;BR /&gt;Processing section "[tmp]"&lt;BR /&gt;&lt;BR /&gt;Processing section "[ora1]"&lt;BR /&gt;&lt;BR /&gt;Loaded services file OK.&lt;BR /&gt;&lt;BR /&gt;Processing comments in /etc/opt/samba/smb.conf&lt;BR /&gt;&lt;BR /&gt;The SMB/CIFS password file does not exist by default. We need to create it and ensure that the permissions are correct. Again&lt;BR /&gt;&lt;BR /&gt;#ll /var/opt/samba/private&lt;BR /&gt;&lt;BR /&gt;#touch /var/opt/samba/private/smbpasswd&lt;BR /&gt;&lt;BR /&gt;#chmod 500 /var/opt/samba/private&lt;BR /&gt;#chmod 600 /var/opt/samba/private/smbpasswd&lt;BR /&gt;#ll /var/opt/samba/private&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#/opt/samba/bin/smbpasswd -a &lt;USERNAME&gt;&lt;BR /&gt;&lt;BR /&gt;Start the CIFS daemon&lt;BR /&gt;&lt;BR /&gt;#/sbin/init.d/samba start&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Verify the configuration with the smbclient utility&lt;BR /&gt;&lt;BR /&gt;#/opt/samba/bin/smbclient -L localhost -U%&lt;BR /&gt;&lt;BR /&gt;Suraj&lt;/USERNAME&gt;</description>
      <pubDate>Wed, 21 Apr 2010 04:19:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621241#M377518</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2010-04-21T04:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAMBA Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621242#M377519</link>
      <description>Thanks for the reply&lt;BR /&gt;I already go through Charlees Keenans HP-UX Bible.</description>
      <pubDate>Wed, 21 Apr 2010 04:37:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621242#M377519</guid>
      <dc:creator>Anoop Sivan</dc:creator>
      <dc:date>2010-04-21T04:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAMBA Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621243#M377520</link>
      <description>Hi Anoop,&lt;BR /&gt;&lt;BR /&gt;1.  Depends on how you want to map users:  usermap file, winbind, Unified Login.  Look at this whitepaper:  &lt;A href="http://docs.hp.com/en/16322/CIFSUnifiedLoginV2.pdf" target="_blank"&gt;http://docs.hp.com/en/16322/CIFSUnifiedLoginV2.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2.  Don't understand the question, but you can use [homes] as the default for /home.  But for /share/test you need a specific share defined.&lt;BR /&gt;&lt;BR /&gt;3.  No - not for authentication.  But for ACL management you need to run syncsmbpasswd (see appendix C in the whitepaper above).&lt;BR /&gt;&lt;BR /&gt;4.  Mount the share from a Windows client.  /share/test needs to have the correct local (HP-UX) permissions for user authorization.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Eric Roseme</description>
      <pubDate>Thu, 22 Apr 2010 15:25:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/samba-configuration/m-p/4621243#M377520</guid>
      <dc:creator>eric roseme</dc:creator>
      <dc:date>2010-04-22T15:25:04Z</dc:date>
    </item>
  </channel>
</rss>

