blob: 24a688549bf621ac54d6a3d1cc748de50943829e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
packet-generator new { \
name x \
limit 1 \
node ip4-input \
size 64-64 \
data { \
ICMP: 1.0.0.2 -> 2.0.0.2 \
ICMP echo_request \
incrementing 100 \
} \
}
trace add pg-input 100
loop create
loop create
set int state loop0 up
set int state loop1 up
set int ip address loop0 1.0.0.1/24
set int ip address loop1 2.0.0.1/24
|