Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Igor Cicimov
On 14/03/2015 2:21 PM, "el kalin" wrote: > > i don't see it in package ports… > > On Fri, Mar 13, 2015 at 7:59 PM, Jim Albert wrote: >> >> On 3/13/2015 7:54 PM, el kalin wrote: >>> >>> >>> >>> On Fri, Mar 13, 2015 at 7:36 PM, Jim Albert >> > wrote: >>> >>> On 3/13/2

Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread el kalin
i don't see it in package ports… On Fri, Mar 13, 2015 at 7:59 PM, Jim Albert wrote: > On 3/13/2015 7:54 PM, el kalin wrote: > >> >> >> On Fri, Mar 13, 2015 at 7:36 PM, Jim Albert > > wrote: >> >> On 3/13/2015 7:17 PM, el kalin wrote: >> >> >> if i have this

Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Jim Albert
On 3/13/2015 7:54 PM, el kalin wrote: On Fri, Mar 13, 2015 at 7:36 PM, Jim Albert mailto:j...@netrition.com>> wrote: On 3/13/2015 7:17 PM, el kalin wrote: if i have this in the Order allow,deny Allow from all deny f

Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread el kalin
On Fri, Mar 13, 2015 at 7:36 PM, Jim Albert wrote: > On 3/13/2015 7:17 PM, el kalin wrote: > >> >> if i have this in the >> >> >> >> Order allow,deny >> Allow from all >> deny from 111.10.250.188 >> >> ESTABLISHED >> tcp0 0 ip-10-102-190-93.http 111.10.

RE: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Gary Smith
apache.org Subject: Re: [users@httpd] ESTABLISHED connections On Fri, Mar 13, 2015 at 7:21 PM, Gary Smith wrote: > Order deny,allow > > Allow from all > deny from 111.10.250.188 "deny,allow" means deny directives are processed before allow directives

Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Eric Covener
On Fri, Mar 13, 2015 at 7:21 PM, Gary Smith wrote: > Order deny,allow > > Allow from all > deny from 111.10.250.188 "deny,allow" means deny directives are processed before allow directives. So this is clearly wrong. 95% of the time, if the order in the config differs fro

Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Jim Albert
On 3/13/2015 7:17 PM, el kalin wrote: if i have this in the Order allow,deny Allow from all deny from 111.10.250.188 how come this: tcp0 0 ip-10-102-190-93.http 111.10.250.188.21806 ESTABLISHED tcp0 0 ip-10-102-190-93.http 111.10.250

Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Mark Montague
On 2015-03-13 19:17, el kalin wrote: if i have this in the Order allow,deny Allow from all deny from 111.10.250.188 how come this: tcp0 0 ip-10-102-190-93.http 111.10.250.188.21806 ESTABLISHED Your configuration says "do not serve anything from the

RE: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Gary Smith
Try flipping the order to deny first. This is a first match rule IIRC, and since the first rule is Allow from all, the deny isn't hit. Order deny,allow Allow from all deny from 111.10.250.188 Sorry for the top post... From: el