<edit>
Sorry, topic might not be verry well chosen, cannot find better one tho.
Also, i find it horribly messy, and am commonly updating it to make it better.
</edit>
I'm trying to copy a file from Netapp Alpha to a other Netapp somewhere else. Lets say Netapp Beta. Both Netapps have a network called vlan 1602. This should be used as the "backup" and "snapmirror" vlan. The machine seems to copy files propertly using snapmirror. I am not 100% sure it uses the vlan 1602 for this, but i think it might just do that.
Currently i am trying to use this vlan to copy back a file using ndmpcopy. The full command would be:
system node run -node Delft-netapp2554-a -command ndmpcopy -sa admin:pass -da admin:pass 10.0.3.9:/vol/delft_backup_03/.snapshot/weekly.2016-11-13_0015/585.vlan97-102 10.0.3.5:/vol/BN_datastore_03/teruggezet
This command does not work i think due to network connectivity. The problem seems to be i cannot ping any adress in the 10.0.3.x range from any Netapp. Not the local one let alone the remote one.
I am pinging in this example from the head that owns ip
delft-BN-cluster-1::network> system node run -node Delft-netapp2554-a -command ifconfig -a
*cut*
inet 10.0.3.7 netmask 0xffffff00 broadcast 10.0.3.255 noddns DATA
inet 10.0.3.9 netmask 0xffffff00 broadcast 10.0.3.255 noddns INTERCLUSTER
*cut
towards the other netapp (and other head) wich owns
sk-BN-cluster-1::> system node run -node sk-netapp2552-a -command ifconfig -a
inet 10.0.3.5 netmask 0xffffff00 broadcast 10.0.3.255 noddns INTERCLUSTER
So i can do:
delft-BN-cluster-1::network> ping -node Delft-netapp2554-a -destination 10.0.3.5
no answer from 10.0.3.5
And as this is not working, let's try local:
delft-BN-cluster-1::network> ping -node Delft-netapp2554-a -destination 10.0.3.9
no answer from 10.0.3.9
I have found that perhaps i need to use -lif as a option, so that i ping using the right interface. Vlan 1602 lives on:
delft-BN-cluster-1::network> network interface show
Logical Status Network Current Current Is
Vserver Interface Admin/Oper Address/Mask Node Port Home
----------- ---------- ---------- ------------------ ------------- ------- ----
BNAlgemeen
sk-delft-backupA
up/up 10.0.3.9/24 Delft-netapp2554-a
e0a true
sk-delft-backupB
up/up 10.0.3.10/24 Delft-netapp2554-b
e0a true
Here i have a bit of confusion, as .10 did not show up previously. Also not pingable tho.
So next i think i am going to try and ping the other Netapp using the lif sk-delft-backupA so that would come up with:
delft-BN-cluster-1::network> ping -lif sk-delft-backupA -vserver delft-BNAlgemeen -destination 10.0.3.5
Error: command failed: entry doesn't exist
So to me it seems i have connectivity isues. But i cannot imagine, as i think the snapmirror goes through this connection:
delft-BN-cluster-1::network> snapmirror show
Progress
Source Destination Mirror Relationship Total Last
Path Type Path State Status Progress Healthy Updated
----------- ---- ------------ ------- -------------- --------- ------- --------
sk-BNAlgemeen:BN_datastore_03
XDP delft-BNAlgemeen:delft_backup_03
Snapmirrored
Transferring 15.89GB true 12/14 09:10:55
I asume this one is using the vlan 1602, but not sure.
Perhaps it is in the routes:
delft-BN-cluster-1::network> network route show
Vserver Destination Gateway Metric
------------------- --------------- --------------- ------
delft-BNAlgemeen
0.0.0.0/0 10.0.68.1 20
delft-BN-cluster-1
0.0.0.0/0 10.0.10.1 20
0.0.0.0/0 192.168.1.1 20
So my questions summed up:
why can i not copy? It it due to network connectivity? And if so, does anyone see where it might go wrong?