• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back
What is the 4-way DHCP handshake process?
1. DHCP client broadcasts a DISCOVER message.
2. DHCP server responds with an OFFER.
3. Client responds with a REQUEST.
4. Server responds with an ACKNOWLEDGEMENT.
What is the bare minimum syntax needed to define a DHCP pool?
ip dhcp pool <#>
network 172.16.0.0 /16
What is the syntax to define a DNS suffix in a DHCP pool?
router(config-dhcp)# domain-name <domain.com>
What is the syntax to define DNS servers in a DHCP pool?
router(config-dhcp)# dns-server <ip_1> <ip_2> <ip_N>
What is the syntax to define WINS servers in a DHCP pool?
router(config-dhcp)# netbios-name-server <ip_1> <ip_2> <ip_N>
What is the syntax to exclude an addresses from a DHCP pool?
router(config)# ip dhcp excluded-address <start_ip> <end_ip>

OR

router(config)# ip dhcp excluded-address <single_ip>
What is the syntax to define a DHCP static reservation?
ip dhcp pool <name>
host <ip>
hardware-address <dotted-mac>
client-name <name>
What is another method of defining DHCP static reservations?
TFTP file

ip dhcp pool <name>
origin file tftp://<ip>/<filename>