Troubleshooting Tools Flashcards

(13 cards)

1
Q

What are WiFi Analyzers?

A

WiFi Analyzers are used for WiFi surveys, analyzing the wireless coverage and allow to detect unwanted overlapping of access points.

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

What is the IP Configuration command for Windows and the most important arguments?

A

ipconfig:
- ipconfig /all
- ipconfig /release (release the current assigned local IP address)
- ipconfig /renew (request a new IP address)

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

What is the legacy IP Configuration command for Unix/OSX and the most important arguments? (5)

A

ifconfig:
- ifconfig -a
- ifconfig eth0
- ifconfig -v
- ifconfig eth0 down/up
- ifconfig eth0 192.168.1.200 netmask 255.255.255.0

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

What is the newer IP Configuration command for Unix/OSX and the most important arguments (5)?

A

ip:
- ip a
- ip addr add/del 192.168.1.200 dev eth0
- ip link set eth0 down/up
- ip link set dev eth0 address :Mac address:
- ip link set dev eth0 promisc on

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

What is the command to see current connections and what are the most important arguments?

A

Its netstat, the most important arguments are:
all: -a
no name resolving: -n
show PID: -o
statistics: -s
show routes: -r

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

What is the command to show the arp cache and what are the most important arguments?
And how long is the TTL of cached arp entries?

A

Its arp, the most important arguments are:
all: -a
delete an entry: -d (ip address of entry)
add static entry: -s (ip address) (mac address)

The time to live is 21.600 seconds.

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

How to change the nameserver and the record type with nslookup in interactive mode?

A

Change nameserver: server (nameserver)
Change record type: set q=A,MX,CNAME etc (for UNIX its set type=MX)

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

What are the most important ping arguments?

A

-n/-c: Number of pings for Windows/Linux
-t: Infinite pings on windows
-6: force IPv6

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

What are the 5 troubleshooting steps with ping?

A
  1. Ping a reliable website like google.com
  2. Ping a reliable IP like google DNS
  3. Ping Default Gateway to check LAN connectivity
  4. Ping your local IP
  5. Ping the localhost IP to verify network card & drivers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the important nmap arguments?

A

-sn: ping scan to see which hosts in a network are live
-sS: SynScan
-sV: Version Scan
-O: OS scan
-p: only scan specific port

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

What are the 3 basic network device commands and what are they for?

A
  1. show interface: Statistics for the interface
  2. show config: Current configuration
  3. show route: Information on routes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the 4 more advanced network device commands and what are they for?

A
  1. show MAC address table: Displays the MAC address to port mappings on a Cisco switch.
  2. show ARP: Displays the ARP table mapping IP addresses to MAC addresses.
  3. show VLAN: Shows VLAN configurations including VLAN IDs, names, statuses, and associated ports.
  4. show power: Displays PoE power settings and usage per switch port.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the 2 discovery protocols and what are the 3 main benefits?

A
  • Link Layer Discovery Protocol (LLDP)
  • Cisco Discovery Protocol (CDP)

The benefits are:
- Network Security
- Network Performance
- Network Reliability

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