summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2022-11-27 00:37:07 +0900
committerRyo Nakamura <upa@haeena.net>2022-11-27 00:37:07 +0900
commite3ed4f89d2d49b4ac38e6f59b434300fab0f28bd (patch)
tree3c39edf69a01416aecc777f4d05ae6a0e416f062
parentdb1431ed6a7a302d0f136ee86bfcdfd186c49917 (diff)
update REAMDE
-rw-r--r--README.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/README.md b/README.md
index 3c5f00f..3390994 100644
--- a/README.md
+++ b/README.md
@@ -87,13 +87,17 @@ Usage: mscp [vqDCHdh] [-n nr_conns] [-m coremask]
[-c cipher_spec] source ... target
```
-- Example: copy an 8GB file on tmpfs over a 100Gbps link
+- Example: copy a 15GB file on memory over a 100Gbps link
- Two Intel Xeon Gold 6130 machines directly connected with Intel E810 100Gbps NICs.
- Default `openssh-server` runs on the remote host.
```console
-$ mscp /tmp/test.img 10.0.0.1:/tmp/
-[=====================================================] 100% 8GB/8GB 3.02GB/s
+$ mscp /var/ram/test.img 10.0.0.1:/var/ram/
+[=====================================================] 100% 15GB/15GB 1.9GB/s
+
+# with some optimizations. top speed reaches 2.9GB/s.
+$ mscp -n 8 -m 0xff -a 32 -c aes128-gcm@openssh.com /var/ram/test.img 10.0.0.1:/var/ram/
+[=====================================================] 100% 15GB/15GB 2.2GB/s
```
- `-v` option increments verbose output level.