spacepaste

  1.  
  2. [global]
  3. restrict anonymous = 2
  4. # if you use Win9x, set "restrict anonymous" to 1 instead
  5. log file = /var/log/samba.log
  6. workgroup = home
  7. # workgroup name needs to be the same as workgroup name on
  8. # Windows computers.
  9. security = user
  10. encrypt passwords = yes
  11. # "security" should be set to share or user, unless you have a domain network
  12. # (if you don't know what a domain network is, you don't have one). and we want
  13. # password encryption
  14. interfaces = lo eth0
  15. hosts allow = 127.0.0.1 192.168.1.116 192.168.1.115 192.168.1.110 192.168.1.125
  16. # second number in "hosts allow" should be set to your network IP address.
  17. # we also have loopback in there in case we need it for testing purposes
  18. hosts deny = 0.0.0.0/0
  19. # "no one can access me unless they are in 'hosts allow.'"
  20. [share]
  21. comment = Gentoo File Server Share
  22. path = /home/bry2k200/Media
  23. browsable = yes
  24. guest ok = yes
  25. read only = no
  26. create mask = 0755
  27.