Linux 下的hostid

很多授权软件会验证ip地址。但有时很发现有时ip地址对了怎么还是不能通过验证?其实这个软件是验证的hostid.

hostid 是取hostname对应的ip地址。然后把ip地址转换成hex,然后将位置2143位置颠倒后的结果。
   
这个对应记录在/etc/hosts文件里,比如我的hostname:dakam-laptop对应的ip就是127.0.1.1.那我的hostid就是007f0101.

127.0.0.1    localhost
127.0.1.1    dakam-laptop
# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

如果你不确定你的主机名,我告诉你他存在/etc/hostname文件里.可以在终端里用hostname命令看到. 还有 终端命令提示符以前 和@附后以后的那段字符就是你的Hostname..