blob: 933201320fd642a9c5dbe3506e5f374af767fda5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#! /bin/bash
if [ -e /proc/modules ] ; then
modprobe pg3 >& /dev/null
modprobe pktgen >& /dev/null
fi
for PGDEV in /proc/net/pg /proc/net/pktgen/pg0 / ; do
[ -e ${PGDEV} ] && break
done
if [ "${PGDEV}" = "/" ] ; then
echo "Could not locate pg in /proc/net" 1>&2
exit 1
fi
function pgset() {
local result
echo $1 > ${PGDEV}
result=`cat ${PGDEV} | fgrep "Result: OK:"`
if [ "$result" = "" ]; then
cat ${PGDEV} | fgrep Result:
fi
}
function pg() {
echo inject > ${PGDEV}
cat ${PGDEV}
}
pgset "odev eth0"
pgset "dst 0.0.0.0"
|