Guest User

Untitled

a guest
Feb 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.01 KB | None | 0 0
  1. [global]
  2.    workgroup = WORKGROUP
  3.    server string = %h server (Samba, Ubuntu)
  4.    dns proxy = no
  5.    log file = /var/log/samba/log.%m
  6.    max log size = 1000
  7.    syslog = 0
  8.    panic action = /usr/share/samba/panic-action %d
  9.    encrypt passwords = true
  10.    passdb backend = tdbsam
  11.    obey pam restrictions = yes
  12.    unix password sync = yes
  13.    passwd program = /usr/bin/passwd %u
  14.    passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
  15.    pam password change = yes
  16.    map to guest = bad user
  17.    hosts allow = 192.168.222. 192.168.228. 10.8.1.
  18.    usershare allow guests = yes
  19.  
  20. [homes]
  21.    comment = Home Directories
  22.    browseable = no
  23.    valid users = %S
  24.    writable = yes
  25.    create mode = 0777
  26.    directory mode = 0777
  27.  
  28. [shared]
  29.    path = /home/shared
  30.    comment = Shared Folder
  31.    public = yes
  32.    read only = no
  33.    available = yes
  34.    browseable = yes
  35.    guest ok = yes
  36.    writeable = yes
  37.    create mode = 0777
  38.    directory mode = 0777
Add Comment
Please, Sign In to add comment