public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] Add column with resolved hostname by IP address
Date: Tue, 28 Nov 2023 10:40:04 +0000	[thread overview]
Message-ID: <9679886A-0459-4561-AF0A-106B330D7532@ipfire.org> (raw)
In-Reply-To: <98bd316a-0c32-4fb1-817e-27a2e9dd6dba@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4258 bytes --]

Hello,

> On 28 Nov 2023, at 06:33, Sébastien GISLAIN <sebastien.gislain(a)gmail.com> wrote:
> 
> Hi,
> 
> I understand your reluctance for this development.
> 
> On the one hand, the resolution only concerns local hosts.

It is not guaranteed that any DNS lookups will only happen locally, but indeed rather likely.

> On the other hand, in my personal IPFire, with a Class C subnet on green network, I have 156 fixed leases and I don't see any slowdown.
> 
> Do you know of any IPFire deployments with class B or A subnets?

We have lots of users that have a couple of thousand clients behind the firewall, a couple of hundreds isn’t really that rare.

> Additionally, searching into the local hosts file requires more complex development...

Not the hosts file… The DHCP leases file. That is being parsed further down showing a long table. It contains hostnames that the clients have submitted and you could match them by their MAC/IP address. That way, you only parse one file and you get the hostname that the client thinks it has.

> Have a nice day,
> Sébastien
> 
> P.S.    Especially since I had prepared an update on the firewall log page (firewalllog.dat) which was even slower than that of the DHCP server page (dhcp.cgi)! 8'-(

What would that do?

> 
> Je comprends ta réticence pour cette évolution.
> D'une part, la résolution ne porte que sur des hôtes locaux.
> D'autre part, dans mon IPFire personnel, avec un sous-réseau de classe C, j'ai 156 baux fixes et je ne constate pas de ralentissement.
> Connais-tu des déploiements d'IPFire avec des sous-réseaux de classe B ou A ?
> 
> Le 24/11/2023 à 14:34, Michael Tremer a écrit :
>> Hello Sebastien,
>> 
>> Thank you very much for submitting this patch. However, I do have some concerns 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 this 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 <sebastien.gislain(a)free.fr> wrote:
>>> 
>>> ---
>>> html/cgi-bin/dhcp.cgi | 7 +++++++
>>> 1 file changed, 7 insertions(+)
>>> 
>>> 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 @@
>>> 
>>> use strict;
>>> use experimental 'smartmatch';
>>> +use IO::Socket;
>>> 
>>> # enable only the following on debugging purpose
>>> #use warnings;
>>> @@ -1009,6 +1010,7 @@ print <<END
>>> <tr>
>>> <th width='20%' align='center'><a href='$ENV{'SCRIPT_NAME'}?FETHER'><b>$Lang::tr{'mac address'}</b></a></th>
>>> <th width='20%' align='center'><a href='$ENV{'SCRIPT_NAME'}?FIPADDR'><b>$Lang::tr{'ip address'}</b></a></th>
>>> + <th width='20%' align='center'><b>$Lang::tr{'hostname'}</b></a></th>
>>> <th width='15%' align='center'><b>$Lang::tr{'remark'}</b></th>
>>> <th width='15%' class='boldbase' align='center'><b>next-server</b></th>
>>> <th width='15%' class='boldbase' align='center'><b>filename</b></th>
>>> @@ -1106,9 +1108,14 @@ foreach my $line (@current2) {
>>> $TAG4 = "class='red'" if ($dhcpsettings{'KEY2'} ne $key);
>>> }
>>> 
>>> + # resolved name (if exists)
>>> + my $iaddr = inet_aton($temp[1]);
>>> + my $rname = gethostbyaddr($iaddr, AF_INET);
>>> + if (!$rname || $rname eq "") { $rname = $Lang::tr{'lookup failed'}; }
>>> print <<END
>>> <td align='center' $col>$TAG2$temp[0]$TAG3</td>
>>> <td align='center' $TAG4 $col>$TAG0$temp[1]$TAG1</td>
>>> +<td align='center' $col>$rname&nbsp;</td>
>>> <td align='center' $col>$temp[6]&nbsp;</td>
>>> <td align='center' $col>$temp[3]&nbsp;</td>
>>> <td align='center' $col>$temp[4]&nbsp;</td>
>>> -- 
>>> 2.39.2
>>> 
>>> 
>> 
> 


       reply	other threads:[~2023-11-28 10:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <98bd316a-0c32-4fb1-817e-27a2e9dd6dba@gmail.com>
2023-11-28 10:40 ` Michael Tremer [this message]
2023-11-09 21:36 Sebastien GISLAIN
2023-11-10 18:26 ` Adolf Belka
2023-11-24 13:34 ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9679886A-0459-4561-AF0A-106B330D7532@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox