USB: sisusb.c: move assignment out of if () block
[linux-2.6/btrfs-unstable.git] / samples / pktgen / pktgen.conf-1-1-rdos
blobc7553be49b80f449159f9538894518109cc12b88
1 #!/bin/bash
3 #modprobe pktgen
6 function pgset() {
7 local result
9 echo $1 > $PGDEV
11 result=`cat $PGDEV | fgrep "Result: OK:"`
12 if [ "$result" = "" ]; then
13 cat $PGDEV | fgrep Result:
17 # Config Start Here -----------------------------------------------------------
20 # thread config
21 # Each CPU has its own thread. One CPU example. We add eth1.
23 PGDEV=/proc/net/pktgen/kpktgend_0
24 echo "Removing all devices"
25 pgset "rem_device_all"
26 echo "Adding eth1"
27 pgset "add_device eth1"
30 # device config
31 # delay 0
33 # We need to do alloc for every skb since we cannot clone here.
35 CLONE_SKB="clone_skb 0"
36 # NIC adds 4 bytes CRC
37 PKT_SIZE="pkt_size 60"
39 # COUNT 0 means forever
40 #COUNT="count 0"
41 COUNT="count 10000000"
42 DELAY="delay 0"
44 PGDEV=/proc/net/pktgen/eth1
45 echo "Configuring $PGDEV"
46 pgset "$COUNT"
47 pgset "$CLONE_SKB"
48 pgset "$PKT_SIZE"
49 pgset "$DELAY"
50 # Random address with in the min-max range
51 pgset "flag IPDST_RND"
52 pgset "dst_min 10.0.0.0"
53 pgset "dst_max 10.255.255.255"
55 pgset "dst_mac 00:04:23:08:91:dc"
57 # Time to run
58 PGDEV=/proc/net/pktgen/pgctrl
60 echo "Running... ctrl^C to stop"
61 trap true INT
62 pgset "start"
63 echo "Done"
64 cat /proc/net/pktgen/eth1