Networking Commands Flashcards

1
Q

This tells you whether your computer can reach some destination IP address or domain name, and if it can, how long it takes data to travel there and back again

A

ping

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does packet loss lead to?

A

Poor performance in games and streaming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When accessing the internet or any network, small units of data called (blank) are sent and received.

When 1 or more of these (blank) fails to reach its intended destination, this is called what?

A

Packets
Packet loss

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

By default how many data packets does the ping command send?

How many seconds before it times out?

A

4
4 seconds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How would you increase the number of packets?

A

ping [website] -n [number of packets you want]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How would you increase the timeout duration?

A

ping [website] -w [number you would like to increase it to]

value is in milliseconds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does tracert stand for?

A

Trace Route

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Sends out a data packet as a way to troubleshoot any network issues you might have, but it instead tracks the route of the packet as it hops from server to server

A

tracert

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

After sending out packets from you to a given destination, it analyses the route taken and compute packet loss on a per-hop basis

More informative & takes longer to execute

A

pathping

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

This output shows every network adapter on your system and how they resolve

A

ipconfig

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What sections under the Wireless LAN Adapter and Ethernet Adapter are most important?

A

IPv4 Address & Default Gateway

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Why would you ever need to flush your DNS cache?

A

• Prevent phishing schemes
• Directs you to the most up to date versions of your most frequently visited websites
• Restores your internet connection
• Keeps your data private

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How would you flush your DNS cache?

A

ipconfig /flushdns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does MAC address stand for?

A

Media Access Control

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Where are MAC addresses stored?

A

In the device’s hardware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How would you check your MAC address?

A

getmac

17
Q

nslookup stands for?

A

Name server lookup

18
Q

How would you find out the IP address behind a certain domain name?

A

nslookup [website]

19
Q

How would you show a routing table?

A

netstat -r

20
Q

What does Netsh stand for?

A

Network Shell

21
Q

A cmd command for networking that lets you view and configure almost every network adapter on your system in more detail and granularity

A

netsh

22
Q

Running netsh by itself will put you in what?

A

Network shell mode

23
Q

How would you view all the wireless network drivers on your system and their properties?

A

netsh wlan show drivers

24
Q

A network node that serves as an access point for traffic between different networks. It is the router through which devices on a local network can access resources on remote networks, such as the internet.

A

Default gateway

25
Q

A powerful command-line shell and scripting language that provides system administrators and developers with a flexible and efficient way to automate tasks and manage Windows-based systems

A

Powershell

26
Q

Specialized .NET classes that can be used to perform specific tasks such as managing the file system, managing processes and managing the registry.

A

Cmdlets (command-lets)