Configuring TCP/IP on Windows 2000
Configuring TCP/IP on Windows 2000
TCP/IP is the default network protocol in Windows 2000. This guide covers static IP configuration, DNS settings, and common troubleshooting commands.
Setting a Static IP Address
- Open Control Panel → Network and Dial-up Connections.
- Right-click Local Area Connection and select Properties.
- Select Internet Protocol (TCP/IP) and click Properties.
- Select Use the following IP address and enter:
- IP address: e.g.,
192.168.1.10 - Subnet mask: e.g.,
255.255.255.0 - Default gateway: e.g.,
192.168.1.1
- IP address: e.g.,
- Under DNS server addresses, enter your primary and secondary DNS servers.
- Click OK twice to apply the settings.
Useful Command-Line Tools
REM Display IP configuration ipconfig /all REM Release and renew DHCP lease ipconfig /release ipconfig /renew REM Flush DNS resolver cache ipconfig /flushdns REM Test connectivity ping 192.168.1.1 REM Trace route to a host tracert www.microsoft.com REM Display active connections and listening ports netstat -an REM Display the ARP cache arp -a
DNS Client Configuration
For domain-joined computers, the preferred DNS server should be the domain controller running DNS. Set the ISP DNS server as the alternate. This ensures Active Directory SRV records are resolved correctly.
WINS Configuration
WINS (Windows Internet Name Service) resolves NetBIOS names to IP addresses. Configure WINS on the WINS tab of the TCP/IP properties dialog. In a pure Windows 2000 or later environment, WINS is optional if all applications use DNS.