smc_run - Run a TCP socket program with the SMC protocol using a preloaded library
Use the smc_run command to
start a TCP socket program that uses SMC as the networking protocol.
Where:
- smc_run <program> <program_parameters>
- Starts the specified TCP socket program with the specified parameters, using the SMC protocol.
- -d
- Optional: Display diagnostic messages while the program is running.
Examples
- To start a program called iperf3 with parameters "-s -p
12345":
# smc_run iperf3 -s -p 12345 ----------------------------------------------------------- Server listening on 12345 ----------------------------------------------------------- ...
- To start a program called iperf3 with parameters "-s -p 12345" and diagnostic
messages:
# smc_run -d iperf3 -s -p 12345