I'd try FileZilla; you can do FTP and SSH transfersI had been using the built in ftp to sync my phone photo and vid to zfs on my fbsd desktop
I am using ssh now and it seems slow.
Is the ftp still faster?
I can see it is available...
I had been using the built in ftp to sync my phone photo and vid to zfs on my fbsd desktop
I am using ssh now and it seems slow.
Is the ftp still faster?
I can see it is available...
ssh is more than remote login. It is is a generic encrypted TCP pipe. look up "scp" command. It can also be used to tunnel other protocols thru the encrypted channel as a client/server proxy. ftp has fallen out of favor in recent years since it is not encrypted. ftp sites have traditionally been parking spots for "dark webbers" to hide files they want to share with other miscreants. I still use ftp (tftp) frequently for serving boot images in an R&D environment, but using it in the wild is not recommended.Not sure what you are trying to compare? ftp is for transferring files, etc.... and ssh is for logging into remote systems.
Not everybody uses ZFS compression but it is something to consider.Note on compression: ZFS datasets are typically already compressed. SSH compression adds CPU overhead with minimal benefit for ZFS replication. We recommend leaving it disabled
ssh -vv has increased verbosity. ssh -C enables compression on a connection despite /etc/ssh/ssh_config setting of none.right , compression is not encryption . OP original question was if SSH was faster than FTP . Due to the computation need for SSH encryption it should be rather slower. useing the AES-NI for crypto should alleviate the lag due to crypto.I don't know how to tell if SSH is using AES-NI. Compression has nothing to do with cyphers and what the cyphers are running on. Accelerated or not.
It looks like it was working in 2015:
Try turning AES-NI off in BIOS and compare benchmarks.
Alsossh -vvhas increased verbosity.
ssh -Cenables compression on a connection despite /etc/ssh/ssh_config setting of none.
Defaults are probably safestWhich is just months old. What would be right to do here ???
Yea We/I wandered back into the similar question:It's still not clear to me what exactly happens over ssh in the OP's scenario.