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.

My situation is as follow: an application I am working on works using multiple database servers (MySQL) connections, I work locally and these database servers do not allow connections from anywhere, so I have set up a local test server. How do I redirect all the outgoing traffic to these servers (port 3306) to this local server?

share|improve this question

1 Answer

As far as I know - even though I never used it yet - you can use the ipfw tool on OSX for similar tasks as you would use iptables for (filtering, address translation etc.). Here you find some more hints: OSX pfctl manpage

share|improve this answer
I already use a iptables solution on my linux machines: iptables -t nat -A OUTPUT -p tcp -d SOURCE_IP --dport 3306 -j DNAT --to-destination DEST_IP:3306. I'll try this pfctl – Wanderson May 24 '12 at 23:18
This is what I created: rdr on en1 proto tcp from any to OLD_IP port 3306 -> NEW_IP port 3306 based on the texts I've read, however, it still does not redirect – Wanderson May 25 '12 at 16:08

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.