atom feed22 messages in org.freebsd.freebsd-hackersRe: why does this sendmail connection...
FromSent OnAttachments
Dan LangilleAug 22, 2002 10:42 am 
Dan NelsonAug 22, 2002 11:47 am 
Michael ScheidellAug 22, 2002 3:27 pm 
Terry LambertAug 22, 2002 5:34 pm 
Dan LangilleAug 22, 2002 9:03 pm 
Terry LambertAug 22, 2002 10:29 pm 
Dan LangilleAug 28, 2002 9:57 am 
Jim BrownAug 28, 2002 10:48 am 
Terry LambertAug 28, 2002 4:42 pm 
Dan LangilleAug 29, 2002 5:39 am 
Gregory Neil ShapiroAug 29, 2002 10:31 am 
Dan LangilleAug 29, 2002 10:39 am 
Gregory Neil ShapiroAug 29, 2002 10:57 am 
Dan LangilleAug 29, 2002 11:18 am 
Gregory Neil ShapiroAug 29, 2002 11:26 am 
Dan LangilleAug 29, 2002 11:33 am 
Gregory Neil ShapiroAug 29, 2002 11:50 am 
Dan LangilleAug 29, 2002 11:56 am 
Terry LambertAug 29, 2002 12:52 pm 
David O'BrienSep 1, 2002 5:25 pm 
Eric ParuselSep 1, 2002 10:59 pm 
Gregory Neil ShapiroSep 2, 2002 4:22 pm 
Subject:Re: why does this sendmail connection take so long?
From:Gregory Neil Shapiro (gsha@FreeBSD.ORG)
Date:Aug 29, 2002 11:50:33 am
List:org.freebsd.freebsd-hackers

dan> I am using ipf with "pass out from any to any/pass out from any to dan> any".

Unfortunately, I use ipfw/ip6fw so I don't know if my guesses are correct.

That rule only appears to handle outbound connections (therefore allowing the sendmail client to open an outbound connection to the localhost sendmail server). It does not allow for inbound connections (thereby allowing the incoming connection). Perhaps what you need is also:

echo 'pass in quick on lo0' > /etc/ipf6.rules echo 'pass out quick on lo0' >> /etc/ipf6.rules ipf -6 -f /etc/ipf6.rules

Note the -6 for the IPv6 rules (which appear to be kept separate from the IPv4 rules).

Again, I'm just guessing at ipf usage but you get the idea (I hope).

To Unsubscribe: send mail to majo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message