Samba

連接到沒有使用者名/密碼的 Samba 共享

  • October 17, 2012

我剛剛在 CentOS 5 機器上設置了 Samba。它工作正常,但我想對其進行配置,以便使用者無需提供使用者名和密碼即可連接到 Samba 共享。我已經用Google搜尋了 smb.conf 參考,但文件似乎非常分散且不全面。有人可以解釋如何實現這一目標嗎?非常感謝。

我正在使用

[global]

security = share

在 smb.conf 中。

這似乎足以進行無密碼訪問。這些電腦屬於同一個工作組,但我不知道這是否是強制性要求。

smb.conf匿名訪問範例:

#======================= Global Settings

[global]
  workgroup = WORKGROUP
  netbios name = Encre
  security = user
  hosts allow = 192.168.0.0/24 127.0.0.1
  hosts deny = 0.0.0.0/0
  log file = /var/log/samba/%m
  max log size = 50
  socket options = TCP_NODELAY

#============================ Share Definitions

[homes]
  comment = Home Directories
  browseable = no
  writable = yes

[other]
  comment = other!
  path = /home/otheruser/share
  force user = otheruser
  force group = otherusergroup
  read only = No
  guest ok = Yes

#============================

引用自:https://serverfault.com/questions/92119