SysAdmin Flashcards

1
Q

Microsoft IIS, Apache, nginx

A

A few of the most popular web servers

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

DNS

Domain name system

A

Network service that converts a webpage’s domain name into its IP address

Allows a company to host multiple servers around the world with the same domain name, or to change IP addresses without affecting customers

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

4 things you need to connect a network to the internet

A

IP address, subnet mask, gateway router, and DNS

not totally sure about this one!

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

5 types of DNS servers

A

Caching, recursive, root, TLD (top level domain), authoritative

(good diagram of how they work together in Course 2 notes p 15)

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

Caching name server

A

DNS server that simply stores known domain names for a certain amount of time

Usually provided by your ISP; most are also recursive servers

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

Recursive name server

A

DNS server that performs full DNS resolution requests

Usually provided by your ISP

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

Root name server

A

DNS server that is the first stop when your caching/recursive name server needs to find an IP address

Includes 13 authorities, and your request can go to any of them

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

TLD (top-level domain) name server

A

Top-level domain is the .com or .edu (for example) part of a domain name

Each TLD has a server, which is really a series of Anycast servers

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

Authoritative name server

A

DNS server that provides the IP address requested

This is usually a server controlled by the organization that runs the website in question

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

Anycast

A

Technique that routes traffic to different internet destinations based on location, traffic, and other factors

Allows for multiple servers, frequently spread across the globe, to function as one server

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

DNS time to live (TTL)

A

How long (in seconds) a DNS server can cache an entry; set by the owner of the domain name

Usually a few minutes to a few hours

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

A record

A

Connects a certain domain name to a certain IPv4 address

A busy domain name (ex: google.com or facebook.com) will have multiple IP addresses and an A record for each

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

Quad A (AAAA) record

A

Connects a certain domain name to a certain IPv6 address

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

CNAME record

canonical name record

A

Directs traffic from one domain name to another

ex: weather.com to www.weather.com

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

Fully qualified domain name (FQDN)

A

Includes subdomain (www), domain (palmbeachzoo), and top-level domain (.org)

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

DNS zones

A

Part of a large company served by a particular authoritative name server

Ex: a company with business centers in LA, Shanghai and Paris might have 4 authoritative servers, one for company.com, and one for each subdomain (la.company.com, etc.)

17
Q

DNS zone files

A

Simple configuration files that list all resource records (ex: A and Quad A records) for a particular zone

18
Q

DHCP

Dynamic Host Configuration Protocol

A

Application layer protocol that assigns IP addresses to devices in a network

Good for clients, but servers should have a fixed IP address

19
Q

DHCP allocation options (dynamic, automatic, fixed)

A

Dynamic allocation - DNS server issues a random IP address from its range each time a device connects; most common

Auto allocation - DNS server keeps track of devices’ last IP address, and gives the same one back if possible

Fixed allocation - can be a security feature to disable dynamic/auto allocation (a device that hasn’t been assigned a fixed IP address won’t be able to connect)

20
Q

NTP

Network time protocol

A

NTP server keeps all computers on your network synchronized

DHCP usually handles this

21
Q

DHCP discovery

A

Process a client devices uses to “ask for” an IP address and the other info (such as gateway IP and subnet mask) it needs to connect to the network

22
Q

DHCP lease

A

Temporary IP address assigned to a client by a DNS server

Can be good for a few days or just a short time

23
Q

NAT

Network Address Translation

A

Technology that allows a gateway (usually a router or firewall) to rewrite the source IP of an outgoing IP datagram, and send the response back to the correct device

Allows most of a network’s computers to use non-routable IP addresses

24
Q

IP masquerading

A

Hiding a computer’s IP address (usually through Network Address Translation)

Prevents unauthorized devices from connecting to the computer

25
Q

Port forwarding

A

An option in NAT (network address translation) where messages to a certain port are always delivered to a particular host

Ex: a gateway router is set to always send traffic with destination port 80 to the company’s web server