You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- Hey thanks! Well the bottleneck of the application is actually the need for different IP addresses. Unless I can get multiple IP's on a single instance somehow, I haven't seen that either.illcrx– illcrx2020-01-06 22:44:34 +00:00Commented Jan 6, 2020 at 22:44
- @illcrx You can certainly have multiple IPs per EC2 network interface (ENI), on some instances up to 50 IPs per ENI and up to 15 network interfaces per instance. That's 750 IPs per instance - it should be enough ;) On smaller instance it's less but even on the smallest you can have 2 ENIs with 4 IPs each. Have a look here: docs.aws.amazon.com/AWSEC2/latest/UserGuide/…MLu– MLu2020-01-06 23:17:45 +00:00Commented Jan 6, 2020 at 23:17
- are those external IPs?illcrx– illcrx2020-01-06 23:25:36 +00:00Commented Jan 6, 2020 at 23:25
- @illcrx they are private but you can map a Public IP to each Private IP.MLu– MLu2020-01-06 23:31:33 +00:00Commented Jan 6, 2020 at 23:31
- @illcrx what's the purpose for multiple IPs for one instance? Is it for routing to different containers? Not sure your use case but maybe you can use a load balancer / reverse proxy to route request based on http requests.Yan– Yan2020-01-07 13:38:14 +00:00Commented Jan 7, 2020 at 13:38
| Show 5 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. amazon-web-services), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you