Method #1
To add a secondary IP address to your Windows Server, follow these steps:
Step 1: Open Command Prompt
- Go to Start > Run.
- Type
cmd
and press Enter
Step 2: Add the Secondary IP Address
Use the following command for each new IP address you want to add to the system:
netsh interface ipv4 add address "Ethernet" 192.168.1.2 255.255.255.0
- Replace
Ethernet
with the actual name of your network interface. - Replace the IP address
192.168.1.2
and subnet mask255.255.255.0
with your specific IP address and subnet mask.