summaryrefslogtreecommitdiffstats
path: root/src/scripts/vnet/ip6-hbh
blob: 87be118eaddf600f752f491ecad48f89dc1fa4ad (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
tap connect tap0
set int state tap-0 up
set int ip address tap-0 1::1/64
packet-generator new {
  name hbh1
  limit 1
  node ip6-input
  size 48-48
  data {
    IP6_HOP_BY_HOP_OPTIONS: 1::2 -> 1::2
    hex 0x3B00010403040506
    incrementing 100
  }
}
packet-generator new {
  name hbh2
  limit 1
  node ip6-input
  size 48-48
  data {
    IP6_HOP_BY_HOP_OPTIONS: 1::2 -> 1::2
    hex 0x3B00C10403040506
    incrementing 100
  }
}

packet-generator new {
  name hbh3
  limit 1
  node ip6-input
  size 48-48
  data {
    IP6_HOP_BY_HOP_OPTIONS: 1::2 -> 1::2
    hex 0x3BffC10403040506
    incrementing 100
  }
}

packet-generator new {
  name hbh4
  limit 1
  node ip6-input
  size 64-64
  data {
    IP6_HOP_BY_HOP_OPTIONS: 1::2 -> 1::2
    hex 0x3BffC10403040506
    incrementing 100
  }
}

packet-generator new {
  name hbh5
  limit 1
  node ip6-input
  size 56-56
  data {
    IP6_HOP_BY_HOP_OPTIONS: 1::2 -> 1::2
    length 16
    hex 0x3B010104030405060106030405060708
    incrementing 100
  }
}

packet-generator new {
  name hbh6
  limit 1
  node ip6-input
  size 56-56
  data {
    IP6_HOP_BY_HOP_OPTIONS: 1::2 -> 1::2
    length 16
    hex 0x3a00050200000100
    ICMP echo_request
    incrementing 100
  }
}

tr add pg-input 100
> 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452