|
1. What command would set the DHCP agent to log details of the packets exchanged with the server?
A. /sbin/dhcpagent –f –l 0
B. /sbin/dhcpagent –f –s
C. /sbin/dhcpagent –d3
D. /sbin/dhcpagent –l2
C (-d3 turns debugging on to level 3)
2. Which of the following are SNMP functions?
A. get
B. put
C. set
D. trap
A, B, D (get, set, and trap are the three main SNMP functions. With these you can set up remote administration and monitoring)
3. Given the following in DNS, what is happening?
zyx IN CNAME out.abc.corp
A. zyx is a name server that gets its information from out.abc.corp
B. zyx is an alias to out.abc.corp
C. out.abc.corp is an alias to zyx
D. out.abc.corp is the main server for the subdomain of zyx
B (CNAME (Canonical Name) is basically an alias in DNS)
4. Given the following, where will any DNS error messages go?
@ IN SOA abc.def.com. me.def.com. (
1
43200
3600
604800
86400
)
A. root@def.com
B. root@abc.def.com
C. nowhere, It is not specified in the SOA record
D. me@def.com
D (Since the @ has special meaning in dns records, there is a . where the @ should be in regular email naming conventions, therefore the me.def.com actually means me@def.com)
5. Given the following, How long is the retry timer set for?
@ IN SOA abc.def.com. me.def.com. (
1
43200
3600
604800
86400
)
A. 12 hours (43200 seconds)
B. 1 hour (3600 seconds)
C. 1 day (86400 seconds)
D. 1 week (604800 seconds)
B (The order of the numbers in the SOA record (although usually commented out) is as follows: Serial Number, Refresh Timer, Retry Timer, Expire Timer, Minimum Timer) |
|