Thanks. It's because of the leading zero in
.01
in your IP address. Apparently, it's a side effect of this commit in PuTTY SSH code:
Reorganise sk_namelookup (on both platforms)
I'll look into it. Meanwhile, just remove the zero. It probably should not be there in the first place. Use of leading zeros in IP addresses seem to be debatable and confusing.
Note that the previous version interpreted the leading zero as an octal prefix. So while
01
(octal) is still
1
(decimal) – what is understandable – for an example a
036
(octal) would be
30
(decimal) – what would be confusing.
See also
Is 192.056.2.01 a valid representation of an v4 IP?