4 # * pktgen sending with single thread and single interface
5 # * flow variation via random UDP source port
8 source ${basedir}/functions.sh
9 root_check_run_with_sudo
"$@"
11 # Parameter parsing via include
12 # - go look in parameters.sh to see which setting are avail
13 # - required param is the interface "-i" stored in $DEV
14 source ${basedir}/parameters.sh
16 # Set some default params, if they didn't get set
17 if [ -z "$DEST_IP" ]; then
18 [ -z "$IP6" ] && DEST_IP
="198.18.0.42" || DEST_IP
="FD00::1"
20 [ -z "$CLONE_SKB" ] && CLONE_SKB
="0"
21 # Example enforce param "-m" for dst_mac
22 [ -z "$DST_MAC" ] && usage
&& err
2 "Must specify -m dst_mac"
25 DELAY
="0" # Zero means max speed
26 COUNT
="100000" # Zero means indefinitely
28 # Flow variation random source port between min and max
32 # General cleanup everything since last run
33 # (especially important if other threads were configured by other scripts)
36 # Add remove all other devices and add_device $DEV to thread 0
38 pg_thread
$thread "rem_device_all"
39 pg_thread
$thread "add_device" $DEV
41 # How many packets to send (zero means indefinitely)
42 pg_set
$DEV "count $COUNT"
44 # Reduce alloc cost by sending same SKB many times
45 # - this obviously affects the randomness within the packet
46 pg_set
$DEV "clone_skb $CLONE_SKB"
49 pg_set
$DEV "pkt_size $PKT_SIZE"
51 # Delay between packets (zero means max speed)
52 pg_set
$DEV "delay $DELAY"
54 # Flag example disabling timestamping
55 pg_set
$DEV "flag NO_TIMESTAMP"
58 pg_set
$DEV "dst_mac $DST_MAC"
59 pg_set
$DEV "dst$IP6 $DEST_IP"
61 # Setup random UDP port src range
62 pg_set
$DEV "flag UDPSRC_RND"
63 pg_set
$DEV "udp_src_min $UDP_MIN"
64 pg_set
$DEV "udp_src_max $UDP_MAX"
67 echo "Running... ctrl^C to stop" >&2
72 echo "Result device: $DEV"
73 cat /proc
/net
/pktgen
/$DEV