Hello everybody,
We're about to launch a new server in our network which will play the role of a network gateway. We've to configure the server to actually analyze incoming requests and then run set of custom workflows based on user requests.
For "packet analyzing" part, I think of two possible ways:
1- To run tcpdump(1) and point it on the interface that I need ( using
2- Set up pf(4) to log the allow/block messages on pflog(4) device and just read the information in there.
So, which way do you choose?
PS: My primary concern here is the performance. The network interface is 10G and lots of subscriber in the network.
Thanks,
We're about to launch a new server in our network which will play the role of a network gateway. We've to configure the server to actually analyze incoming requests and then run set of custom workflows based on user requests.
For "packet analyzing" part, I think of two possible ways:
1- To run tcpdump(1) and point it on the interface that I need ( using
... -i <iface> )2- Set up pf(4) to log the allow/block messages on pflog(4) device and just read the information in there.
So, which way do you choose?
PS: My primary concern here is the performance. The network interface is 10G and lots of subscriber in the network.
Thanks,