11 result
=`cat $PGDEV | fgrep "Result: OK:"`
12 if [ "$result" = "" ]; then
13 cat $PGDEV | fgrep Result
:
17 # Config Start Here -----------------------------------------------------------
21 # Each CPU has its own thread. Two CPU example. We add eth1 to the first
22 # and leave the second idle.
24 PGDEV
=/proc
/net
/pktgen
/kpktgend_0
25 echo "Removing all devices"
26 pgset
"rem_device_all"
28 pgset
"add_device eth1"
30 # We need to remove old config since we dont use this thread. We can only
31 # one NIC on one CPU due to affinity reasons.
33 PGDEV
=/proc
/net
/pktgen
/kpktgend_1
34 echo "Removing all devices"
35 pgset
"rem_device_all"
38 # delay 0 means maximum speed.
40 CLONE_SKB
="clone_skb 1000000"
41 # NIC adds 4 bytes CRC
42 PKT_SIZE
="pkt_size 60"
44 # COUNT 0 means forever
46 COUNT
="count 10000000"
49 PGDEV
=/proc
/net
/pktgen
/eth1
50 echo "Configuring $PGDEV"
55 pgset
"dst 10.10.11.2"
56 pgset
"dst_mac 00:04:23:08:91:dc"
60 PGDEV
=/proc
/net
/pktgen
/pgctrl
62 echo "Running... ctrl^C to stop"
66 cat /proc
/net
/pktgen
/eth1