我在一个NetApp设备上有一个CIFS的份额。我希望这个共享完全开放给同一网络上的任何用户/计算机。我不需要任何身份验证(域、工作组等);不需要提供登录/密码。
目前,我已经将CIFS配置为使用"Domain 2000“身份验证,并且具有将共享设置为"Everyone -完整读/写”的权限,但是如果您试图从不绑定到域的机器连接到它,则它请求登录信息。
发布于 2010-02-26 20:57:49
问题是身份验证的域信任级别。如果您要从非域客户端到域服务器,它总是会询问用户名/密码。据我所知,这是无法回避的。
发布于 2010-02-26 17:12:20
不知道NetApp的具体情况,但您可能需要显式地允许匿名登录、来宾或共享上的来宾。如果NetApp的操作方式与Windows相同,则可能还需要对实际文件和文件夹的NTFS权限执行相同的操作。既然是CIFS,我猜是的。
发布于 2015-05-05 08:12:31
对于7模式,您需要配置来宾帐户。未经验证的CIFS用户映射到此帐户。它是用options cifs.guest_account设置的。从手册页:
cifs.guest\_account Enables a user to get access to the filer provided that either the filer uses a Domain Controller for authentication and the user is not in a trusted domain, or the filer uses the /etc/passwd file or the NIS password database for authentication and the user has no entry in the /etc/passwd file or the NIS pass- word database. If this option is set to the name of an account in the password database, a user logging into the filer will be assigned to the guest account if their name is not listed in the password database (when using /etc/passwd or NIS) or if the user is not from a trusted domain (when using a domain con- troller). The configured user name will be used for the UNIX user ID, group ID, and group set of the spec- ified account. If the option is set to "" (null), guest access is disabled. Default: "" (null)
https://serverfault.com/questions/117201
复制相似问题