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

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;

39 Cards in this Set

  • Front
  • Back
What layer does DHCP operate on?
Layer 4 - Transport layer
Does DHCP used UDP or TCP?
UDP
What ports does DHCP utilize?
Clients use 68 to send and receive while servers use 67 to send and receive.
What is a DHCP lease?
Defines the amount of time that an IP address is loaned to the client.
What is the Windows default lease time?
8 days for wired connections and 6 hours for wireless connections.
What factors should you examine when determining how long a DHCP lease should last?
The type of client (wireless / wired)
Average connection time
Number of IP addresses
What is an address exclusion?
Used for hardware with an existing IP address that cannot change. Servers are a prime example of this.
What takes presendence: server or scope options?
Scope
What is a DHCP reservation?
Allows you to assign a specific IP address to a client without having to statically configure it. It uses the MAC address to determine the IP address it receives.
What is a DHCP relay agent?
DHCP relay agents forward DHCP requests from clients to a server across a router. The relay agent accepts the broadcast and turns it into a unicast to send to the DHCP server.
When is a DHCP relay agent used?
When you don't have a RFC-1542 compliant router with a DHCP server on a seperate subnet.
What is DDNS?
Dynamic DNS. When a DHCP client receives a new address, its record is updated in DNS as well. A and AAAA records.
Is DDNS enabled by default?
Yes, however the DNS server must be configured to accept dynamic updates.
What is DHCPNack
The response from a DHCP server declining the client's request.
What is DHCPDecline?
This response is sent to a DHCP server declining an offered IP address.
What is DHCPRelease?
Sent to the server from the client to relinquish the IP address and end its lease.
What is DHCPInform?
Sent if a client already has an IP address, requesting local configuration information only.
What is the renewal time value?
After 50% of the lease time has passed, the client attempts to renew its lease. Referred to as T1.
What is binding time value?
After 87.5% of the lease time has passed, the client attempts to renew its lease again if previously unsuccessful. If unsuccessful again, it tries to find a new DHCP server. Referred to as T2.
What steps take place in a DHCP renewal?
DHCPRequest and DHCPAck
What is the DHCP addressing process when a node moves to a different subnet?
DHCPRequest
DHCPNack
DHCPDiscover
DHCPOffer
DHCPRequest
DHCPAck
What if a client can't find a DHCP server for an address?
It assigns itself an APIPA address and sends a DHCPDiscover out every five minutes.
Is a DHCP database distributed?
No. A database is stored on each DHCP server.
What type of storage technology is DHCP based on?
Joint Engine Technology (JET)
Where is DHCP's database located?
%systemroot%\system32\dhcp
Does DHCP have a size limit?
No, however once the database has expanded, there isn't a way to shrink it unless the database is compacted.
When does a DHCP database compact?
It automatically compacts during system idle periods.
Where can you access DHCP configuration settings?
Administrative Tools or Server Manager.
You have configured your DHCP server fully in your Active Directory domain. What must you do in order to start handing out addresses?
Authorize the server. This prevents rogue DHCP servers from joining the network and being dicks.
What must you create before issuing IP addresses?
A scope.
What's the difference when configuring an IP address scope for IPv6 versus IPv4?
Instead of using a starting and ending IP address, you use the IPv6 prefix.
What command can you use to configure DHCP settings?
netsh
What is Microsoft's best practice for DHCP fault tolerance?
Using a split scope divided 80/20. This is assuming you can get the primary server back up within one or two days.
Your primary DHCP server died. What options do you have?
1. Expand the scope on the secondary to encompass the entire scope.
2. Install DHCP on another server, however you MUST modify the relay agents with the updated IP address.
When can you skip split scopes for fault tolerance?
When using failover clustering.
What is a DHCP audit log?
Maintains a detailed record of the transactions the server has performed. The last seven logs are saved.
Where is a DHCP audit log located?
%systemroot%\system32\dhcp
How often does DHCP automatically back up?
Every 60 minutes.
How do you stop / start DHCP from command line?
net stop "DHCP Server"
net start "DHCP Server"