Network Administration

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/115

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

116 Terms

1
New cards

How do you convert a decimal value to binary

1. Divide the base value by 2
2. record the result and the remainder (either 1 or 0)
3.keep dividing the result by 2 until the result reaches 0,
4. then write it down from last answer to first answer obtained

2
New cards

What is A-Z in ASCII?

65-90

3
New cards

What is 1-6 in ASCII?

49-54

4
New cards

What is the decimal value of ~ in ASCII?

126

5
New cards

What is the decimal value of ! in ASCII?

33

6
New cards

What is the decimal value of @ in ASCII?

64

7
New cards

What is the decimal value of # in ASCII?

35

8
New cards

What is the decimal value of $ in ASCII

36

9
New cards

What is the decimal value of % in ASCII?

37

10
New cards

What is the decimal value of ^ in ASCII?

94

11
New cards

What are the key components of a computer?

- CPU
- Primary Storage
- Secondary Storage
- Input
- Output
- I/O Controller

12
New cards

What are some end user devices?

- PC/Workstation
- Server
- Printer

13
New cards

What are copper forms in media?

- Unshielded Twisted Pair
- Shielded Twisted Pair
- Coaxial Cable

14
New cards

What are glass forms in media?

- Fibre Optic

15
New cards

What are air forms in media?

- Infrared
- Bluetooth
- WiFi

16
New cards

What are some problems in media and what are their definitions?

- Attenuation: When a signal gets graudually weaker over distance

- Interference: When a signal gets disrupted

17
New cards

What does a repeater do?

Electronic Device that receives a signal and retransmits it at a higher level and or higher power or onto the other side of an obstruction, so that the signal can cover longer distances. (Operates at the physical layer)

18
New cards

What does a hub do?

It lets you connect multiple computers, they are usually used to create a LAN. (Operates at the physical layer)

19
New cards

What does a bridge do?

Connects LANs to a network (operates at the data-link layer)

20
New cards

What does a switch do?

Similar purpose to bridges, but has multiple ports which increases data travel efficiency (operates at the data-link layer)

21
New cards

What does a router do?

Connects computers and transmits data to correct destinations on a network. Forwards data using fastest available path (operates at the network layer)

22
New cards

What does a server do?

It provides a particular service and manages resources

23
New cards

What is necessary to send TCP data?

3-way handshake

24
New cards

What must the medium be?

Copper

25
New cards

What is the 3 way handshake?

It is specific to TCP. The handshake goes SYN, SYN + ACK, ACK.

26
New cards

What is a frame check sequence (FCS)?

4 bytes added at the end of a frame to check for errors

27
New cards

What is the 7th Layer of the OSI Model, and the 4th Layer of the TCP/IP Model?

Application

28
New cards

What is the 6th layer of the OSI Model?

Presentation

29
New cards

What is the 5th layer of the OSI Model?

Session

30
New cards

What is the 4th layer of the OSI Model?

Transport

31
New cards

What is the 3rd layer of the OSI Model?

Network

32
New cards

What is the 2nd layer of the OSI Model?

Data Link

33
New cards

What is the 1st Layer of the OSI Model?

Physical

34
New cards

What is the 3rd Layer of the TCP/IP Model?

Transport Layer

35
New cards

What is the 2nd Layer of the TCP/IP Model?

Internet Layer

36
New cards

What is the 1st Layer of the TCP/IP Model?

Network Access

37
New cards

What range does a class A ipv4 address cover, and what default subnet mask does it have?

Range: 1 - 126
Default Subnet Mask: 255.0.0.0

38
New cards

What range does a class B ipv4 address cover, and what default subnet mask does it have?

Range: 128 - 191
Default Subnet Mask: 255.255.0.0

39
New cards

What range does a class C ipv4 address cover, and what default subnet mask does it have?

Range: 192 - 223
Default Subnet Mask: 255.255.255.0

40
New cards

What is the multicast address range, and what does it do?

Address: 224.0.0.0 - 239.255.255.255
Purpose: Sends data to group of devices at once

41
New cards

What is the IETF address range, and what does it do?

Address: 240.0.0.0 - 255.255.255.254
Purpose: Testing and researching

42
New cards

What is the loopback address range, and what does it do?

Address: 127.0.0.1 - 127.255.255.255
Purpose: Allows devices to communicate to themselves

43
New cards

What is the universal broadcast range, and what does it do?

Address: 255.255.255.255
Purpose: sending messages to all devices in a localnetwork

44
New cards

How do you calculate the network address?

1. Take the binary equivalent of the ip address and subnet mask

2.place them on top of each other and compare them (first bit of both, second etc.)

3. Write out the subnet in binary using the rules below:
- Both bits are 1 = 1
- If not = 0

4.. then convert the binary answer into a decimal number

45
New cards

What is a bus network topology?

all devices run on a single cable

46
New cards

What is a star network topology?

all devices connect to a singular hub

47
New cards

What is a ring network topology?

all devices are arranged in a circle

48
New cards

What is a mesh network topology?

offers two data transmission types: routing and flooding

49
New cards

How do you communicate with other subnets?

Through a router or gateway

50
New cards

How do you communicate via same subnet/LAN

IP address + subnet mask

51
New cards

How do you communicate with other subnets/LANs by host-name

Use a DNS Server

52
New cards

What is necessary for communication with other subnets via ip address?

Default gateway

53
New cards

What is subnet mask's purpose?

Places devices into a heiracy within the network

54
New cards

What is a socket?

the combination of IP addresses and port numbers

55
New cards

How do you calculate subnet masks?

1. Take the number of 1's in the addresses' binary form, that is equal to the number of bits for the network portion.

2. Add 2 onto the CIDR notation example: /24 turns into /26 after taking 2 bits

3. Calculate the new address
Example:
11111111.11111111.11111111.00000000 = 255.255.255.0
After:
11111111.11111111.11111111.11000000 = 255.255.255.192

56
New cards

What are the most common CIDR notations?

- /8 = 255.0.0.0
- /16 = 255.255.0.0
- /24 = 255.255.255.0

57
New cards

How can I determine the host and network portions in CIDR?

Host portion = CIDR Notation

Network Portion = CIDR Notation - 32 = result

58
New cards

What are some benefits of subnetting?

1. Can reduce network congestion
2. Can utilise firewalls to separate subnets which increases network security

59
New cards

How can I calculate supernetting?

1. Take the binary equivalent of both subnet masks

2.place them on top of each other and compare them (first bit of both, second etc.)

3. then identify how many consecutive bits are identical out of the 32 bits

60
New cards

What is the subnet mask requirement for supernetting?

Must have the same subnet mask length

61
New cards

What is the range requirement for supernetting?

Must be in the same IP range

62
New cards

What is the port number for HTTP?

80

63
New cards

What is the port number of FTP?

21

64
New cards

What is the port number of SMTP?

25

65
New cards

What is the port number of DNS?

53

66
New cards

What is the port number of RIP?

520

67
New cards

What is the port number of SNMP?

161

68
New cards

What does ARP do?

Shows the IP address to MAC address mapping table.

69
New cards

What does hostname do?

Displays current devices hostname

70
New cards

What does ipconfig do?

displays IP address as well as other various TCP information.

71
New cards

What does netsh do?

Shows and allows for configuration relating to IPv4/IPv6

72
New cards

What does netstat do?

Shows detailed information for active connections.

73
New cards

What does ping do?

Tests connectivity by sending and receiving packets of data

74
New cards

What does route do?

view and configure the host's local routing table

75
New cards

What does tracert do?

Determine the route a packet takes to a destination

76
New cards

What does pathping do?

Identifies routes taken by packets to destinations, however it additionally looks for packet losses in all routers and subnets in the path

77
New cards

What is DHCP?

A protocol used to automate the assignment of IP Address.

78
New cards

Why use DHCP?

- flexibility for IP address management
- centralises IP configuration

79
New cards

What is scope in DHCP?

The pool of IP addresses to choose from, with each subnet having its own scope

80
New cards

What is exclusion in DHCP?

Prevents DHCP from assigning specific addresses to client devices

81
New cards

What is reservation in DHCP?

Reserves IP addresses for DHCP clients which ensures specific devices will get specific IP addresses

82
New cards

What is necessary for DHCP?

1. Default Gateway
2. DNS Server

83
New cards

What is the DORA process in DHCP?

1. DHCPDISCOVER
2. DHCPOFFER
3. DHCPREQUEST
4. DHCPACKNOWLEDGEMENT

84
New cards

What is a DNS server?

translates the domain name into its associated IP address

85
New cards

What is the structure of DNS?

- Root
- TLD
- Domain

86
New cards

What are the zone types in DNS?

- Primary: read/write copy of dns database, used always
- Secondary: read-only copy of dns database, used for redundancy and sites with slow connections
- Stub: a read-only partial copy of a zone that contains records that are used for locating name servers, used for dynamic conditional forwarding

87
New cards

What are some DNS Zone configuration?

- Master Server: DNS server that hosts copy of domain's zone, default settings forbid their data to be transferred

Dynamic Updates: allows device to update IP address of its A record if a DHCP server has allocated it a different IP address

88
New cards

What are the two types of DNS Queries?

Recursive queries:
- either returns result or error

Iterative queries:
- either returns result or referral to other server

89
New cards

What is the difference between forwarders and conditional forwarders in DNS?

Forwarders
Forwards queries that cannot be resolved by DNS server to:
- isp DNS server
- head office DNS server
- parent domain DNS server

Conditional Forwarders
- forwards queries for a domain to a domains DNS server

90
New cards

What is DNSSEC?

Uses encryption of DNS traffic through public/private key infrastructure

91
New cards

What is split-brain DNS

Design that prevents external parties from getting network details

92
New cards

What is the difference between external and internal DNS?

- Internal DNS: Dynamic, Full copy of zone

- External DNS: Manual, limited number of records

93
New cards

What is SOA in DNS?

start of a zone of authority identifier

94
New cards

What is A in DNS?

Maps domain names to IPv4 addresses

95
New cards

What is AAAA in DNS?

Maps domain names to IPv6 addresses

96
New cards

What is NS in DNS?

indicates name servers that are authoritative for a zone

97
New cards

What is PTR in DNS?

Maps an IP address into a domain name, utilised in reverse lookups

98
New cards

What is CNAME in DNS?

Specifies an Alias

99
New cards

What is MX in DNS?

Specifies a mail exchange server for a DNS domain name

100
New cards

What is SRV in DNS?

Specifies the IP address of servers for specific services