How to get AWS RDS IP range - amazon-rds

I see AWS has IP ranges in JSON format. It’s really difficult to find very specific. My question regarding,
How to find RDS IP address range for a particular region?
Thanks.

IP address range for RDS is not officially provided. Your best bet is to filter the list down to AMAZON service with IPv4. Since RDS is probably run on EC2, if you want to be risky, you can use EC2 filter.

Related

Security group for AWS Lambda to access RDS

Was not able to find any security groups for AWS Lambda.
Is there a way to allow access from AWS Lambda to RDS without alowing all IPs (0.0.0.0/0) and without allowing all Amazon IP Range?
As #user5919440 suggests, now that this new feature is out:
https://aws.amazon.com/blogs/aws/new-access-resources-in-a-vpc-from-your-lambda-functions/
...you simply need to tell AWS Lambda which VPC subnets to bind to your function. The function then can communicate with any AWS service that also has access to that subnet.
This means that you should be able to add a security group in your RDS that allows traffic from the same internal subnet (10.x.x.x) that your Lambda function is bound to.
This feature is out as of yesterday
https://aws.amazon.com/blogs/aws/new-access-resources-in-a-vpc-from-your-lambda-functions/
There currently isn't, and a moment's reflection suggests that if there were, if would be a false sense of security -- the traffic wouldn't be assured to be from your Lambda functions... but from anybody's -- the IP addresses are pooled.
There have been hints of a future mechanism to allow a cleaner trust relationship between Lambda and VPC, perhaps implemented with the VPC Endpoint feature (currently available only with S3), or perhaps differently... no details have been forthcoming, so far.

AWS MongoDB inbound rules for replica cluster

I am using AWS for my MEAN stack servers. I have three nodes for NodeJS instances and also three instances for MongoDB clusters running as replica set mode.
To secure MongoDB inbound request I want to configure security group for mongo instances as below:
Inbound allowed for NodeJS instances so that node instances can make connection to database
Inbound allowed for MongoDB instances so that each of mongo instances can talk to each other for replication
I am facing following problems:
In screen to edit, inbound rules have only fields for IP Address. As I need to set custom IP, how can I provide 3+2 five instances in one text box? Since I can't even simple range as all five IP Address are different and can't fit into range sequence.
What will happen if IP address changes? Do I need to use Elastic IP or I can use instances hostname?
Please, advice.
For answer to the first question:
If the IPs of each instance are in a pattern (I'm pretty sure they will) then you should be using CIDR representation of the IP address.
So consider you have 5 IPs from 192.168.1.14 to 192.168.1.18 then your CIDR can be any of the following:
192.168.1.14/31
192.168.1.16/31
192.168.1.18/32
You can put any of the values there in your IP Range field in the edit screen.
There are various online converters out there like this. You can use any one of them.
For answer to the second question:
The internal IP of the Amazon instances generally do not changes if you are within the same virtual network so you can use the internal IPs of your network (like I used in the example). Or if your IPs are fluctuating then yes, you have to use the static IP or elastic IPs for the same.

AWS, EC2, Elastic Ips and DSN Connection Strings

I am setting up a basic dev, qa and production environment for an app in EC2. A dsn string to connect the web app to the database looks something like
jdbc:postgresql://64.210.255.235:5432/mydb
But here is where things break down, to be secure, I need to add the elastic ip addresses of the web heads to the database's security group, in addition to elastic ips to connect to the database via dsn. However, EC2 apparently lets you only have 5 elastic ips? Help, what do I do? And please explain to me like a 6th grader, I am a developer with almost no system administration or AWS experience. For an answer I need concrete steps to make this work, not high level observations.
first of all, good handle. second, what Im trying to do conceptually is super simple. I have 3 environments, 6 servers. I want to have stable jdbc dsns that I dont have to change when the EC2 DHCP updates. I need my web heads to talk to my db boxes and be secure.
2 options:
use VPC, so that you can have persistent privat IP for your DBs.
Ask amazon to increase your EIP limit by filling up this form.

Can you use a custom DNS server within EC2?

I need to set up a custom DNS server within EC2. I have one instance that acts as the DNS server, and N other instances that use this DNS server to connect to one another. Is this posible? Basically, I need to modify the DHCP settings for the N instances so that they connect to the DNS server. I can't find any good documentation on modifying the DHCP settings for an instance.
Note: I did find some documents, but they seem to only apply to Amazon VPC. Is there any way to do this without using VPC?
Short answer - no. You need a VPC. But once you have the VPC created - you can effectively do whatever you like with it.
Long answer - traditional AWS hosting gets an address directly from Amazon. This means you've got no control whatsoever of the IP addresses.
New accounts however come with a VPC by default, which means you can install a machine to act as a DNS server. (And I've done this in the past using Windows Active Directory)

Amazon Elastic IP + EC2

I have set up an EC2 instance and an Elastic IP which is associated to the instance. I have also set an A record in my DNS provider's Zone editor so that the domain name points to the elastic IP e.g. example.com = 123.123.123.123.
After reading many posts, this seems like it should be enough to work but my domain name still isn't resolving. I can't even ping the IP address! Weirdly I CAN ssh into the EC2 instance via the elastic IP and everything seems fine, except that my domain name doesn't resolve to the EC2 instance!
Any thoughts?
DNS names take a while to propagate so that is probably your first issue.
Go to http://www.whatsmydns.net/ and enter your domain name. If all of the locations are returning with the correct ip then you can safely assume its not a DNS propagation issue.
Enable ICMP rules in the security group. If using the aws console create a new rule for "All ICMP" with a source of "0.0.0.0/0". Enabling this creates a security risk for your server so only enable this temporarily while testing. At this point you should be able to ping your instance.
If using HTTP or HTTPS enable the correct ports on the security group for those protocols and as long as the instance is configured correctly with Apache you should be up and running.
Please check your EC2 security group & make sure desired ports are open

Resources