web-dev-qa-db-ja.com

Samba共有:Wheezy-> Jessieの後にゲストログインが機能しない

まだWheezyを使用しているときは、LAN上のSamba共有に問題なくアクセスできました。しかし、Jessieにアップデートした後、Windowsと私のAndroid電話の両方が私に:SmbAuthException:ログオン失敗

私はまだ以前と同じsmb.confを使用しています:

[global]
workgroup = HOME
netbios name =myDrive
server string = BananaPi
security = user
disable spoolss = yes
log file = /var/log/samba/samba.log
syslog = 0
max log size = 100
dns proxy = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE
use sendfile = yes
aio read size = 16384
aio write size = 16384
deadtime = 30
guest account = root

[myDrive]
path = /media
read only = no
available = yes
browseable = yes
writable = yes
guest ok = yes
public = yes

ログはかなり空です:

[2015/10/12 15:47:00.759016,  0] ../source3/lib/util_sock.c:446(open_socket_in)
  open_socket_in(): setsockopt: SO_REUSEPORT = true on port 137 failed with error = Protocol not available
[2015/10/12 15:47:00.761053,  0] ../source3/lib/util_sock.c:446(open_socket_in)
  open_socket_in(): setsockopt: SO_REUSEPORT = true on port 137 failed with error = Protocol not available
[2015/10/12 15:47:00.761454,  0] ../source3/lib/util_sock.c:446(open_socket_in)
  open_socket_in(): setsockopt: SO_REUSEPORT = true on port 137 failed with error = Protocol not available
[2015/10/12 15:47:00.763518,  0] ../lib/util/become_daemon.c:136(daemon_ready)
[2015/10/12 15:47:02.325451,  0] ../lib/util/become_daemon.c:136(daemon_ready)
  STATUS=daemon 'smbd' finished starting up and ready to serve connectionsopen_socket_in(): setsockopt: SO_REUSEPORT = true on port 445 failed with error = Protocol not available
  STATUS=daemon 'nmbd' finished starting up and ready to serve connections*****

  Samba name server MYDRIVE is now a local master browser for workgroup HOME on subnet 192.168.1.70

  *****

Webからアクセスしたい場合にパスワードが必要かどうかはわかりますが、今のところはLANアクセスを再び機能させたいので、WANに焦点を当てます。

「root」のパスワードを使用してログインしようとしましたが、機能しないようです。

4
The Muffin Boy

security = usersecurity = shareに設定するか、valid users = rootまたはforce user = rootを使用して共有内の有効なユーザーを指定します

個人的には、共有でforce user =を使用しています。これは、Windowsクライアントのアクセスと認証が不十分なため、共有アクセスを台無しにするSMBセキュリティの変更にうんざりしているためです。

0
kencinder