From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH] Add column with resolved hostname by IP address Date: Fri, 24 Nov 2023 13:34:02 +0000 Message-ID: In-Reply-To: <20231109213641.15840-1-sebastien.gislain@free.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6176221235435546876==" List-Id: --===============6176221235435546876== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello Sebastien, Thank you very much for submitting this patch. However, I do have some concer= ns about this being merged. If you only have a couple of leases, everything is fine, but there are people= who have hundreds of DHCP clients on their network, and it has been reported= before that this page is loading extremely slow. Adding a DNS request to thi= s will probably make loading the page many times slower than it already is. And to consider the performance hit, I do not quite know what the benefit is = of showing this. Should we not rather parse the DHCP leases file and show the= hostname that the client has submitted? That would show the same result, but= it would be a lot faster. -Michael > On 9 Nov 2023, at 21:36, Sebastien GISLAIN wr= ote: >=20 > --- > html/cgi-bin/dhcp.cgi | 7 +++++++ > 1 file changed, 7 insertions(+) >=20 > diff --git a/html/cgi-bin/dhcp.cgi b/html/cgi-bin/dhcp.cgi > index f45703f0b..aabf565d7 100755 > --- a/html/cgi-bin/dhcp.cgi > +++ b/html/cgi-bin/dhcp.cgi > @@ -21,6 +21,7 @@ >=20 > use strict; > use experimental 'smartmatch'; > +use IO::Socket; >=20 > # enable only the following on debugging purpose > #use warnings; > @@ -1009,6 +1010,7 @@ print < > $Lang::tr{'mac address'} > $Lang::tr{'ip address'} > + $Lang::tr{'hostname'} > $Lang::tr{'remark'} > next-server > filename > @@ -1106,9 +1108,14 @@ foreach my $line (@current2) { > $TAG4 =3D "class=3D'red'" if ($dhcpsettings{'KEY2'} ne $key); > } >=20 > + # resolved name (if exists) > + my $iaddr =3D inet_aton($temp[1]); > + my $rname =3D gethostbyaddr($iaddr, AF_INET); > + if (!$rname || $rname eq "") { $rname =3D $Lang::tr{'lookup failed'}; } > print < $TAG2$temp[0]$TAG3 > $TAG0$temp[1]$TAG1 > +$rname  > $temp[6]  > $temp[3]  > $temp[4]  > --=20 > 2.39.2 >=20 --===============6176221235435546876==--