DHCP Flashcards

1
Q

DHCP Benefits

A

Centralized & automated IP configuration

Efficient handling of clients that must be updated frequently

Laptops that move locations on a wireless network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

DHCP Relay Agent

A

Eliminates the need for a DHCP server on every subnet by forwarding DHCP messages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

DHCP Clients

A

Desktop PCs are good clients because there are typically many
They don’t accept incoming connections so it doesn’t matter if the IP changes

Servers, routers, switches, etc should be configured manually

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Command: Configure DHCP Server

A

ip dhcp excluded-address 10.10.10.1 10.10.10.10 –> specifies scope excluded from pool

ip dhcp pool Flackbox
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server 10.10.20.10

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Command: Verify DHCP information

A

Display total, excluded, & leased addresses:
show ip dhcp pool

Display addresses handed out:
show ip dhcp binding

Show information about a specific DHCP lease:
show dhcp lease

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Command: Configure External DHCP server at 10.10.20.10 on interface F0/1

A

interface f0/1

ip helper-address 10.10.20.10

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Command: Configure F0/0 as a DHCP client

A

interface f0/0
ip address dhcp
no shutdown

How well did you know this?
1
Not at all
2
3
4
5
Perfectly