Then your DNS and/orHowever my main node has IP of 0.0.98.165 which is wrong
/etc/hosts
(takes priority) is quite probably resolving that nodename to that incorrect IP and should be fixed there.ping 25253
PING 25253 (0.0.98.165) 56(84) bytes of data.
echo $[25253 & 0xFF] $[25253>>8 & 0xFF]
165 98
You are right it produce this results, what's the solution?The issue here is with the digit-only hostname (25253) - if at all possible I would really really suggest to change that to something with a digit inside.
I think this is best seen when you try to `ping 25253` on a shell:
Code:ping 25253 PING 25253 (0.0.98.165) 56(84) bytes of data.
Rename the hostname so that it won't get picket up as IP, iow. add some letter in front.You are right it produce this results, what's the solution?