Dear Maintainer,
There are multiple patches in debian finger to make it work on ipv6.
Unfortunately, if I install fingerd, it's not listening on ipv6, only on ipv4.
This is because the configuration in /etc/inetd.conf is incorrect;
if I change 'tcp' to 'tcp6' on this line:
fingerentry="finger stream tcp nowait nobody /usr/sbin/tcpd /usr/sbin/in.fingerd"
fingerentry="finger stream tcp6 nowait nobody /usr/sbin/tcpd /usr/sbin/in.fingerd"
everything works as expected, fingerd is now listening on both ipv4 and
ipv6.
Please see this patch:
diff --git i/debian/fingerd.postinst w/debian/fingerd.postinst
index afe09b7..1b95a58 100644
--- i/debian/fingerd.postinst
+++ w/debian/fingerd.postinst
@@ -16,7 +16,7 @@ configure)
if [ -n "$2" ]; then
enable_if_alone
else
- fingerentry="finger stream tcp nowait nobody /usr/sbin/tcpd /usr/sbin/in.fingerd"
+ fingerentry="finger stream tcp6 nowait nobody /usr/sbin/tcpd /usr/sbin/in.fingerd"
if grep -q ^finger /etc/inetd.conf; then
update-inetd --group INFO --add "#$fingerentry"