I am trying to write a Windows application which will generate traffic on an ethernet link from a PC.
I want to use webBrowser controls to continuously pull up web pages to generate the traffic.
In this case, i want each webBrowser control linked to a unique source IP address. Two questions:
Is it possible for one PC (i.e. one MAC address) to have multiple concurrent IP addresses assigned?
If the answer to question #1 is yes, is it easiest to use DHCP requests in the applications C# code to obtain the additional IP addresses, or is it easier to just configure static IP addresses?
How do i obtain the IP addresses obtained in step 2 in my C# code (just give me a general idea).
Thanks, Steve