Using AWS, I want to:
- Distribute
http request
sending over several differentIP
s - Send this requests without using proxy
- Send this using
Elastic Load Balancer
andAutoScaling Group
- Send these requests from one instance to several instances in
AutoScaling Group
- Each of those several instances assigns different IP to the incoming request so output the request in its IP
How do I do this? Is there anyway to set up load balancer just to send through http request
? I want each http
request to have different IP
address.
So, basically you're willing to connect to EC2 instances behind a ELB and willing to know, on the EC2 instances, the original IP address of the connection, not the ELB's IP address.
If my understanding of your question is correct, then the answer is
Full step by step and demo application is available on AWS' blog.