search for: cli_session_request

Displaying 14 results from an estimated 14 matches for "cli_session_request".

2004 Jun 03
0
ERROR: cli_session_request() failed...
...#39;t find a solution to. I checked Google, Usenet and the samba archives. I seem to find people with the problem, but no answer. When I try to use the smbspool program, I get the following error: > root@HomeLinux:/home/steve# smbspool smb://192.168.1.4/LaserPrinter 0 0 0 0 0 README > ERROR: cli_session_request() failed... > ERROR: Unable to connect to SAMBA host, will retry in 60 seconds... This shared printer works perfectly fine using other window clients. smbclient also works fine with it using the print command. So the error seems to come with the smbspool program itself. I read the man page on...
2011 Oct 29
0
samba 3.5.6 & win2k8 r2, session request fails
...SO_RCVTIMEO = 0 TCP_QUICKACK = 1 [2011/10/29 10:38:02.877122, 6] libsmb/clientgen.c:323(write_socket) write_socket(10,72) [2011/10/29 10:38:02.877141, 6] libsmb/clientgen.c:326(write_socket) write_socket(10,72) wrote 72 [2011/10/29 10:38:02.877151, 5] libsmb/cliconnect.c:1931(cli_session_request) Sent session request [2011/10/29 10:38:02.877262, 10] lib/util_sock.c:731(read_smb_length_return_keepalive) got smb length of 1 [2011/10/29 10:38:02.877278, 5] lib/util.c:617(show_msg) [2011/10/29 10:38:02.877283, 5] lib/util.c:627(show_msg) size=1 smb_com=0x0 smb_rcls=0 smb_reh=0...
2000 Jan 05
1
Signal 11 in attempt_netbios_session_request
> I have just upgraded to Samba 2.0.6 and can no longer connect to Samba > shares on my FreeBSD 3.4-RELEASE machine. When I attempt to connect, the > smb.log contains the following information: > > [2000/01/04 17:54:42, 3] libsmb/namequery.c:resolve_lmhosts(566) > resolve_lmhosts: Attempting lmhosts lookup for name > NTWEB2.AIS.MSU.EDU<0x20> > [2000/01/04
2000 Apr 20
0
Solaris upgrade (Samba panic)
...n_request(struct cli_state *cli, char *srchost, char *desthost, struct in_addr *pdest_ip) { --- The line number points to the DEBUG statement in: ---- if (!nmb_name_equal(&called, &smbservername) || !cli_initialise(cli) || !cli_connect(cli, desthost, pdest_ip) || !cli_session_request(cli, &calling, &called)) { DEBUG(0,("attempt_netbios_session_request: %s rejected the session. Error was : %s.\n", desthost, cli_errstr(cli))); cli_shutdown(cli); return False; --- I'd get a new copy of Samba 2.0.6 for Solaris 7, optionally a bin...
2004 Dec 14
0
Problems with samba
...the file, i have the following error: E [14/Dec/2004:16:45:29 -0200] [Job 6] Unable to connect to SAMBA host, will retry in 60 seconds...ERROR: SMB tree connect failed: NT_STATUS_ACCESS_DENIED E [14/Dec/2004:16:45:57 -0200] [Job 5] Unable to connect to SAMBA host, will retry in 60 seconds...ERROR: cli_session_request() failed... In cupsd.conf and smb.conf i have my network to allow print and samba access. I can make telnet in cups server in 631 port to confirm service working properly: [root@server samba]# telnet 192.168.2.1 631 Trying 192.168.6.1... Connected to server.host.com.br (192.168.2.1). Escape char...
2000 Feb 18
1
Why does Samba 2.0.6 like other systems but not itself?
...: timeout read. EOF from client. size=0 smb_com=0x0 smb_rcls=0 smb_reh=0 smb_err=0 smb_flg=0 smb_flg2=0 smb_tid=0 smb_pid=0 smb_uid=0 smb_mid=0 smt_wct=0 smb_bcc=0 protocol negotiation failed the corresponding (?) entries in the logfile would seem to be: [2000/02/18 13:34:35, 5] libsmb/clientgen.c:cli_session_request(2532) Sent session request [2000/02/18 13:34:35, 5] lib/util.c:show_msg(458) size=1 smb_com=0x0 smb_rcls=0 smb_reh=0 smb_err=0 smb_flg=0 smb_flg2=0 [2000/02/18 13:34:35, 5] lib/util.c:show_msg(464) smb_tid=0 smb_pid=0 smb_uid=0 smb_mid=0 smt_wct=0 [2000/02/18 13:34:35, 5]...
2007 Jun 03
0
Error in logs, is it a bug or a misconfiguration?
...17051]: #3 [0xb9a420] Jun 1 17:17:18 server smbd[17051]: #4 smbd [0x80229e3a] Jun 1 17:17:18 server smbd[17051]: #5 smbd(receive_smb_raw+0x34) [0x80229f44] Jun 1 17:17:18 server smbd[17051]: #6 smbd(cli_receive_smb+0x53) [0x800cac43] Jun 1 17:17:18 server smbd[17051]: #7 smbd(cli_session_request +0x121) [0x800cb7f1] Jun 1 17:17:18 server smbd[17051]: #8 smbd(cli_start_connection +0x1d4) [0x800cc704] Jun 1 17:17:18 server smbd[17051]: #9 smbd(cli_full_connection +0x70) [0x800cfa40] Jun 1 17:17:18 server smbd[17051]: #10 smbd(_spoolss_rffpcnex +0x2ce) [0x80142f0e] Jun 1 17:1...
2000 Jul 31
0
[patch] smbmount fixes for samba-2.0.7, testers wanted!
...open a new connection */ if (!(c=cli_initialise(NULL)) || (cli_set_port(c, smb_port) == 0) || !cli_connect(c, server_n, &ip)) { - fprintf(stderr,"Connection to %s failed\n", server_n); + DEBUG(0,("Connection to %s failed\n", server_n)); return NULL; } if (!cli_session_request(c, &calling, &called)) { - fprintf(stderr, "session request to %s failed\n", called.name); + DEBUG(0,("session request to %s failed\n", called.name)); cli_shutdown(c); if (strcmp(called.name, "*SMBSERVER")) { make_nmb_name(&called , "*SMBSE...
2004 Mar 16
1
could not initialise lsa pipe - unable to join domain
...rint_socket_options(105) socket option SO_RCVLOWAT = 1 [2004/03/16 11:56:53, 5] lib/util_sock.c:print_socket_options(105) socket option SO_SNDTIMEO = 0 [2004/03/16 11:56:53, 5] lib/util_sock.c:print_socket_options(105) socket option SO_RCVTIMEO = 0 [2004/03/16 11:56:53, 5] libsmb/cliconnect.c:cli_session_request(1162) Sent session request [2004/03/16 11:56:53, 5] lib/util.c:show_msg(478) [2004/03/16 11:56:53, 5] lib/util.c:show_msg(488) size=0 smb_com=0x0 smb_rcls=0 smb_reh=0 smb_err=0 smb_flg=0 smb_flg2=0 smb_tid=0 smb_pid=0 smb_uid=0 smb_mid=0 smt_wct=0 smb_bcc=0 [2004/03/16 1...
2009 Jul 10
4
Samba(3.2.12 and 3.4.0) - Winbind - trusted domains - Problem!
Good Morning! We got in some troubles using trusted domains and winbind. First i will tell you something about the network and samba configuration. For our SMB Environment we use Samba 3.2.12. We have three trusted domains. Our Samba Server uses LDAP as Backend. Most of the time it worked nice, but after some time Winbind loses User Entrys. On the windows side i can see "unknown user
2007 Jun 05
0
net rpc vampire problems
...4, 5] lib/util_sock.c:print_socket_options(206) socket option SO_RCVTIMEO = 0 [2007/05/30 11:13:14, 6] libsmb/clientgen.c:write_socket(132) write_socket(4,72) [2007/05/30 11:13:14, 6] libsmb/clientgen.c:write_socket(135) write_socket(4,72) wrote 72 [2007/05/30 11:13:14, 5] libsmb/cliconnect.c:cli_session_request(1271) Sent session request [2007/05/30 11:13:14, 10] lib/util_sock.c:read_smb_length_return_keepalive(623) got smb length of 0 [2007/05/30 11:13:14, 5] lib/util.c:show_msg(485) [2007/05/30 11:13:14, 5] lib/util.c:show_msg(495) size=0 smb_com=0x0 smb_rcls=0 smb_reh=0 smb_err=0 smb_fl...
2004 Oct 21
0
compile errors samba 3.0.7 vfs
...9; global/vscan-message.po(.text+0x2bd): undefined reference to `DEBUGLEVEL_CLASS' global/vscan-message.po(.text+0x2df): undefined reference to `dbghdr' global/vscan-message.po(.text+0x300): undefined reference to `dbgtext' global/vscan-message.po(.text+0x31f): undefined reference to `cli_session_request' global/vscan-message.po(.text+0x32c): undefined reference to `DEBUGLEVEL_CLASS' global/vscan-message.po(.text+0x34a): undefined reference to `dbghdr' global/vscan-message.po(.text+0x360): undefined reference to `dbgtext' global/vscan-message.po(.text+0x372): undefined reference to...
2003 May 22
0
net rpc samdump and vampire
...2:19:39, 5] lib/util_sock.c:print_socket_options(105) socket option SO_RCVTIMEO = 0 [2003/05/22 12:19:39, 6] lib/util_sock.c:write_socket(407) write_socket(5,72) [2003/05/22 12:19:39, 6] lib/util_sock.c:write_socket(410) write_socket(5,72) wrote 72 [2003/05/22 12:19:39, 5] libsmb/cliconnect.c:cli_session_request(1033) Sent session request [2003/05/22 12:19:39, 10] lib/util_sock.c:read_smb_length_return_keepalive(463) got smb length of 0 [2003/05/22 12:19:39, 5] lib/util.c:show_msg(456) [2003/05/22 12:19:39, 5] lib/util.c:show_msg(466) size=0 smb_com=0x0 smb_rcls=0 smb_reh=0 smb_err=0 smb_fl...
2003 Jul 31
4
winbind on Solaris 2.5.1 not working.
Ok folks, Here is the deal. I have posted to the news groups several times and gotten not a single thing. I have been trying since march to get 2.2.8a working on sol2.5.1 with winbind to do the authentication but it has failed miserably. Winbindd starts but fails to create the /tmp/.winbindd/pipe file and bombs like a daisycutter. But if I run winbindd like this " truss -aefo /tmp/file