Closed bitpixl closed 3 years ago
Hi @bitpixl ,
Yes, you can use gufw or other software to handle incoming connections. Just configure gufw normally. You can also use /etc/opensnitchd/system-fw.json to insert rules in any table or chain(no GUI yet, sorry), for example:
{
"Rule": {
"Description": "Block input bad state",
"Table": "filter",
"Chain": "INPUT",
"Parameters": "-p tcp -m conntrack --ctstate NEW -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN",
"Target": "DROP",
"TargetParameters": ""
}
}
Hi @gustavo-iniguez-goya,
thank you for the clarification and keep up the great work!
Hi,
I'm somewhat confused about Opensnitch only tracking outgoing connections, which is fine, as long I'm able to use ... let's say gufw to configure incoming connections. Is this the case? Can they be used together? Should I configure gufw in a certain way so it doesn't interrupt Opensnitch?
Thank you in advance for explaining.