CentOS7 からsambaに接続できない

Date 2019-4-23 15:04:03 | Topic: Linux (CentOS)運用時のメモ

CentOS6と同じようにマウントしようとしたらエラーが出た。
mount error(22): Invalid argument
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
なのでログを見てみる。(/var/log/message)
CIFSで検索すると
No dialect specified on mount.
Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3), from CIFS (SMB1).
To use the less secure SMB1 dialect to access old servers which do not support SMB3 (or SMB2.1)
specify vers=1.0 on mount.
とあったので仕方無くセキュリティーの低いVERSION 1 を使う。
mount.cifs //192.168.xx.xxx/XXX /xxxxxx -o username=XXXXXXXXX,vers=1.0(ユーザー名の後に カンマを付けて vers=1.0)
これでパスワードいれれば繋った。


This article comes from 錦稜会 KINRYOKAI
https://www.kinryokai.net

The URL for this story is:
https://www.kinryokai.net/article.php?storyid=354