1================ 2BPFTOOL 3================ 4------------------------------------------------------------------------------- 5tool for inspection and simple manipulation of eBPF programs and maps 6------------------------------------------------------------------------------- 7 8:Manual section: 8 9 10SYNOPSIS 11======== 12 13 **bpftool** *OBJECT* { *COMMAND* | help } 14 15 **bpftool** batch file *FILE* 16 17 *OBJECT* := { **map** | **program** } 18 19 *MAP-COMMANDS* := 20 { show | dump | update | lookup | getnext | delete | pin | help } 21 22 *PROG-COMMANDS* := { show | dump jited | dump xlated | pin | help } 23 24DESCRIPTION 25=========== 26 *bpftool* allows for inspection and simple modification of BPF objects 27 on the system. 28 29 Note that format of the output of all tools is not guaranteed to be 30 stable and should not be depended upon. 31 32SEE ALSO 33======== 34 **bpftool-map**\ (8), **bpftool-prog**\ (8) 35