Chapter 3 Flashcards
What are the network-oriented application layer protocols?
DNS, SNMP, LDAP, DHCP, RIP
What does DNS stand for?
Domain name system
What is the purpose of the DNS?
To translate names of computers to addresses
Different domain levels:
- TLD = (top level domain )
gTLD ( generic TLD )
ccTLD (country code TLD)
sTLD (sponsored TLD
what are some examples of gTLD?
.com, .gov and .net
What are some examples of ccTLDs?
.za, .sa, .ls, .zm ….
What are some sTLDs?
.microsoft, .apple
By who is the .za ccTLD controlled by?
ZADNA (.za Domain Name Authority)
Who is the authority at the root of the DNS?
IANA
How does one determine the owner of a domain?
whois www.xxx.co.za
What is a zone file?
A data structure that represents info at each node
What is at the core of a zone file?
A set of triples (name, record type, address)
What is A in a zone file?
an address
what is NS in a zone file?
name server
What does it mean if an entry is a NS?
Go to the server listed to resolve the name.
What are the 2 ways name resolution may be performed?
Recursively or iteratively
Whats the difference between recursive and iterative name resolution?
Recursive = all the work gets done for you
Iterative = you need to follow the path
How many root name servers are there?
13
What is a fully qualified domain name?
Starts at TLD down to domain name of interest
What does SOA mean?
Start of authority
What is the difference between primary and secondary name servers?
Secondary = backup of primary
What is copying from the primary name server to the secondary name server called?
Zone transfers
Why is a secondary name server needed?
To increase fault tolerance
What is TTL and what does it indicate?
Time to live, how long data has left before it expire (Best before date)
Can records overwrite the TTL set be the SOA?
Yes
What does CNAME record do?
Assigns an alias to a domain name
Make an alias for www called ftp
ftp IN CNAME www
What is a MX record?
A mail exchange record
Why is Mx needed and not Only A?
Because A will not determine the destination of the email
What does @,MX, and 10 mean in
@ IN MX 10 mail
@ = root domain
10 = priority
Mx = Mail Exchange
Whats the difference between A and AAAA records?
The type of address is stores. AAAA = IPv6
What is PTR in a zone file?
Pointer ( for reverse DNS queries )
What is a reverse DNS query?
192.168.18.59 PTR www.xx.co.za
Lokking up 59.18.168.192.in-addr.arpa ( reverse of name ) yields www.xx.co.za
What is the primary bootstrapping protocol?
DHCP ( Dynamic Host Configuration protocol)
How are discless computers booted?
TFTP via the network
What are the 2 key components for network management?
Agents + manager ( central console to monitor + control agents )
What is the challenges of managing networks through agents and managers?
Security + reliability + performance impact
What happens with network management if changes are needed on agent nodes?
Manager sends instructions to that specific agent node
What is the most popular network management protocol?
SNMP ( Simple Network Management protocol )
What are the different commands of a SNMP manager?
Get, GetNext, GetBulk
SNMP was developed as part of …..
TCP/IP
On what is CMIP based?
ISO OSI protocols
What are the directory access protocols?
X.500
X.509
LDAP
What is X.500 and who was it developed by?
Directory access protocol
Developed by ITU-T
Which protocol implements a DIT ( Directory Information Tree)?
x.500
What do you call the component that manages the DIT in X.500?
DSA ( Directory System Agent )
What does a user use to query the DSA?
DUA ( Directory user agent)
How do DSAs communicate with one another?
Using DSP (Directory Systems protocol)
Which Directory Access protocol deals with public key cryptography?
X.509
What is a certificate tree?
When a CA has a CA that has a CA and so on
Why was LDAP developed?
X.500 was too complex
How does LDAP arrange info?
In a hierarchical directory
What is at the base of a LDAP directory?
Base DN ( base distinguished name )
What are the 2 types of gateway protocols?
EGP ( Exterior Gateway protocol )
IGP ( Interior Gateway protocol )
What do gateway protocols do?
Determine the best path for packets from one place to another
What is the cost of a path called in routing?
The hop count
Where does an IGP operate?
Inside of a organizations autonomous systems
Where does an EGP operate?
Between organizations autonomous systems
What do IGPs base their routing decisions on?
Primarily cost
What do EGP base their routing decisions on?
Other factors such as policies rather than cost
What is the best known EGP?
BGP ( Border Gateway Protocol )
Why dont most people know what a BGP does?
Only used on edge routers of big companies or ISPs
What are the 2 IGP protocols?
RIP (Routing information protocol) and OSPF (Open shortest Path First )
What algorithm does RIP implement?
Bellman ford
What is used as a metric in the bellman ford algorithm?
Hop count
How does routers see the others routing tables?
They broadcast it occasionally
Study DJikstra + RIP stuffies
What does OSPF store?
Topology of the entire network
Which IGP uses Dijkstra?
OSPF