hello guys i tried to put a log action in forward chain before another specific filter that i want to see some logs of it. but it seem that it gives me the log of all the filters after the log action. any ideas.
best regards.
hello guys i tried to put a log action in forward chain before another specific filter that i want to see some logs of it. but it seem that it gives me the log of all the filters after the log action. any ideas.
best regards.
please post your filter configuration
these are the filters rules:
chain=input;action=log;prefix=tcp limt log.
chain=input;protocol=tcp,tcp-flags=sync;connection-limit=18,32;action=drop.
best regards
this rule will log all packets.
Should be like this:
chain=input protocol=tcp tcp-flags=syn connection-limit=18,32 action=log log-prefix="tcp limt log"
chain=input protocol=tcp tcp-flags=syn connection-limit=18,32 action=drop
thank you mrz.
best regards