# /etc/samba/smb.conf
# samba configuration file
# last updated: 11 May 2002 by akm

[global]
   ;basic server settings
   workgroup = homefield
   netbios name = nt4psbs
   ; for now!                                                 #############
   server string = Samba PDC running %v
   socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192 SO_RCVBUF=8192
   ;PDC and master browser settings
   os level = 64
   ; downgrade line below while 95 still on network           #############
   preferred master = yes
   local master = yes
   ; downgrade line below while 95 still on network           #############
   domain master = yes

   ;security and logging settings
   security = user
   ; downgrade line below while 95 still on network           #############
   encrypt passwords = yes
   log file = /var/log/samba/log.%m
   log level = 2
   max log size = 50
   hosts allow = 127.0.0.1 192.168.1.0/255.255.255.0 10.0.0.0
   ; remove the 10 network when the NHS starts routing it     #############
   ; maybe add the relevant 172 for Chapel Platt and Charters?

   ;user profiles and home directory
   logon home = \\%L\%U\
   logon drive = H:
   logon path = \\%L\profiles\%U
   logon script = netlogon.bat

# ==== shares ====
[homes]
  comment = Home Directories
  browseable = no
  writeable = yes

[profiles]
  path = /home/samba/profiles
  writeable = yes
  browseable = no
  create mask = 0600
  directory mask = 0700

[netlogon]
  comment = Network Logon Service
  path = /home/netlogon
  read only = yes
  browseable = no
  write list = akm


# ======== reference =========
#  http://www-1.ibm.com/servers/esdd/tutorials/samba/samba-3-1.html
# and prior to that section 2

