- 论坛徽章:
- 0
|
发表于: 2007-1-5 17:08 [编辑] [引用] [投诉] [快速回复]
--------------------------------------------------------------------------------
结点N1
cat /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
# Public Network - (eth0)
192.168.0.29 n1
192.168.0.28 n2
# Private Interconnect - (eth1)
172.17.11.29 int-n1
172.17.11.28 int-n2
cat hosts.equiv
+n1 oracle
+n2 oracle
+int-n1 oracle
+int-n2 oracle
结点N2
cat /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
#61.139.8.100 n2
# Public Network - (eth0)
192.168.0.29 n1
192.168.0.28 n2
# Private Interconnect - (eth1)
172.17.11.29 int-n1
172.17.11.28 int-n2
cat /etc/hosts.equiv
+n1 oracle
+n2 oracle
+int-n1 oracle
+int-n2 oracle
但是死活ping不通
su - oracle
[oracle@n1 ~]$ ping int-n2
PING int-n2 (172.17.11.2 56(84) bytes of data.
--- int-n2 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms
[oracle@n1 ~]$ ping 172.17.11.28
PING 172.17.11.28 (172.17.11.2 56(84) bytes of data.
--- 172.17.11.28 ping statistics ---
3 packets transmitted, 0 received, 100% packet loss, time 2004ms |
|