7739f32758
--HG-- extra : convert_revision : 506ff845efc8d786639c29931eb4abd3a5860fcf
17 lines
319 B
Bash
17 lines
319 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..."
|
|
/benchmarks/netperf/netserver
|
|
|
|
echo -n "signal client to begin..."
|
|
echo "server ready" | /usr/bin/netcat -c $CLIENT 8000
|
|
echo "done."
|
|
|
|
echo "starting bash..."
|
|
exec /bin/bash
|