Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 1 | ================ |
| 2 | BPFTOOL |
| 3 | ================ |
| 4 | ------------------------------------------------------------------------------- |
| 5 | tool for inspection and simple manipulation of eBPF programs and maps |
| 6 | ------------------------------------------------------------------------------- |
| 7 | |
| 8 | :Manual section: 8 |
| 9 | |
| 10 | SYNOPSIS |
| 11 | ======== |
| 12 | |
| 13 | **bpftool** *OBJECT* { *COMMAND* | help } |
| 14 | |
| 15 | **bpftool** batch file *FILE* |
| 16 | |
Quentin Monnet | 821cfbb | 2017-10-19 15:46:26 -0700 | [diff] [blame] | 17 | **bpftool** version |
| 18 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 19 | *OBJECT* := { **map** | **program** } |
| 20 | |
| 21 | *MAP-COMMANDS* := |
| 22 | { show | dump | update | lookup | getnext | delete | pin | help } |
| 23 | |
| 24 | *PROG-COMMANDS* := { show | dump jited | dump xlated | pin | help } |
| 25 | |
| 26 | DESCRIPTION |
| 27 | =========== |
| 28 | *bpftool* allows for inspection and simple modification of BPF objects |
| 29 | on the system. |
| 30 | |
| 31 | Note that format of the output of all tools is not guaranteed to be |
| 32 | stable and should not be depended upon. |
| 33 | |
Quentin Monnet | a2bc2e5 | 2017-10-23 09:24:06 -0700 | [diff] [blame] | 34 | OPTIONS |
| 35 | ======= |
| 36 | -h, --help |
| 37 | Print short help message (similar to **bpftool help**). |
| 38 | |
| 39 | -v, --version |
| 40 | Print version number (similar to **bpftool version**). |
| 41 | |
Jakub Kicinski | ff69c21 | 2017-10-04 20:10:05 -0700 | [diff] [blame] | 42 | SEE ALSO |
| 43 | ======== |
| 44 | **bpftool-map**\ (8), **bpftool-prog**\ (8) |