smbclient fallisce con il messaggio 'negoziazione del protocollo fallita: NT_STATUS_INSUFFICIENT_RESOURCES', cosa significa e come risolverlo?


8

Sto tentando di accedere a una condivisione di Windows con smbclient e visualizzo questo errore NT_STATUS_INSUFFICIENT_RESOURCES, indipendentemente dalle credenziali corrette o errate.

Il comando riguardava l'elenco delle condivisioni:

smbclient -L //computer.domain -U domain/username

Richiede la password ma non riesce dopo.

Se si tenta di aprire una condivisione su di esso, accade lo stesso:

smbclient //computer.domain/sharename -U domain/username

Mi sono guardato attorno e non ho trovato nulla di rilevante. Altri client Samba falliscono con simili messaggi di errore insignificanti.

Posso accedere alla condivisione da Windows 7.

Posso anche accedere ad altre condivisioni da Linux, tranne quelle memorizzate su quel particolare computer.

Quindi, come posso accedere a questa problematica condivisione di Windows con smbclient? È possibile? In caso contrario, ci sono soluzioni alternative?

(Sto usando un Ubuntu Server 12.04)


Si prega di inviare il tuosmb.conf
cuonglm

Risposte:


6

Problema

Nel cliente

sudo mount -t cifs -o uid=user,gid=user,username=user,password=password //192.168.0.100/shared /mnt/smb
mount: Cannot allocate memory

smbclient -L pc -U user%password
protocol negotiation failed: NT_STATUS_INSUFFICIENT_RESOURCES

dmesg | tail
…
[49474.230547] CIFS VFS: cifs_mount failed w/return code = -12

Soluzione

Il riavvio LanmanServerpuò risolvere il problema

Nel server

net stop LanmanServer /y && net start LanmanServer
These workstations have sessions on this server:

192.168.0.100
These workstations have sessions with open files on this server:

192.168.0.100
The following services are dependent on the Server service.
Stopping the Server service will also stop these services.

   HomeGroup Listener
   Computer Browser

The HomeGroup Listener service is stopping.
The HomeGroup Listener service was stopped successfully.

The Computer Browser service is stopping..
The Computer Browser service was stopped successfully.

The Server service is stopping.
The Server service was stopped successfully.

The Server service is starting.
The Server service was started successfully.
net start Browser
The requested service has already been started.
net start HomeGroupListener
The HomeGroup Listener service is starting.
The HomeGroup Listener service was started successfully.

Dopo questo smbclientnel client non restituisce un errore

smbclient -L pc -U user%password
Domain=[PC] OS=[Windows 7 Ultimate 7601 Service Pack 1] Server=[Windows 7 Ultimate 6.1]
…

Cliente

Il cliente è

cat /etc/issue
Ubuntu 13.04 \n \l

sudo dmidecode | grep -A2 "Base Board"
   Manufacturer: Intel Corporation
   Product Name: 440BX Desktop Reference Platform

server

Il server è

ver
Microsoft Windows [Version 6.1.7601]

dmidecode | grep -A2 "Base Board"
   Manufacturer: ASUSTeK COMPUTER INC.
   Product Name: P8Z77-M PRO
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.