.. | .. |
---|
10 | 10 | NAMES = { |
---|
11 | 11 | # Substitute your own tc path here |
---|
12 | 12 | 'TC': '/sbin/tc', |
---|
| 13 | + # Substitute your own ip path here |
---|
| 14 | + 'IP': '/sbin/ip', |
---|
13 | 15 | # Name of veth devices to be created for the namespace |
---|
14 | 16 | 'DEV0': 'v0p0', |
---|
15 | 17 | 'DEV1': 'v0p1', |
---|
16 | 18 | 'DEV2': '', |
---|
| 19 | + 'DUMMY': 'dummy1', |
---|
17 | 20 | 'BATCH_FILE': './batch.txt', |
---|
| 21 | + 'BATCH_DIR': 'tmp', |
---|
| 22 | + # Length of time in seconds to wait before terminating a command |
---|
| 23 | + 'TIMEOUT': 12, |
---|
18 | 24 | # Name of the namespace to use |
---|
19 | 25 | 'NS': 'tcut', |
---|
20 | 26 | # Directory containing eBPF test programs |
---|
21 | | - 'EBPFDIR': './bpf' |
---|
| 27 | + 'EBPFDIR': './' |
---|
22 | 28 | } |
---|
23 | 29 | |
---|
24 | 30 | |
---|