Desnoxav
Desnoxav

Reputation: 354

Simulate Multiple IP in C#

I want to do the same thing that is describe in this answer https://stackoverflow.com/a/1309096/1547704 But in C# code.

Let me explain. I want to simulate a multiple IP on one computer dynamically. I want to permit to the user of my program to create dynamically clients with ip address define by himself.

Can you help me ?

Upvotes: 1

Views: 1458

Answers (1)

danish
danish

Reputation: 5610

You can do this using WMI. Check out Win32_NetworkAdapterConfiguration class. HTH

Upvotes: 1

Related Questions