This is a discussion on Re: IPFilter 4.1 in OpenBSD 3.4 within the IPFilter forums, part of the System Security and Security Related category; In some email I received from Richard Cotrina, sie wrote: [...] > # ipf -E > IP FIlter: already initialized > > ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
In some email I received from Richard Cotrina, sie wrote:
[...] > # ipf -E > IP FIlter: already initialized > > Re-enabling the IPF, I could have the IPF working : > > bash-2.05b# ipf -V > ipf: IP Filter: v4.1 (388) > Kernel: IP Filter: v4.1 > Running: yes > Log Flags: 0 = none set > Default: pass all, Logging: available > Active list: 0 > Feature mask: 0x10a > > > Did I miss something or it could be a bug ? I followed the instructions > given at OpenBSD-3/README.3_3 . This is a bug, thanks. Try this patch. Darren Index: ip_fil_openbsd.c ================================================== ================= RCS file: /devel/CVS/IP-Filter/ip_fil_openbsd.c,v retrieving revision 2.50 diff -c -r2.50 ip_fil_openbsd.c *** ip_fil_openbsd.c 2004/02/07 17:27:32 2.50 --- ip_fil_openbsd.c 2004/02/15 16:36:59 *************** *** 719,724 **** --- 719,726 ---- { if (iplattach() != 0) printf("IP Filter failed to attach\n"); + else + fr_running = 1; ip_init(); } #endif /* ! IPFILTER_LKM */ |