I am trying to design a feature which verifies consistency of data across various networking switches. Number of the data is in millions and this data is replicated in different networking switches. I am considering Merkle tree to implement this feature because that way I do not have send data across network for verification. However I have a doubt regarding the Merkle tree. Let's say I have two Merkle trees. If the root-hash of each tree matches each other then can I conclude that both trees are mirror image of each other? And if yes the does this property hold true for other inter-mediate nodes?
Thank you