package pf-qubes
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
QubesOS firewall ruleset handling library
Install
dune-project
Dependency
Authors
Maintainers
Sources
pf-qubes-v0.1.0.tbz
sha256=30064f5dc4bd5f53df0e30085c48ab1ac8a5987c760effd68ef432de1afb0b06
sha512=59c4bd27a54fad2ba45d0aacb2217fd358011e4cec302b951ece1a8f150d57ef4571d6f7c8fbaed4e3ad05a41bd5b17dd2f21dbbf6bb1bdd14ddb4f2c4795e6e
doc/README.html
ocaml-pf
An Angstrom-based parser for the FreeBSD pf firewall configuration format.
implementation status
Ticked below are the lines that are (at least partially) implemented.
macrodefinitions (NB: macro expansion is NOT)optionpf-rulenat-rulebinat-rulerdr-ruleantispoof-rulealtq-rulequeue-ruletrans-anchorsanchor-ruleanchor-closeload-anchortable-ruleinclude
contributing
- I would be very grateful for examples of rules that trip the parser - please file an issue ticket on GitHub.
- Ideas regarding the AST, the API, or other suggestions are also very welcome.
- It is always nice with improvements to the pretty-printers! :-)
- Support for more lines is a goal, you can help by writing PRs or submitting examples of syntax that is not handled by the parser.
- Before taking on larger rewrites, please get in touch so we can avoid merge conflicts.
compiling the example
First, install the dependencies:
opam pin add -n pf .
opam install --deps-only pf
# build test executable, self-test rules from 'man pf.conf':
jbuilder runtestThis will give you the parse_conf.exe utility that you can use to parse firewall configuration files:
./_build/default/test/parse_conf.exe /home/me/my-pf-file.conf
Reading "/home/me/my-pf-file.conf"
Line 0: ext_bridge = "external"
Read 1 lines!
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page