From ef1bb56c8918799c3883a351bf7cf5ba17acad0f Mon Sep 17 00:00:00 2001 From: Christian Deacon Date: Tue, 5 May 2020 16:33:56 +0000 Subject: [PATCH] Populated config file. --- xdpfw.conf.example | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/xdpfw.conf.example b/xdpfw.conf.example index e69de29..5f21d43 100644 --- a/xdpfw.conf.example +++ b/xdpfw.conf.example @@ -0,0 +1,41 @@ +interface = "ens18"; +updatetime = 15; + +filters = ( + { + enabled = true, + action = 0, + udpopts = ( + { + enabled = true, + dport = 27015 + } + ) + }, + { + enabled = true, + action = 1, + tcpopts = ( + { + enabled = true, + syn = true, + dport = 27015 + } + ) + }, + { + enabled = true, + action = 0, + icmpopts = ( + { + enabled = true, + code = 0 + } + ) + }, + { + enabled = true, + action = 0, + srcip = "10.50.0.4" + } +); \ No newline at end of file