Additional info.
I get the following line in Messages on the 5.6 server when trying to load server manager (again, via PPTP from an XP Pro machine connecting:through a 5.5u6 to a 5.6u5 server) and server manager fails to load.
kernel: mppe_compress[0]: osize - too small! (have: 1400 need 1404)
A Google search yields only some c code from:
http://pserver.samba.org/cgi-bin/cvsweb/ppp/linux/mppe/ppp_mppe_compress.c?annotate=1.1&only_with_tag=MAINas follows:
---------------------------------------------------------------------------
/* Make sure we have enough room to generate an encrypted packet. */
| 321: if (osize < isize + MPPE_OVHD + 2) {
| 322: /* Drop the packet if we should encrypt it, but can't. */
| 323: printk(KERN_DEBUG "mppe_compress[%d]: osize too small! "
| 324: "(have: %d need: %d)\n", state->unit,
| 325: osize, osize + MPPE_OVHD + 2);
| 326: return -1;
| 327: }
| 328:
| 329: osize = isize + MPPE_OVHD + 2;
| 330:
| 331: /*
---------------------------------------------------------------------------
I am not a c programmer so I don't really follow this. Does this mean there is a problem or is it just informational?
Thanks,
jim