summaryrefslogtreecommitdiff
path: root/configs/boot/netperf-server.rcS
diff options
context:
space:
mode:
authorLisa Hsu <hsul@eecs.umich.edu>2004-11-12 15:03:28 -0500
committerLisa Hsu <hsul@eecs.umich.edu>2004-11-12 15:03:28 -0500
commit78118bffbb2dffc1f2722c6c4fc8f9a67c80a94d (patch)
tree0d431eafb058b063fd0eafa0ed2bd8de8fa7a920 /configs/boot/netperf-server.rcS
parent856fdbe5aa66c79198e911083f196894d112b809 (diff)
downloadgem5-78118bffbb2dffc1f2722c6c4fc8f9a67c80a94d.tar.xz
add surge and spec-surge readfiles. also make the naming system uniform, there were 3 different ways!!! i like ali's.
--HG-- rename : configs/boot/client.netperf.maerts => configs/boot/netperf-maerts-client.rcS rename : configs/boot/client.netperf.rr => configs/boot/netperf-rr.rcS rename : configs/boot/server.netperf => configs/boot/netperf-server.rcS rename : configs/boot/client.netperf.stream => configs/boot/netperf-stream-client.rcS extra : convert_revision : 8c841e18dac9634f0680b857f3d0676b100dd448
Diffstat (limited to 'configs/boot/netperf-server.rcS')
-rw-r--r--configs/boot/netperf-server.rcS29
1 files changed, 29 insertions, 0 deletions
diff --git a/configs/boot/netperf-server.rcS b/configs/boot/netperf-server.rcS
new file mode 100644
index 000000000..f77ff0ce8
--- /dev/null
+++ b/configs/boot/netperf-server.rcS
@@ -0,0 +1,29 @@
+#!/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 txqueuelen 1000
+
+echo "0" > /proc/sys/net/ipv4/tcp_timestamps
+echo "0" > /proc/sys/net/ipv4/tcp_sack
+echo "5000000 5000000 5000000" > /proc/sys/net/ipv4/tcp_rmem
+echo "5000000 5000000 5000000" > /proc/sys/net/ipv4/tcp_wmem
+echo "5000000 5000000 5000000" > /proc/sys/net/ipv4/tcp_mem
+echo "262143" > /proc/sys/net/core/rmem_max
+echo "262143" > /proc/sys/net/core/wmem_max
+echo "262143" > /proc/sys/net/core/rmem_default
+echo "262143" > /proc/sys/net/core/wmem_default
+echo "262143" > /proc/sys/net/core/optmem_max
+echo "100000" > /proc/sys/net/core/netdev_max_backlog
+
+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