In preparation to implement cluster peering I'm testing that I can ping each intercluster lif.
The network guy says that all network configuration is done/ready.
He can see mac adresses and and ping from within the network (cross sites) to all intercluster lif's and gateways in the "backup net".
In Ontap intercluster lif´s uses static route for the "Backup net".
I can't ping cross site if I dont use the net ping with -record-route true.
siteb::> net ping -vserver siteb -lif siteb-03_intcl-amar -destination 192.168.197.21 -record-route -show-detail -verbose
(network ping)
PING 192.168.197.21 (192.168.197.21) from 192.168.97.3: 56 data bytes
to 192.168.97.3 64 bytes from 192.168.197.21: icmp_seq=0 ttl=62 time=2.369 ms
RR: 192.168.251.1
192.168.197.254
192.168.197.21
192.168.251.2
192.168.97.254
192.168.97.3
to 192.168.97.3 64 bytes from 192.168.197.21: icmp_seq=1 ttl=62 time=2.152 ms (same route)
to 192.168.97.3 64 bytes from 192.168.197.21: icmp_seq=2 ttl=62 time=2.216 ms (same route)
sitec::> net ping -vserver sitec -lif sitec-01_intcl -destination 192.168.97.3 -record-route true -show-detail true -verbose
(network ping)
PING 192.168.97.3 (192.168.97.3) from 192.168.197.21: 56 data bytes
to 192.168.197.21 64 bytes from 192.168.97.3: icmp_seq=0 ttl=62 time=42.701 ms
RR: 192.168.251.2
192.168.97.254
192.168.97.3
192.168.251.1
192.168.197.254
192.168.197.21
to 192.168.197.21 64 bytes from 192.168.97.3: icmp_seq=1 ttl=62 time=72.188 ms (same route)
to 192.168.197.21 64 bytes from 192.168.97.3: icmp_seq=2 ttl=62 time=128.353 ms (same route)
to 192.168.197.21 64 bytes from
sitec::> net ping -vserver sitec -lif sitec-01_intcl -destination 192.168.97.3
(network ping)
no answer from 192.168.97.3
So what does this -record-route true do?
And what can be wrong in either network or Ontap configuration?
Thanks