[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emulator problems



>
> From:  Guenther Liebl <[email protected]>
> To:    [email protected]
> Subject: Emulator problems
> Date:  Tue, 04 May 1999 17:24:10 +0200
>
> Hi,
> 
> When executing the following command in the real time
> emulator:
> set f1len [$bpf0 filter "(not ip 172.16.1.20)"]
> 
> we get an error message like this:
> pcapnet obj(_o11): couldn't compile filter pgmproblem
> compiling/installing filter program
> 
> 
> Does anyone now how to resolve this?
> 
> 
> 
>              Best regards,
>                 Guenther

you need to specify whether it is src or dst...

you should be able to say, for example:

	not ip src 172.16.1.20

or maybe you mean:

	not ip src 172.16.1.20 and not ip dst 172.16.1.20

- K