Advertisement
hjaltiatlason

Windows Network troubleshooting commands

Jan 12th, 2021 (edited)
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Windows Network troubleshooting commands
  2. #Windows Network troubleshooting commands
  3.  
  4. # ping - Test reachability
  5. - ping <ip address> - Test reachability to a TCP/IP address
  6. - ping -t <ip address> - Ping until stopped with Ctrl-c
  7. - ping -a <ip address> - Resolve address to a hostname
  8. - ping -n <count> <ip address> - Send # of echo requests
  9. - ping -f <ip address> - Send with Don’t Fragment flag set
  10.  
  11. # traceroute - Determine the route a packet takes to a destination
  12. # Takes advantage of ICMP Time to Live Exceeded error message
  13. # Not all devices will reply with ICMP Time Exceeded messages
  14.  - traceroute <ip address>
  15.  
  16. #nslookup and dig - Lookup information from DNS servers
  17. - nslookup <ip address>
  18. - dig <ip address>
  19.  
  20. #ipconfig and ifconfig - View and manage IP configuration
  21. - ipconfig - Windows TCP/IP config
  22. - ipconfig /all - Display all IP configuration details
  23. - ipconfig /release - Release the DHCP lease
  24. - ipconfig /renew - Renew the DHCP lease
  25. - ipconfig /flushdns - Flush the DNS resolver cache
  26. - ifconfig - Linux interface configuration
  27.  
  28. #netstat - Display network statistics
  29. - netstat -a - Show all active connections
  30. - netstat -b - Show binaries
  31. - netstat -n -  Displays addresses and port numbers in numerical form ,Do not resolve names
  32.  
  33.  
  34. # pathping - Combination of ping and traceroute
  35. - pathping <ip address>
  36.  
  37. # route - View the device’s routing table
  38. - route print - View the Windows routing table
  39.  
  40. # arp - Address resolution protocol information
  41. - arp -a - View the local ARP table
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement