On Mac there is this command
sudo ifconfig lo0 alias 10.10.10.10
I need the equivalent in Windows.
What would it be? What do I need to look for exactly?
On Mac there is this command
sudo ifconfig lo0 alias 10.10.10.10
I need the equivalent in Windows.
What would it be? What do I need to look for exactly?
You need to do this from an elevated console, since Windows does not have a sudo:
netsh interface ip add address "Local Area Connection" 10.10.10.10 255.255.255.0
"Local Area Connection" may be different for you. To find the name you'll need to run:
ipconfig
And pull the network interface's name.
You can do this from an elevated Command Prompt with the netsh utility:
netsh int ipv4 add address "Local Area Connection" 10.10.10.10 255.255.0.0
You need to replace "Local Area Connection" with the name of the network adapter and 255.255.0.0 with the appropriate subnet mask. You can view the system's network adapter names by running ipconfig.