I'm adding a secondary IP address with this command:
netsh interface ipv4 add address "Ethernet" NewIp 255.255.255.0
After that, I want to make this address primary (default), without disrupting internet connectivity.
Let's say I have the following Ip addresses:
- IP 1: 109.0.0.1
- IP 2: 109.0.0.2
I want to change the order , so that the applications I start after this use 109.0.0.2 by default instead of 109.0.0.1 :
- IP 1: 109.0.0.2
- IP 2: 109.0.0.1
How can I do this from cmd ?