Lines Matching +full:host +full:- +full:port
2 -------------------
3 These tests exercise net/vmw_vsock/ host<->guest sockets for VMware, KVM, and
4 Hyper-V.
8 * vsock_test - core AF_VSOCK socket functionality
9 * vsock_diag_test - vsock_diag.ko module for listing open sockets
15 2. Install the kernel and tests on the host.
21 # host=server, guest=client
22 (host)# $TEST_BINARY --mode=server \
23 --control-port=1234 \
24 --peer-cid=3
25 (guest)# $TEST_BINARY --mode=client \
26 --control-host=$HOST_IP \
27 --control-port=1234 \
28 --peer-cid=2
30 # host=client, guest=server
31 (guest)# $TEST_BINARY --mode=server \
32 --control-port=1234 \
33 --peer-cid=2
34 (host)# $TEST_BINARY --mode=client \
35 --control-port=$GUEST_IP \
36 --control-port=1234 \
37 --peer-cid=3
40 -------------------
42 sender/receiver modes: sender connect to peer at the specified port and
48 # connect to CID 2, port 1234, send 1G of data, tx buf size is 1M
49 ./vsock_perf --sender 2 --port 1234 --bytes 1G --buf-size 1M
58 # listen port 1234, rx buf size is 1M, socket buf size is 1G, SO_RCVLOWAT is 64K
59 ./vsock_perf --port 1234 --buf-size 1M --vsk-size 1G --rcvlowat 64K