9 lines
246 B
Bash
Executable File
9 lines
246 B
Bash
Executable File
#!/bin/sh -Cefux
|
|
# Check if netfilter kicks kernel upon loading rules
|
|
# Georg Pfuetzenreuter <mail+opensuse@georg-pfuetzenreuter.net>
|
|
[ "$(id -u)" = 0 ] || exit 1
|
|
/root/bin/mkdummies.sh
|
|
nft -f /etc/nftables.conf
|
|
dmesg -T|tail
|
|
dmesg -T|grep trace
|