Updated Performance (markdown)

DatuX
2023-02-26 12:23:55 +01:00
parent d6494b6ec6
commit 8bcd6e7a92

@ -72,3 +72,15 @@ More info: https://en.wikipedia.org/wiki/Scalable_TCP
(thanks @xrobau) (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