ONTAP Discussions

Intercluster LIF issue

Atish1
725 Views

Hello, 

 

I performed Traceroute run on cluster1. Traceroute from cluster2 to cluster1 is working fine. but not the other way around from cluster1 to cluster2. There is only problem with Intercluster lif other remaining lifs are pingable on cluster2. There is no problem with cluster1. Kindly suggest. 

 

cluster1::>traceroute -node cluster1-01 -destination 192.168.0.83

traceroute to 192.168.0.83 (192.168.0.83), 64 hops max, 40 byte                                                              packets

1  * * *

 

I am getting below mentioned error on the Intercluster IP only.

 

C:\Users\Administrator.DEMO>ping 192.168.0.83

Pinging 192.168.0.83 with 32 bytes of data:

Request timed out.
Request timed out.
Request timed out.
Request timed out.

Ping statistics for 192.168.0.83:
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss)

 

-------------------------------------

cluster1::> net in show
(network interface show)
Logical Status Network Current Current Is
Vserver Interface Admin/Oper Address/Mask Node Port Home
----------- ---------- ---------- ------------------ ------------- ------- ----
Cluster
cluster1-01_clus1 up/up 169.254.72.91/16 cluster1-01 e0a true
cluster1-01_clus2 up/up 169.254.20.16/16 cluster1-01 e0b true
cluster1-02_clus1 up/up 169.254.108.211/16 cluster1-02 e0a true
cluster1-02_clus2 up/up 169.254.18.79/16 cluster1-02 e0b true
c1_svm1
c1_svm1_nas_lif1 up/up 192.168.0.60/24 cluster1-01 e0d true
c1_svm2
c1_svm2_nas_lif1 up/up 192.168.0.61/24 cluster1-01 e0d false
c1_svm3
c1_svm3_nas_lif1 up/up 192.168.0.62/24 cluster1-01 e0f true
cluster1
cluster1-01_mgmt1 up/up 192.168.0.111/24 cluster1-01 e0c true
cluster1-02_mgmt1 up/up 192.168.0.112/24 cluster1-02 e0c true
cluster_mgmt up/up 192.168.0.101/24 cluster1-01 e0d true
10 entries were displayed.

 

cluster1::> net inter show -role Intercluster
(network interface show)
Logical Status Network Current Current Is
Vserver Interface Admin/Oper Address/Mask Node Port Home
----------- ---------- ---------- ------------------ ------------- ------- ----
cluster1
lif_Default_18 up/up 192.168.0.80/24 cluster1-01 e0f true
lif_Default_513 up/up 192.168.0.81/24 cluster1-02 e0f true
2 entries were displayed.

 

cluster2::> ne net inter show -role intercluster
(network interface show)
Logical Status Network Current Current Is
Vserver Interface Admin/Oper Address/Mask Node Port Home
----------- ---------- ---------- ------------------ ------------- ------- ----
cluster2
lif_Default_435 up/up 192.168.0.82/24 cluster2-01 e0g true
lif_Default_562 up/up 192.168.0.83/24 cluster2-02 e0g true
2 entries were displayed.

1 ACCEPTED SOLUTION

Atish1
527 Views

We added route at destination cluster that resolved the problem.

cluster2::> network route create -vserver cluster2 -destination 0.0.0.0/0 -gateway 192.168.0.83

cluster2::> network route show-lifs

View solution in original post

2 REPLIES 2

Sergey_Osipov
638 Views

with such a command you make a traceroute from management lif

cluster1::>traceroute -node cluster1-01 -destination 192.168.0.83

traceroute to 192.168.0.83 (192.168.0.83), 64 hops max, 40 byte     

 

you need to specify the vserver and lif from which you'd like to make a traceroute

like this
net traceroute -vserver "name" - lif "name" -destination etc....

Atish1
528 Views

We added route at destination cluster that resolved the problem.

cluster2::> network route create -vserver cluster2 -destination 0.0.0.0/0 -gateway 192.168.0.83

cluster2::> network route show-lifs

Public