RHEL7로 업그레이드한 후 smbclient를 연결할 수 없습니다.

RHEL7로 업그레이드한 후 smbclient를 연결할 수 없습니다.
smbclient //ERERYMJF/pwiwerp_Informatica -U 'PWI.kpp.com\a121212'

위 명령은 이전에는 제대로 작동했지만 RHEL7에서는 작동하지 않았습니다. 다음 오류가 발생합니다.

SPNEGO(gse_krb5) NEG_TOKEN_INIT failed: NT_STATUS_NO_MEMORY
session setup failed: NT_STATUS_NO_MEMORY

삼바 구성 파일

[global]
        client use spnego = no
        client ntlmv2 auth = yes

        workgroup = SAMBA
        security = user

        passdb backend = tdbsam

        printing = cups
        printcap name = cups
        load printers = yes
        cups options = raw



[homes]
        comment = Home Directories
        valid users = %S, %D%w%S
        browseable = No
        read only = No
        inherit acls = Yes

[printers]
        comment = All Printers
        path = /var/tmp
        printable = Yes
        create mask = 0600
        browseable = No

[print$]
        comment = Printer Drivers
        path = /var/lib/samba/drivers
        write list = @printadmin root
        force group = @printadmin
        create mask = 0664
        directory mask = 0775

우리는 버전 4.7.1을 사용하고 있습니다.

답변1

나는 EERRYMJF.xyz.com인 서버의 전체 이름인 ERERYMJF를 사용했는데 작동했습니다!

smbclient //**ERERYMJF.xyz.com**/pwiwerp_Informatica -U 'PWI.kpp.com\a121212'

@roaima가 언급했듯이 이것은 좋은 해결책이 아니며 삼바의 보안을 버립니다. 그러나 이것이 현재 나를 위해 일하는 유일한 솔루션인 것 같습니다.

답변2

다음과 같은 제목의 AU Q&A를 찾았습니다.Ubuntu 17.10은 IT 작업장에서 Windows 파일 공유에 액세스합니다.

SPNEGO(gse_krb5) NEG_TOKEN_INIT failed: NT_STATUS_NO_MEMORY
session setup failed: NT_STATUS_NO_MEMORY

표시된 솔루션이 귀하에게도 도움이 될 수 있습니다.

$ cat /etc/samba/smb.conf
...
client use spnego = no
client ntlmv2 auth = no
workgroup = WINWIRKGRP
...

관련 정보