Warning
Ignore this README. It may change as I develop and adjust configurations. The entire tool is under development, while I am learning Rust and eBPF.
Network monitoring and firewall using EBPF, XDP and TC. Powered by Aya-rs
Built with ❤ in Rust
Table of Contents generated with mtoc
- Intro
- Features
- Requirements
- Installation
- Configuration file
- Logging
- Testing firewall
- Debugging
- Contribution
- License
Look at what level it works XDP:
Powerful, right? Same for traffic control (TC).
Basic XDP firewall:
- Block TCP SYN incoming packets
- Allow incoming SYN-ACK incoming packets (for example, you are using your browser)
- Block ICMP incoming packets
- User can allow traffic for specific incoming ports
- User can allow traffic for specific IP addresses
nflux
is not available in any package manager yet. You need to build it from source.
- Install rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- Install nightly toolchain:
rustup install stable && rustup toolchain install nightly --component rust-src
- Optional, if using mac or other linux:
LLVM_SYS_180_PREFIX=$(brew --prefix llvm) cargo install --no-default-features bpf-linker
- MANDATORY:
cargo install bpf-linker
Caution
nflux uses XDP for packet processing. Only works with physical interfaces. If you want to use it with a virtual interface, you need to use the tc
mode which is not implemented yet.
For example, you want to monitor incoming traffic using a virtual interface like tun0
(VPN), you need to use the tc
mode.
By the moment, I only have the setup for dpkg
(Debian/Ubuntu).
git clone https://github.com/containerscrew/nflux.git
make install-dpkg
Edit the main configuration nflux.toml
file if needed:
sudo nvim /etc/nflux/nflux.toml
sudo systemctl restart nflux.service
make journal-logs
Now you can try to map some services using docker. For example, let's expose an nginx server (tcp) and bind9 (udp):
make compose-up
Test the exposed services works. (Recommended) test the services from other device in the same network:
- Nginx server:
curl http://ip:8081 # Welcome to nginx!
- Bind9 server:
dig @ip -p 5053 mycompany.org A
Change
ip
to the ip of the machine where you are running the docker-compose and where you will run the firewall.
Now, since the exposed port of nginx
for example is 8081
, let's run the firewall without any allowed port:
For example, in nflux.toml
:
[log]
log_level = "info" # trace, debug, info, warn or error. Defaults to info if not set
log_type = "text" # text or json. Defaults to text if not set
[nflux]
interface_name = "wlp2s0"
[firewall]
# All incoming connections will be blocked by default
# You can specify allowed IP addresses and ports
# This will allow both, udp and tcp connections
# Specify IP addresses you want to allow. Will be able to access full ports tcp/udp
allowed_ipv4 = ["192.168.0.30"]
# Specify ports you want to allow. Everyone will be able to access these ports. No ip filtering
allowed_ports = ["8080"]
# Allow ICMP packets (ping)
allow_icmp = false
Try again curl http://ip:8081
and you will see that the connection is blocked.
Change the interface_name
to your physical interface name, also you can play changing the allowed_ipv4
and allowed_ports
to allow some traffic.
sudo bpftool prog list # show ebpf running programs
ip link show dev wlo1 # xdp attached to your interface
Any improvement is welcome! If you want to help me improve in Rust and eBPF, I'd be delighted!
nflux
is distributed under the terms of the AGPL3 license.