Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to change destination address of tcp/ip packets based on result of execution mysql query...

SELECT score FROM reputation WHERE ip = packet.source_ip

if (score < a) then packet.destination_ip = ...

else packet.destination_ip = ...

What ways of solving this problem do you see? Thanks.

P.S. this is important that destination host knows REAL ip address where packet came from, not IP address of firewall.

share|improve this question
Try programmers.stackexchange.com – trojanfoe Nov 9 '12 at 13:11
How often do the scores change? If not often, you can export the info you need into iptables. In a quick search, I don't see a way for iptables to read directly from the database, so you might be SOL. – Alain Collins Nov 9 '12 at 18:55
I thought about exporting, but scores will change quite frequently... There are way to go one plugin for mysql that allow execute shell commands in triggers, i'm thinking about it. – let4be Nov 10 '12 at 9:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.