DNS/DHCP configuration Flashcards

1
Q

How do you enable a router to act as a DNS server?

A

()ip dns server

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

What command would you use to verify DHCP configuration on a Cisco device?

A

sh dhcp lease

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

What command would you use to enable DHCP on a router if you didn’t have a static public ip?

A

Enable on the ISP-facing interface:

(if)ip address dhcp

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

What command would you use to verify IP settings on Mac?

A

ip address show

ifconfig

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

What command would you use to verify IP settings on Linux?

A

ifconfig

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

How do you view the default gateway on Mac?

A

Netstat -rn

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

How do you view the default gateway on Linux?

A

ip route show

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

How do you configure IP relay capability on a Cisco router?

A

On the client facing interface enable ip helper and point it to the DHCP server’s address:

(if)ip helper-address 10.10.10.10

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

What should you specify first when using a router as a DHCP server?

A

List excluded addresses from the DHCP pool:

()ip dhcp excluded-address 1.1.1.1

A good one to add is router’s own interfaces:
show ip interface brief

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

How do you give a name to a DHCP pool?

A

()ip dhcp pool 10.10.10.0 namehere

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

How do you specify the network range and subnet mask for cisco DHCP?

A

()ip dhcp pool namehere

(dhcp)network 10.10.10.0 255.255.255.0

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

How do you view the dhcp pool on a router?

A

show ip dhcp pool

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

how do you view the distributed addresses on a router?

A

show ip dhcp binding

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

How do you configure the default route for IOS DHCP?

A

To the default gateway for the devices:

()ip dhcp pool namehere
(dhcp) default-router 10.10.10.1

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

How do you specify the DNS server for IOS DHCP server?

A

Then specify the DNS server for the devices

()ip dhcp pool namehere
(dhcp)dns-server 10.10.20.10

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