• 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/18

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;

18 Cards in this Set

  • Front
  • Back
What does the process Gratuitous ARP do?
In the last stage of DHCP when the client has received an IP address, it sends out an ARP Request for that IP to make sure that it isn't already in use by another client.
To set an IOS device to be a DHCP client
router(config-if)# ip address [dhcp]
To enable the DHCP server service (on by default)
router(config)# service dhcp
To create a pool of Ip addresses to assign to clients
router(config)# ip dhcp pool [name]
To assign a network to the pool
router(config-dhcp)# network [address] [/mask]
To tell the client how long it can keep the address (lease period). Most implementations use 3 days, but Cisco IOS default is 1 day.
router(config-dhcp)# lease [days]
To define the address of the DNS Server for the client
router(config-dhcp)# dns-server [ip address]
To define the domain name for the client
router(config-dhcp)# domain-name [name]
To identify the default gateway
router(config-dhcp)# default-router [ip add]
To enable DHCP to import the options and parameters from 1 interface and pass them to the other interface. This allows a IOS device to receive an IP on 1 interface and assign to another.
router(config-dhcp)# import all
To list addresses that should be excluded from the DHCP pool
router(config-dhcp)# ip dhcp excluded-address [start IP] [end IP]
To forward broadcasts of select UDP ports to predetermined remote locations. In the case of DHCP relays, they forward requests and set the gateway to the local router.
router(config-if)# ip helper-address [Ip add]
To add additional ports to the ip helper-address. The 8 added by default are NTP (udp37), TACACS (UDP49, DNS (udp53), DHCP (udp67&68), TFTP (udp69), netBIOS name service (udp137) and NetBIOS datagram service (udp138)
router(config)# ip forward-protocol upd [port num]
To examine the DHCP database
router# show ip dhcp database
To view more detailed info about the DHCP configuration
router# show ip dhcp server statistics
To display IP address bindings on the DHCP server or for a specific client with the stated IP address
router# show ip dhcp bindings [ip add]
To delete all automatic address binding or a specified one from the DHCP server database.
router# clear ip dhcp bindings [ip add | *]
To enable DHCP server debugging
router# debug ip dhcp server events or debug ip dhcp server packets