Reputation: 3
I have a server running on my machine. I want to send a request to the server using different IP address to test a web application. I only have the machine on which the server is installed. I have been testing as a single user but now I would like to let the server think that the request is coming from a different ip address even though it is from the same machine. How can I do that?
Upvotes: 0
Views: 290
Reputation: 5269
Here are the 2 solutions that might be possible in your situation
1- To change the ip address :
Note: You may pick a proxy with port 80.
2- Or you might use a Virtual Machine
installed on the same computer as the server and access the website right from it but beware not to use bridged connection.
Upvotes: 2