|
From: Derrik P. <dp...@ds...> - 2004-01-05 05:17:58
|
Frank Schreiner wrote:
> hi all,
>
> when i start my script i get the following error-message:
>
> #############################################################
> tcp-flags: field unknown at ./SITCo-Firewall line 320.
> #############################################################
>
> this are the lines, which causes the error:
>
> ##############################################################
> %rule3 = ( %rule3, 'tcp-flags' => { mask => [ 'SYN','ACK' ] , comp => [
> 'SYN' ], inv => [ 'ACK' ] } );
>
> $filter->append_entry("OUTPUT",\%rule3) || die $!;
> ##############################################################
You have to specify 'protocol' => "tcp" somewhere in there, so that the
module for the TCP protocol match gets loaded to handle that option.
--
Derrik Pates
dp...@ds...
|