11 lines
412 B
Bash
11 lines
412 B
Bash
|
|
#!/bin/sh
|
||
|
|
echo "Running standard API test"
|
||
|
|
python3 api_test.py -p testpassword
|
||
|
|
echo "Running Netfilter Regex TCP ipv4"
|
||
|
|
python3 nf_test.py -p testpassword -m tcp
|
||
|
|
echo "Running Netfilter Regex TCP ipv6"
|
||
|
|
python3 nf_test.py -p testpassword -m tcp -6
|
||
|
|
echo "Running Netfilter Regex UDP ipv4"
|
||
|
|
python3 nf_test.py -p testpassword -m udp
|
||
|
|
echo "Running Netfilter Regex UDP ipv6"
|
||
|
|
python3 nf_test.py -p testpassword -m udp -6
|