-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error tcp: invalid tcp establishement handshake #26
Comments
Hi blotgg, I ran your script with your configuration file and it worked fine. Could you provide us with a pcap that triggers this error ? You can add the following to your daemon.conf to save input and output trafic into pcap files : dump = yes |
Hi mtalbi, Alerts from log file:
|
Hi, Sorry for the delay, Can you run again the script with a single thread (thread=1 in daemon.conf) and check if the problem is still there. |
Hello, Unfortunately the problem is not resolved( I saved again trafic with thread=1 Maybe the problem is in the network configuration? |
Ok. It seems that Haka is captirung only upcoming packets. Incoming packets arrives through another interface. Try to capture packets on all interfaces (i.e. interfaces = "any" in daemon.conf). This will fix the problem. |
Haka supports "any" interfaces ? |
Ah... "any" keywork works only with pcap packet capture module. Select instead your list of interfaces as following. This will instruct Haka to capture packets on interfaces eth0, eth1 and eth2: interfaces = "eth0, eth1, eth2" |
If I use
module = "packet/nfqueue"
and use
local http = require('protocol/http')
I have error when connect to HTTP servers:
error tcp: invalid tcp establishement handshake
And I can't open web page.
If I delete string
local http = require('protocol/http')
I don't have this error and I can open web page.Configuration daemon.conf:
Configuration tcpfilter.lua:
The text was updated successfully, but these errors were encountered: