<div dir="ltr">I am installing 24.04 on a computer - using DHCP<div>I get TWO DHCP addresses on same NIC enp3s0</div><div>192.168.2.189 - which is valid</div><div>and then also 192.168.10.136 - which is not valid </div><div><br></div><div>my config is below I added the 192.168.10.0 range to try and DENY it on the network.</div><div><br></div><div>Why is Ubuntu 24.04 getting this address? I dont recall it on 22.04.</div><div>The linux offering DHCP is 24.04 and the machine asking for DHCP is also 24.04. It fails install then because the 192.168.10.X network is the default route and is totally not valid.</div><div><br></div><div>Thanks</div><div><br></div><div>Jerry</div><div><br></div><div>----</div><div># dhcpd.conf<br>#<br># Configuration file for ISC dhcpd (see 'man dhcpd.conf')<br>#<br><br>authoritative; <br><br>option domain-name-servers 8.8.8.8;<br>option tftp-server-name "192.168.1.8";<br>option ntp-servers 17.151.16.20;<br>option routers 192.168.1.1;<br><br>default-lease-time 86400;<br><br>ddns-update-style none;<br><br>subnet 192.168.0.0 netmask 255.255.252.0 {<br>     range 192.168.2.1 192.168.2.254;<br>}<br><br># Block or 24.04<br>subnet 192.168.10.0 netmask 255.255.255.0 {<br>  range  192.168.10.1 192.168.10.254;<br>          deny unknown-clients;<br> }<br></div></div>