Bug 15049

Summary: amanda UDP packet size too small
Product: [Retired] Red Hat Powertools Reporter: Frank Ch. Eigler <fche>
Component: amandaAssignee: Trond Eivind Glomsrxd <teg>
Status: CLOSED RAWHIDE QA Contact:
Severity: high Docs Contact:
Priority: medium    
Version: 6.2   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2000-08-01 20:44:21 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Frank Ch. Eigler 2000-08-01 19:57:35 UTC
Amanda uses UDP packets to yak between backup servers and clients.  The
default maximum packet size is pretty small (see MAX_DGRAM in
common-src/dgram.h).  It is so small in fact that a client with more than a
couple of dozen backup directories can fail to participate in an amanda
run.  This problem is known to the amanda developers, and as a quick
workaround, they have suggested upping this limit to near the TCP/IP
maximum.  So, consider applying this
pseudo-patch:

common-src/dgram.h:
-#include MAX_DGRAM    8192
+#include MAX_DGRAM    65500

Comment 1 Jeff Johnson 2000-10-12 18:31:57 UTC
Fixed (by upgrade) in amanda-2.4.2-0.19991216beta1.1. Thanks for the report.