Block 9 Flashcards

1
Q

DNS + purpose

A

Domain name server-connects domain names with any ip address

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

MAC address + purpose

A

Media access control- internal address for nic’s.

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

NIC

A

Network interface controller. Hardware that connects a device to a network

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

ifconfig

A

Shows all your network configurations

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

Ens5

A

In ifconfig. Where network info for own computer resides.

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

ens5 inet

A

Your ip address

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

ens5 netmask

A

How many hosts are available on your network

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

ens5 broadcast

A

Broadcast ip

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

inet6

A

Hex address, newer system, 128 bits

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

ens5 ether

A

Mac address

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

ens5 ether

A

Mac address

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

Ip address show

A

Show/manipulate networking interface attributes

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

Ping example

A

Ping google.com or ping 8.8.8.8

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

ipv4 acronym

A

Internet protocol version4

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

ip addr

A

Same as ipconfig

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

Network class A addresses and # of hosts

A

10.0.0.0 to 10.255.255.255. Private addresses. Millions of hosts

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

Network class b it’s and #of hosts

A

172.16 to 172.31.255.255. Private. Thousands of hosts

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

Network class c it’s and # of hosts

A

192.168 to 192.168.255.255. Private. Less than 254 hosts

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

etc/host

A

Stores local dns addresses

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

Curl

A

Basically copy url. Fetches url data from a site

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

Lo and lo -c

A

lo -c ipaddress. Check to see if we can connect to ourselves.

22
Q

Ping
How many times and how many packets

A

Ping -c # of packets.

23
Q

Ip address -c show ens5

A

Short way to see only ens5 data. -c shows colors

24
Q

CIDR acronym and purpose

A

Classless inter-domain routing. Tells you how many 1s are in the subnet mask.
Ex.. 192.168
1
O/24 = 24 ones followed by 8 zeros

25
Q

127.x.x.x is for what

A

Local hosts

26
Q

Top level domain

A

.com, .net, etc

27
Q

2nd level domain

A

Website name

28
Q

Subdomain

A

Anything preceeding website name.
Ex…welcome.fullstackacademy.com

29
Q

Protocol

A

Hotpot, https etc

30
Q

nslookup

A

Queries dns servers to find out dns info

31
Q

Non- authoritative answer in nslookup

A

Server had to go to another dns to find the request

32
Q

Tcp

A

Transmission control protocol

33
Q

Udp

A

User datagram protocol

34
Q

Ports

A

Endpoint of network communication. Need a port to communicate. Like apartment doors in a building. Ip address is building. Port is door.

35
Q

Port 20/21

A

File transfer protocol. 20 = data transfer, 21 = message control

36
Q

Port 22

37
Q

Port 25

A

Simple mail transfer protocol (smtp). Emails

38
Q

Port 53

A

Dns queries

39
Q

Port 80

40
Q

Port 443

41
Q

Port 3306

A

Database exchange

42
Q

nmap

A

Used to find open ports, identify devices, services and OS’s.
Sudo nmap -F 192.168.1.54

43
Q

zenmap

A

Like nmap but gui version

44
Q

netstat

A

Prints network stats, routing tables, interface stats.

45
Q

netstat -t

46
Q

netstat -l

A

Open ports that are listening

47
Q

netstat -p

A

Show program responsible for port

48
Q

netstat -n

A

Show number of ports

49
Q

Zenmap target

A

Target ip. Can use - to look @ multiple addresses.
Ex…target 192.168.2.1 -25

50
Q

Network enumeration

A

Seeing what’s going on in the whole network.