|
Part 2
This test covers: DHCP, DNS, Routing, Network Troubleshooting, and general network exam topics.
Degree of Difficulty: Moderate
1. In the Sun TCP/IP model, the layer responsible for name resolution is:
a. Network
b. Application
c. Transport
d. Internet
Answer: d
2. A frame greater than the MTU is known as:
a. runt
b. overhead
c. jabber
d. fragment
Answer: c
3. Which command is used to print the "dhcp_network" file?
a. dhtadm -P
b. pntadm -P
c. pntadm --print
d. dhtadm -p
e. dhtadm --print
Answer: b
4. Which OSI layer is responsible of re-establishing interrupted connections?
a. Transport
b. Presentation
c. Network
d. Datalink
e. Application
f. Session
Answer: f
Session layer controls the interruptions in connections and if exist, they are re-established.
5. Which of the following is a correct way of adding a new network route?
a. route add net 192.168.2.0 192.168.1.1.1
b. route add -n 192.168.2.0 192.168.1.1
c. route add 192.168.2.0/24 192.168.1.1
d. route add -net 192.168.2.0 192.168.1.1
Answer: a
With route command you issue an "add" option, in order to describe the destination as a network you add "net" argument and then the destination network; the gateway. |
|