Skip to content

Instantly share code, notes, and snippets.

@marcodebe
Last active October 12, 2017 08:32
Show Gist options
  • Save marcodebe/eb3b5bf816619967228f66510fef7b0b to your computer and use it in GitHub Desktop.
Save marcodebe/eb3b5bf816619967228f66510fef7b0b to your computer and use it in GitHub Desktop.

Install nftables from git on Debian stretch

git clone git://git.netfilter.org/libnftnl
git clone git://git.netfilter.org/nftables
apt install autoconf libtool pkg-config libmnl-dev libjansson-dev \
bison flex libgmp-dev libreadline-dev
cd libnftnl
sh autogen.sh 
./configure --with-json-parsing
make -j
make install
cd ../nftables
sh autogen.sh
./configure
make -j
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment