HOTSPOT
You have a DHCP server named Server1 that runs Windows Server 2012 R2.
On Server1, you run the commands as shown in the exhibit. (Click the Exhibit button.)
To answer, complete each statement according to the information presented in the exhibit.
Each correct selection is worth one point.

Can anyone explain the first , why is 192.168.15.250 ?
0
0
This is how I read it..
First Question is that the computer is connected to the 192.168.15.0 network , relay agents and network devices will ensure the computer gets a 192.168.15.xx address..
Second question
Creation of scope 2 – startrange 11 endrange 200 = 189
Reconfigure Scopeid 192.168.15.0 – startrange 11 endrange 230 = 219
Exclusion Scopeid 192.168.15.0 – startrange 21 endrange 30 = 9
219 -9 = 210
0
0
-dnsserver 172.16.1.250 -reserverdIP 192.168.10.15 ? DNS should be this no ?
0
0
They say that the computer is not connected to network 192.168.10.x, but 192.168.15.x
7th code line:
Set-DhcpServerv4OptionValue -Dnsserver 192.168.15.150 -Router 192.168.15.1 -ScopeId 192.168.15.0
0
0
The 172. DNS is only for that reserved IP from the second line.
The 192 scope ID is what applied to all other addresses in that scope.
0
0
i have test this in mine lab. i Get dns 172.16.1.250..?
This is because of the reservation i think
0
0
MAC Address AABBCCDDEEFF is from reserved IP 192.168.10.15
Set-DhcpServerv4OptionValue -DnsServer 172.16.1.250 -ReservedIP 192.168.10.15
from above, the DnsServer 172.16.1.250 is set for 192.168.10.15
Answer: 172.16.1.250
******************************************************************
Set-DhcpServerv4Scope -ScopeId 192.168.15.0 -StartRange 192.168.15.11 -EndRange 192.168.15.230
Scope range is 11-230 = 220
then an exclusion from 192.168.15.21 to 192.168.15.30 = 10
DHCP Scope for 192.168.15.0 is 220(range)-10(exclusion)
answer is 220-10 = 210 available addresses for lease
0
0