On a Windows system, you can use the
netsh interface ip set
command to configure IP parameters for the system from the command line.
E.g. the command netsh interface ip set address name="Local Area
Connection" static 192.168.0.66 255.255.255.0 192.168.0.1 1
could
be used to set the IP address to a static value of 192.168.0.66
with a subnet mask of 255.255.255.0
and a default gateway of
192.168.0.1
.
[ More Info ]