Solaris下,IP地址配置在/etc/hostname.<NETWORK_NAME>
如
[root:solaris:/etc]>cat hostname.e1000g0
83.16.16.199
但是,配置中的IP地址,可以直接写入一个别名,如主机名。这时IP地址会通过/etc/inet/ipnodes去找这个别名对应的IP地址
[root:solaris:/]>cat /etc/inet/ipnodes
#
# Internet host table
#
::1 localhost
127.0.0.1 localhost
83.16.16.199 solaris
一般情况下,这个文件时指向hosts的一个LINK,ipnodes和hosts的实际文件都是/etc/inet/hosts
[root:solaris:/]>ls -l /etc/inet/ipnodes
lrwxrwxrwx 1 root root 7 Feb 20 11:39 /etc/inet/ipnodes -> ./hosts
[root:solaris:/]>
[root:solaris:/]>ls -l /etc/hosts
lrwxrwxrwx 1 root root 12 Feb 20 11:39 /etc/hosts -> ./inet/hosts
现在将网卡配置文件中IP修改为hostname
[root:solaris:/]>cat /etc/hostname.e1000g0
solaris
重启主机后还是可以正常连接
在这种情况下,如果hosts文件丢失,主机重启后将无法获取到配置的IP,将无法提供对外访问
特别是装了HA的机器,如果不知道配置了那些IP和别名,恢复正常还是个麻烦事情。
--转自