A Tier 1 desktop support technician needs to reconfigure a Windows workstation network adapter that failed to update its network settings after a router restart. Arrange the following steps in the correct order to open the command interface, release the existing lease, acquire a new IP address assignment, and verify the updated networking details.
- 1Launch Command Prompt with elevated administrative privileges.
- 2Run ipconfig /release to drop the current IP configuration.
- 3Run ipconfig /renew to request new settings from the DHCP server.
- 4Run ipconfig /all to confirm the newly assigned IP address and subnet mask.
Answer
The correct operational sequence is: Launch Command Prompt with elevated administrative privileges, run ipconfig /release to drop the current IP configuration, run ipconfig /renew to request new settings from the DHCP server, and run ipconfig /all to confirm the newly assigned IP address and subnet mask.
Proper IP address reassignment using Windows command-line tools follows a strict chronological workflow: first, elevated administrative privileges must be obtained by opening Command Prompt as Administrator; second, the existing invalid DHCP configuration is unassigned using ipconfig /release; third, a new IP lease is solicited using ipconfig /renew; and finally, verification of all configuration settings is performed using ipconfig /all.
Step-by-Step Solution
Key Concept
Windows Network Adapter Command Line Management (ipconfig)