989eb88576
to run the netperf benchmark --HG-- extra : convert_revision : a2ce490e0c44996d0876a6839ad333643ec252c8
17 lines
308 B
Bash
17 lines
308 B
Bash
#!/bin/sh
|
|
SERVER=10.0.0.1
|
|
CLIENT=10.0.0.2
|
|
|
|
echo "setting up network..."
|
|
ifconfig lo 127.0.0.1
|
|
ifconfig eth0 $SERVER
|
|
|
|
echo "running netserver..."
|
|
/usr/bin/netserver
|
|
|
|
echo -n "signal client to begin..."
|
|
echo "server ready" | /usr/bin/netcat -c $CLIENT 8000
|
|
echo "done."
|
|
|
|
echo "starting bash..."
|
|
exec /bin/bash
|