CIFS 共享挂载错误

CIFS 共享挂载错误

我的 Fedora 13 机器上有一个 Samba 共享。问题是,在我的系统上,如果我尝试挂载共享,每次都会失败,但在所有其他 Windows 和 Linux 机器上都没有问题。

我使用以下命令来挂载共享:

安装-t cifs //192.168.1.200/myconfig /tmp/-o guest

共享配置包括/etc/samba/smb.conf

[myconfig]
 comment = Configuration Files
 path = /var/lib/config
 browseable = yes
 guest ok = yes
 writable = no
 printable = no

安全级别为/etc/samba/smb.conf

security = share

mount 命令返回的错误是:

mount error(110): Connection timed out

Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

内核日志消息是:

kernel: CIFS VFS: Error connecting to
socket. Aborting operation

kernel: CIFS VFS: cifs_mount failed
w/return code = -110

有什么问题?

有什么想法/建议吗?

答案1

连接超时

表示与 CIFS 服务的连接192.168.1.200失败。

确保您已运行,并且它正在适当的接口上smbd监听 TCP 端口(使用)。445netstat -ltn | grep :445

答案2

smb.conf 中是否有hosts allow一行允许本地连接以及 LAN 连接 - 例如:

hosts allow = 127. 192.168.1.

相关内容