The reason of this, is that to catch all packages into my IDS keeping my existing enviroment, so the IDS does not become a single point of failure. If route all my traffic into my IDS and from my IDS to the internet then if the IDS goes down my whole network goes down and all our production 24/7 services.. not a good idea. any thoughs? Thanks
is there a way from iptables/iproute to forward all traffic to my IDS and also keep the regular flow
Asked
Active
Viewed 511 times
2 Answers
4
Consider using iptables TEE target. For example:
-t mangle -A PREROUTING -i eth0 -j TEE --gateway <your IDS IP>

Eduardo Ramos
- 268
- 1
- 6
-
Thanks, let me look into this, since all this is on AWS/VPC I do not have control of switches so has to be with software. – merge delete Jan 13 '15 at 20:37
0
It is very easy with port mirroring. However it needs expensive switches like cisco.

Kazim SARIKAYA
- 11
- 3