Networking commands in CMD
note: replace <ip>
: eg: 192.168.10.1
with the ip address you want to check
1. ipconfig
show ip address of the computer
ipconfig
2. ipconfig /all
show all ip addresses and mac addresses of the computer
ipconfig /all
3. Ping
send a packet to the ip address and wait for a response
ping <ip>
4. Traceroute
tracert <ip>
5. What is my IP
Search in google: what is my ip
6. arp -a
show all ip addresses in the arp table
arp -a
7. hostname
show the name of the computer
hostname
8. nslookup
show the ip address of a website
nslookup <website>
9. Netstat
show all ip addresses and ports that are being used by the computer
netstat -a
10. Systeminfo
show all information about the computer
systeminfo
11. Route print
show all ip addresses and ports that are being used by the computer
route print
Last updated
Was this helpful?