Backgound info: Server A needs to send data to Server B but I am not permitted to open any additional ports in the firewall between them. There is an ssh port open, so I chose to send data through an ssh tunnel. However, I now need to copy files from A to B as well.
Question: If I scp files from A to B over my existing ssh tunnel do the files get encrypted twice? Or is scp "smart enough" to utilize the existing tunnel?
I want to avoid the additional overhead of encrypting twice if possible.
Are there other ways to send files over an ssh tunnel?