in reply to daniel:// stenberg://

many DNS server implementations have taken the IETF "be liberal in what you accept" to dizzying heights. what is "conservately sent" can be quite a puzzle to work out.

some DNS flag days and serious efforts by the big FOSS implementations has reined in a lot of that chaos but it can still be fun.

sadly, various system/OS stub resolvers deciding they are more clever than you have taken up much of the chaos slack and introduced new, very inexplicable behaviors.

suspect you have similar war stories about http/https/tls...

in reply to Christian Huitema

@huitema
"I felt a great disturbance in the internet, as if millions of badly written, loadbearing scripts suddenly cried out in terror and were suddenly broken."

sadly, the above is why we wind up with so many horrible hacks in code and protocols.

when working in support for a FOSS project, i regularly got complaints about improvements and bug fixes breaking some script that depended on the broken/buggy behavior.

in reply to daniel:// stenberg://

I'm not sure it's DNS, it could be earlier in the local functions to handle IP addresses in different notations (I am not going to embarrass myself by naming these functions to you).

That will make things like

$ ping 0x7f000001
PING 0x7f000001 (127.0.0.1) 56(84) bytes of data.

$ ping 0177.0.0.1
PING 0177.0.0.1 (127.0.0.1) 56(84) bytes of data.

work without ever hitting the resolver.

in reply to daniel:// stenberg://

All of those except 018.1.1.1 get resolved directly by the OS for me.

root@592cda340524:/# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux trixie/sid"
NAME="Debian GNU/Linux"
VERSION_CODENAME=trixie
ID=debian
HOME_URL="debian.org/"
SUPPORT_URL="debian.org/support"
BUG_REPORT_URL="bugs.debian.org/"
root@592cda340524:/# grep hosts: /etc/nsswitch.conf
hosts: files
root@592cda340524:/# getent ahosts 010
0.0.0.8 STREAM 010
0.0.0.8 DGRAM
0.0.0.8 RAW
root@592cda340524:/# getent ahosts 010.1.1.1
8.1.1.1 STREAM 010.1.1.1
8.1.1.1 DGRAM
8.1.1.1 RAW
root@592cda340524:/# getent ahosts 018
root@592cda340524:/# echo $?
2
root@592cda340524:/# getent ahosts 18
0.0.0.18 STREAM 18
0.0.0.18 DGRAM
0.0.0.18 RAW
root@592cda340524:/# getent ahosts 018.1.1.1
root@592cda340524:/# echo $?
2
root@592cda340524:/# getent ahosts 18.1.1.1
18.1.1.1 STREAM 18.1.1.1
18.1.1.1 DGRAM
18.1.1.1 RAW
root@592cda340524:/#

in reply to Cassandrich

@astraleureka Guess of mechanism: after resolving as a numeric address (rightly) fails with the standard processing, it gets passed on to next NSS backend in the order. Systemd (or something) has provided one which also resolves aaa.bbb.ccc.ddd (but not just aaaaaaaaaaaa form) to numeric IPv4, but forcibly treats all fields as decimal contrary to the RFC and POSIX. Hilarity ensues.