On Wed, 4 May 2005, Zachary Miller wrote:
The range should be:
1024 <= LOWPORT < HIGHPORT <= 65535
However, the range is ignored for well known addresses. Therefore, collector and negotiator will use 9618 and 9614 for collecting advertizements and negotiation, repectively, even if the range does not include those ports.
true. to add a bit more info, they collector and negotiator will use those ports by default. you can select any port you like with: COLLECTOR_HOST = $(CONDOR_HOST):33221 NEGOTIATOR_HOST = $(CONDOR_HOST):33222
COLLECTOR_HOST = $(CONDOR_HOST):222 NEGOTIATOR_HOST = $(CONDOR_HOST):222
or
[in the config file of the machine specified by CONDOR_HOST]: LOWPORT = 5000 HIGHPORT = 6000 COLLECTOR_HOST = $(CONDOR_HOST):7229 NEGOTIATOR_HOST = $(CONDOR_HOST):7229
Is that correct? I'm particularly unclear about that last example...
Thanks,