Important Acronyms Chapter 7 Flashcards

1
Q

ping

A

sends echo requests to determine if communication is possible.

command: ping [optional] name/address

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

netstat

A

It is used for finding problems in the network and to determine the amount of traffic as a performance measurement. usable on windows or linux

command:

netstat -a | lists all active ports/connections
netstat -at | lists all active TCP connections
netstat -an | lists all active UDP connections

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

tracert

A

Windows command for tracing the route that packets take over the network in order from source to destination. Provides the list of hosts, switches and routers in the order that a packets passes by them. Uses ICMP. Linux command is traceroute

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

nslookup/dig

A

To examine a DNS query for a specific address, you can use nslookup. dig command is for Linux.

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

DNS

A

Domain Name System - Used to convert a name into an IP address

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

arp & rarp

A

Address Resolution Protocol and Reverse ARP. Layer 2/MAC address finder.

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

ipconfig

A

A command-line tool to manipulate network interfaces.

It lists interfaces and connections,

alters connections

refresh/renew connections

Linux is ifconfig

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

tcpdump

A

designed to analyze network packets either from a network connection or a recorded file. You can create files of packet captures called pcap files and use it to filer input/output to make life easier on other tools.

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

nmap

A

Utility designed to map a network

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

netcat

A

Network utility for Linux but also ported to Windows. Reads and writes to TCP or UDP connections. Designed for scripts and automation but provides a wide array of functions.

nc -help
nc -options
nc -address

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

Protocol Analyzer

A

Examines packets

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

Network Scanner

A

Examines ports and maps networks

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

Vulnerability Scanner

A

Searches for vulnerabilities in applications and networks

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