From LedHed's Wiki
Jump to: navigation, search
 
Line 4: Line 4:
 
  netsh interface ip set address "Local Area Connection" dhcp
 
  netsh interface ip set address "Local Area Connection" dhcp
  
== Changing Static to Static ==
+
== Changine to Obtain DNS from DHCP ==
 +
netsh interface ip set dns "Local Area Connection" dhcp
  
== Checking Interfaces ==
+
== Changing Static IP ==
netsh interface ip show config
+
 
+
== Changing Static to Static ==
+
 
Usage:
 
Usage:
 
  net sh interface ip set address "Local Area Connection" static ''ipaddr'' ''netmask'' ''gatway'' ''metric''
 
  net sh interface ip set address "Local Area Connection" static ''ipaddr'' ''netmask'' ''gatway'' ''metric''
 
Example:
 
Example:
 
  netsh interface ip set address "Local Area Connection" static 192.168.0.10 255.255.255.0 192.168.0.1 1
 
  netsh interface ip set address "Local Area Connection" static 192.168.0.10 255.255.255.0 192.168.0.1 1
 +
 +
== Changing Static DNS Server ==
 +
netsh interface ip set dns "Local Area Connection" static 192.168.0.1
 +
 +
== Checking Interfaces ==
 +
netsh interface ip show config
 +
  
 
== References ==
 
== References ==

Revision as of 18:31, 19 August 2008

This article describes how to change the IP address of a Windows based computer from the commandline.

Changing Static IP to Obtain from DHCP

netsh interface ip set address "Local Area Connection" dhcp

Changine to Obtain DNS from DHCP

netsh interface ip set dns "Local Area Connection" dhcp

Changing Static IP

Usage:

net sh interface ip set address "Local Area Connection" static ipaddr netmask gatway metric

Example:

netsh interface ip set address "Local Area Connection" static 192.168.0.10 255.255.255.0 192.168.0.1 1

Changing Static DNS Server

netsh interface ip set dns "Local Area Connection" static 192.168.0.1

Checking Interfaces

netsh interface ip show config


References

How to Use the NETSH Command to Change from Static IP Address to DHCP in Windows 2000 - http://support.microsoft.com/kb/257748