The benefit would be the added convenience of seeing
meaningful DNS names instead of numeric IPs for those that
prefer this. The added load on stunnel would be trivial
for reverse dns lookups on separate process threads.
-----------------
What would be the benefit? It would slow stunnel down.
Thanks,
I
guess I could do the equivalent with a batch file; but,
was really hoping for
buitin support for this in stunnel. It would be nice to
see in the
upcoming 5.00 release as an option.
-----------------
Don't
know
on windows, but did a little test with a script to get
the hostnames.
First did a test using you records, and then used my
current stunnel.log
script
stlog.chk
==================
grep
-Eo
'([0-9]{1,3}\.){3}[0-9]{1,3}' /var/log/stunnel.log |
sort | uniq
>stout
echo
""
>stout2
for
a
in `cat stout` ; do
echo -n $a " ">>stout2;
host $a | awk '{print $5}' >>stout2;
done
The
results
of stout2 are
127.0.0.1
localhost.
192.168.128.201
3(NXDOMAIN)
Probable
would
want to add some code to filter out private address.
Final
step
would be to scan original log and add the name on