Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(repeater): add
cap_net_raw+ep
capabilities for node in Docker i…
…mage (#560) Running traceroute requires root access as it creates raw sockets. Since we use non-root user in Docker image, we need to allow the node to create raw sockets and listen of ICMP error packets. For that use the setcap command which comes in libcap package: ```sh $ setcap 'cap_net_raw+ep' $(which node) ``` Co-authored-by: Artem Derevnjuk <artem.derevnjuk@brightsec.com>
- Loading branch information