我正在尝试使用 cifs 将 Windows 中的文件夹(由每个人共享)安装到 centOS 服务器。在 中/etc/fstab
,我得到:
//192.168.x.x/DOUGSLAPTOP/hatest /mnt/fsr01 cifs guest 0 0
我也尝试这样做:
//192.168.x.x/DOUGSLAPTOP/hatest /mnt/fsr01 cifs users,rw,user=Ryan,pass=Mon30 0 0
当我进行此更改时,我得到以下响应:
mount error(110): Connection timed out
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
我认为这与我的防火墙无关,因为我暂时关闭了它。还有其他人有其他建议吗?
答案1
非用户名密码的最佳方法是:
sec=none
以上配置是挂载选项mount.cifs
答案2
提供选项guest
应该使其不要求输入密码,但如果需要密码,它显然不起作用。
如果需要密码,您可以将其作为选项 ( username=x,password=y
) 传递,或者(更好)将包含凭据(用户名、域、密码)的文件作为选项 ( credentials=/etc/cifs_mountpoint.cred
) 传递。
man mount.cifs
更多细节。您还应该添加_netdev
作为一个选项,也许nofail
也可以。