Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a firewalled server (in this case, Redis, but this probably isn't central to my question.) I want to lock down access to only certain IP addresses -- a variable, changing set of worker Amazon EC2 instances. The catch is that I don't know the IP addresses up front. What are some good approaches to manage this?

2012-08-31 Update: the Redis server is not running on EC2. If it was, I could use Amazon Security Groups.

2012-09-20 Update: See also this question from 2008: How can I programatically manage iptables rules on the fly?. I'm looking for updated approaches, work-arounds, or whatever. Currently, I'm using some hand-made scripts that generate rules from template files -- I'd be surprised if there is not something better out there.

2012-09-21 Update: I'm running Ubuntu 12. I'm using Amazon Elastic IP's. Currently, I'm regenerating the iptables config using an ERB template and reloading via a remote script. I was hoping to, at least, find an API for iptables -- or, better yet, a tool to help.

share|improve this question
Why the downvote? – David James Sep 13 '12 at 14:35
And I see a vote to close... Please share your reasons. – David James Sep 15 '12 at 5:22
I don't know why you're being downvoted, or why people are voting to close. As a suggestion, perhaps remove references to ec2, as it just seems to be confusing the issue (though, an elastic IP may indeed work). What matters isn't the application that the firewall is protecting, or where the connection is coming from, but: 1) What is the operating system what the firewall is running on? (answers can change wildly when comparing Ubuntu and RHEL, for example) 2) What have you tried, and what specifically makes those approaches not work, insufficient, or inapplicable to your situation? – Will Palmer Sep 21 '12 at 5:37
Thanks Will for the suggestions -- I updated my question above. I'm using iptables-restore via a remote script. It feels clunky to reload the whole configuration that way. – David James Sep 21 '12 at 16:57

1 Answer

up vote 1 down vote accepted

There are various options mentioned in this 2008 question: How can I programmatically manage iptables rules on the fly?. According to that, there is no API for iptables.

share|improve this answer

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.