DEV Community

Cover image for Top 5 Basic Networking Commands In Windows
powerexploit
powerexploit

Posted on

7 2

Top 5 Basic Networking Commands In Windows

"If you want to know about networking and System hacking so first of all understand the command line interface of any operating system(Linux,Window,Ubuntu...) - Ankit Dobhal"

I love to work mostly on Command line interface(terminal) of any operating system either it is window,Linux,Ubuntu etc.

Well Window operating system contain numerous built-in, command line networking utilities or tools.Most important think that as windows administrator you have to know about the basic networking utility or tools in Window machine.Windows operating system contain some build in networking utility or commands.

Networking Commands In Window :

ipconfig :

ipconfig is one of the important & basic command in windows which can be used to display the network information of your machine like ip address,DNS etc..

Example:
-> open your window terminal and run 'ipconfig' command.

ping :

ping is more often used networking utilities in windows which is used for detecting devices on a network and for troubleshooting network problem.

Example:
-> open your window terminal and run 'ping' command.

netstat :

netstat is very useful command. It is used for displaying the udp and tcp connection & ports in your system.It is also used to detect any tipe of virus in your system by showing an unknown port.

Example:
-> open your window terminal and run 'netstat -a' command.

note: -a is used for all ports in system.

tracert :

tracert stands for traceroute like ping it sends out a data packet as a way to troubleshoot any network issues you might have, but instead tracks the route of the packet as it hops from server to server.

Example:
-> open your window terminal and run 'tracert ip_address' command.

nbtstat :

nbstat is a utility that displays protocol statistics and current TCP/IP connections using NBT (NetBIOS over TCP/IP).
In ethical hacking their is a term called enumeration which is used to extract user names, machine names, network resources, shares and services from a system.
So for enumeration sometime nbtstat command uses to enumerate sharing services.

Example:
-> open your window terminal and run 'nbstat ip_address' command.

So as I explained the basic networking commands in window . For more details about these commands you can ask me.

Neon image

Build better on Postgres with AI-Assisted Development Practices

Compare top AI coding tools like Cursor and Windsurf with Neon's database integration. Generate synthetic data and manage databases with natural language.

Read more →

Top comments (0)

Sentry image

Make it make sense

Only the context you need to fix your broken code with Sentry.

Start debugging →

👋 Kindness is contagious

Dive into this thoughtful article, cherished within the supportive DEV Community. Coders of every background are encouraged to share and grow our collective expertise.

A genuine "thank you" can brighten someone’s day—drop your appreciation in the comments below!

On DEV, sharing knowledge smooths our journey and strengthens our community bonds. Found value here? A quick thank you to the author makes a big difference.

Okay