diff --git a/Performance.md b/Performance.md index d3d0764..84f8174 100644 --- a/Performance.md +++ b/Performance.md @@ -72,3 +72,15 @@ More info: https://en.wikipedia.org/wiki/Scalable_TCP (thanks @xrobau) +## Direct TCP network transfer + +If ssh-encryption performance is too slow for your use-case, you can do a direct unencrypted transfer via tcp ip: + +Use something like this: +```console +zfs-autobackup ... --send-pipe "nc server_name 8023" --recv-pipe "nc -l -p 8023" +``` + +This will pipe the data through netcat on the specified port. + +Also see: https://github.com/psy0rz/zfs_autobackup/issues/15#issuecomment-1043753454