Displaying 19 results from an estimated 19 matches for "max_xmit".
2004 Nov 25
0
smbmount, max_xmit and block size negotiation
...I am wondering what the right way is to have smbmount negotiate a
block size value of more than 4kB with the Samba server.
I cannot seem to let smbmount understand the value I want it to use. I
assumed first it gets this from smb.conf, and by adding DEBUG() info to
the code and printing c->max_xmit, that's what it is using in smbmount.c.
I also tried influencing the number using the sockopt smbmount option, but
with no effect. The smbd itself is using max xmit of either 65535 or
32384. Neither seem to have an effect on the negotiation. The resulting
connection (from Linux to Linux) se...
2003 Nov 07
4
Smoother bandwidth limiting
Skipped content of type multipart/signed-------------- next part --------------
--
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html
1999 Aug 06
0
MS-Client
...size=35
smb_com=0x75
smb_rcls=2
smb_reh=0
smb_err=1
smb_flg=128
smb_flg2=0
smb_tid=0
smb_pid=21433
smb_uid=0
smb_mid=1
smt_wct=0
smb_bcc=0
tree connect failed: ERRSRV - ERRerror (Non-specific error code.)
-------------- next part --------------
smb_newconn: fd=3, pid=20343
smb_newconn: protocol=1, max_xmit=1024, pid=20343 capabilities=0x0
smb_errno: errcls 1 code 2 from command 0x8
smb_errno: errcls 1 code 2 from command 0x8
smb_errno: errcls 1 code 2 from command 0x8
smb_errno: errcls 1 code 2 from command 0x8
smb_errno: errcls 1 code 2 from command 0x8
smb_errno: errcls 1 code 2 from co...
2005 May 17
6
RPC error logging in to PDC on Win-64
I've upgraded one of my client boxes to Windows 64 bit edition but now it cannot login to the Samba PDC, instead it gives a RPC error after entering the password. The Win32 boxes can still login fine.
I can get accounts without admin rights to login but those with the rights are given a message stating "The system cannot log you on due to the following error:
A remote procedure call
2000 Jun 28
1
[Patch] Shorter patch for smbfs 2.2.16
...d\n");
- goto out;
- }
-
error = -EBADF;
filp = fget(opt->fd);
if (!filp)
@@ -652,7 +674,8 @@
/* now that we have an established connection we can detect the server
type and enable bug workarounds */
- if ((server->opt.max_xmit < 0x1000) &&
+ if (server->opt.protocol == SMB_PROTOCOL_NT1 &&
+ (server->opt.max_xmit < 0x1000) &&
!(server->opt.capabilities & SMB_CAP_NT_SMBS)) {
server->mnt->version |= SMB_FIX_WIN95;
#ifdef SMBFS_DEBU...
2004 Sep 06
2
Samba + Exchange 5.5 SP4
...28.html
Running an ethereal trace, I see this conversation at the time of the
crash:
exchange -> pdc: NT Create AndX Request, Path: samr
pdc -> exchange: NT Create AndX Response, FID: 0x7499
exchange -> pdc: Bind: call_id: 143 UUID: SAMR
pdc -> exchange: Bind_ack: call_id: 143 accept max_xmit: 4280
max_recv: 4280
exchange -> pdc: SamrEnumerateAliasesInDomain request[Malformed
Packet]
pdc -> exchange: Fault: call_id: 145 ctx_id: 0 status:
nca_s_fault_context_mismatch
exchange -> pdc: Close Request, FID: 0x7499
pdc -> exchange: Close Response
------------ End quote ----------...
2002 Nov 27
3
Samba 3.0 alpha21 released
...ect a native mode Win2k DC when in "security = domain"
6) Include Domain Local Groups in listing when a member of a native
mode Win2k domain
7) Fix ACL inheritance problem
8) Register <0x1c> name on unicast subnet
9) Removed stat() call in lp_add_home()
10) Change default of max_xmit to match W2K. Ensure NT negprot uses it
11) Merge the new ACL mapping code from Andreas Gruenbacher
12) Removed make_printerdef tool from build
13) Fix fd leak on printer queue tdb's
14) Better error/status logging in both the pam_winbind client and
winbindd_pam
15) Fix fd leak with kernel...
1999 Jul 06
0
VERY SERIOUS smbclient problems w/samba 2.0.* (PR#18263)
...this code when mpx is more than one.
+ * for some reason files can get corrupted when being read.
+ * Until we understand this fully I am serializing reads (one
+ * read/one reply) for now. JRA.
+ */
+#if 0
+ int mpx = MAX(cli->max_mux-1, 1);
+#else
+ int mpx = 1;
+#endif
int block = (cli->max_xmit - (smb_size+32)) & ~1023;
int mid;
int blocks = (size + (block-1)) / block;
--
--------------------------------------------------------
Buying an operating system without source is like buying
a self-assembly Space Shuttle with no instructions.
-------------------------------------------...
2004 Sep 06
3
Samba + Exchange 5.5 SP4 (UPDATE)
...28.html
Running an ethereal trace, I see this conversation at the time of the
crash:
exchange -> pdc: NT Create AndX Request, Path: samr
pdc -> exchange: NT Create AndX Response, FID: 0x7499
exchange -> pdc: Bind: call_id: 143 UUID: SAMR
pdc -> exchange: Bind_ack: call_id: 143 accept max_xmit: 4280
max_recv: 4280
exchange -> pdc: SamrEnumerateAliasesInDomain request[Malformed
Packet]
pdc -> exchange: Fault: call_id: 145 ctx_id: 0 status:
nca_s_fault_context_mismatch
exchange -> pdc: Close Request, FID: 0x7499
pdc -> exchange: Close Response
------------ End quote ----------...
1999 Oct 23
0
smbfs: patch for directory listing
...mechanism for resuming a dir listing).
I have found the following workarounds for reading this dir:
* decrease the max number of filenames returned to something below the 119
the server wants to return on the first call.
* increase or decrease the buffer size (which is sent to the server as a
max_xmit value)
* remove the request for resume keys (which don't seem to be used anyway)
for both FIND_FIRST and FIND_NEXT
This part of smbfs looks very much like libsmb, and yet smbclient works
fine (with the resume key requests). A difference is the infolevel,
smbclient uses 260 but smbfs uses 259...
2004 Dec 19
0
[2.6 patch] remove outdated smbfs ChangeLog
...-
-2001-02-10 Urban Widmark <urban@teststation.com>
-
- * dir.c, cache.c: replace non-bigmem safe cache with cache code
- from ncpfs and fix some other bigmem bugs in smbfs.
- * inode.c: root dentry not properly initialized
- * proc.c, sock.c: adjust max parameters & max data to follow max_xmit
- lots of servers were having find_next trouble with this.
- * proc.c: use documented write method of truncating (NetApp fix)
-
-2000-08-14 Urban Widmark <urban@svenskatest.se>
-
- * dir.c: support case sensitive shares
- * inode.c: ascii mount options
- * proc.c: check length of paths to a...
1998 Oct 20
0
SMBClient authentication failing, always connecting as "Guest"
...ger
4.
[020] 30 00 52 43 48 00 0.RCH.
Domain=[RCH] OS=[Windows NT 4.0] Server=[NT LAN Manager 4.0]
Server gave us a UID of 4097. We gave 500
connected as guest security=user
write_socket(3,71)
write_socket(3,71) wrote 71
got smb length of 49
Connected with cnum=2051 max_xmit=4356
smb: \>
--
Patrick Spinler Mayo Foundation
Spinler.Patrick@Mayo.EDU 507/284-9485
PGP Fingerprint: 4A53 1590 2917 C698 BAF7 DBC3 344C 6C09 0147 0348
This message does not represent the policies or
positions of the Mayo...
2005 Jan 08
0
[2.6 patch] remove outdated smbfs ChangeLog (fwd)
...-
-2001-02-10 Urban Widmark <urban@teststation.com>
-
- * dir.c, cache.c: replace non-bigmem safe cache with cache code
- from ncpfs and fix some other bigmem bugs in smbfs.
- * inode.c: root dentry not properly initialized
- * proc.c, sock.c: adjust max parameters & max data to follow max_xmit
- lots of servers were having find_next trouble with this.
- * proc.c: use documented write method of truncating (NetApp fix)
-
-2000-08-14 Urban Widmark <urban@svenskatest.se>
-
- * dir.c: support case sensitive shares
- * inode.c: ascii mount options
- * proc.c: check length of paths to a...
2006 May 31
1
printing fails for SPOOLSS OpenPrinterEx request
...NT Create AndX Response, FID: 0x7168
client server DCERPC Bind: call_id: 1 UUID: SPOOLSS
server client SMB Write AndX Response, FID: 0x7168, 72 bytes
client server SMB Read AndX Request, FID: 0x7168, 1024 bytes at offset 0
server client DCERPC Bind_ack: call_id: 1 accept max_xmit: 4280 max_recv: 4280
client server SPOOLSS OpenPrinterEx request, \\jackdaw\test
server client SPOOLSS OpenPrinterEx response
client server SPOOLSS GetPrinter request, level 2
server client SPOOLSS GetPrinter response, level 2, Insufficient buffer
client server SPOOLSS GetPrinter req...
2010 Oct 06
2
SAMBA replies SAM LOGON request from different ip alias
...9 192.168.17.25 192.168.16.33 DCERPC Bind: call_id: 1 LSA V0.0
31 29.854438 192.168.16.33 192.168.17.25 SMB Write AndX Response, FID: 0x4a4e, 72 bytes
32 29.858426 192.168.16.33 192.168.17.25 DCERPC Bind_ack: call_id: 1 accept max_xmit: 4280 max_recv: 4280
33 29.860222 192.168.17.25 192.168.16.33 LSA LsarOpenPolicy2 request, \\SERVER3
root at server1# lsof -nPi4 | grep mbd | grep -v ESTABLISHED
smbd 5301 root 22u IPv4 13507 0t0 TCP 192.168.16.31:445 (LISTEN)
smbd 5301 r...
2009 Sep 06
2
smbd uses 10 to 15% CPU w/Vista client
...168.40.46 SMB Write AndX Response, FID: 0x724f, 116 bytes
351 1.012007 192.168.40.46 192.168.40.2 SMB Read AndX Request, FID: 0x724f, 1024 bytes at offset 0
352 1.012072 192.168.40.2 192.168.40.46 DCERPC Bind_ack: call_id: 1 accept max_xmit: 4280 max_recv: 4280
353 1.016831 192.168.40.46 192.168.40.2 TCP [TCP segment of a reassembled PDU]
354 1.018438 192.168.40.46 192.168.40.2 TCP [TCP segment of a reassembled PDU]
355 1.018453 192.168.40.46 192.168.40.2...
2000 Jan 28
1
PATCH: 'source environment' param and % token subs for 'netbios name'
Attached please find unified diffs against Samba 2.0.6. I'm hoping that
others will find it useful and that it may even find its way into Samba
2.0.7
This patch does two things:
- Modifies the handling of the 'netbios name' parameter so that
standard_sub_basic() is run on its value when the 'netbios name'
parameter is processed.
This has to be done this way because
1997 Jul 25
7
Amanda 2.3.0.5-Samba 1.9.16p11 PC backups...
At the bottom is what I got returned from AMANDA 2.3.0.5 after patching
Samba 1.9.16p11 to give estimates. Any idea what I might not have done yet?
My disklist reads:
shokk \\thor\depot nocomp-user-gnutar
To connect successfully to that server with smbclient, I have to do this,
giving the same password that I now have in /etc/amandapass:
smbclient \\\\THOR\\DEPOT -U BACKUP
Also, the
2003 Dec 01
0
No subject
...alled, struct nmb_name {..} calling, array[256] of char full_dest_host
_name, struct in_addr {..} dest_ip, struct pwd_info {..} pwd, array[8] of unsign
ed char cryptkey, unsigned int sesskey, int serverzone, unsigned int servertime,
int readbraw_supported, int writebraw_supported, int timeout, int max_xmit, int
max_mux, pointer to char outbuf, pointer to char inbuf, int bufsize, int initia
lised, int win95, unsigned int capabilities, pointer to struct {..} mem_ctx, un
signed int nt_error, unsigned short nt_pipe_fnum, array[16] of unsigned char ses
s_key, array[258] of unsigned char ntlmssp_hash, un...