2020-04-20 20:15:43 +03:00
|
|
|
## Syntax highlighting for the packet-filtering rules of Netfilter.
|
2015-12-02 12:14:45 +03:00
|
|
|
|
2020-09-14 12:03:25 +03:00
|
|
|
## Original author: Arturo Borrero González <arturo@debian.org>
|
|
|
|
## License: GPL version 3 or newer
|
|
|
|
|
2018-02-07 13:25:46 +03:00
|
|
|
syntax nftables "\.(nft|nftables)$"
|
2015-12-02 12:14:45 +03:00
|
|
|
header "^#!.*(nft|nftables)"
|
2016-05-25 23:13:50 +03:00
|
|
|
comment "#"
|
2015-12-02 12:14:45 +03:00
|
|
|
|
|
|
|
# Objects and operations
|
|
|
|
color green "\<(chain|hook|policy|priority|ruleset|set|table|type|v?map)\>"
|
|
|
|
color green "\<(define|include)\>"
|
|
|
|
color red "\<(add|delete|flush|insert|remove|replace)\>"
|
|
|
|
|
|
|
|
# Families
|
2016-12-21 15:40:58 +03:00
|
|
|
color yellow "\<(arp|bridge|inet|ingress|ip6?|netdev)\>"
|
2015-12-02 12:14:45 +03:00
|
|
|
|
|
|
|
# Terminal statements
|
|
|
|
color red "\<(drop|reject)\>"
|
|
|
|
color brightblue "\<(accept|continue|(d|s)nat|goto|jump|masquerade|return)\>"
|
|
|
|
|
|
|
|
# Comments
|
2021-04-27 12:18:41 +03:00
|
|
|
color cyan "(^|[[:blank:]])#.*"
|
2015-12-02 12:14:45 +03:00
|
|
|
|
|
|
|
# Trailing whitespace
|
|
|
|
color ,green "[[:space:]]+$"
|
|
|
|
|
|
|
|
# Strings and others
|
|
|
|
color yellow ""(\\.|[^"])*"" "'(\\.|[^'])*'"
|
|
|
|
color green "[{}():;|`$<>!=&\\]" "(\]|\[)"
|
|
|
|
|
|
|
|
# Basic variable names
|
2016-12-21 15:40:58 +03:00
|
|
|
color brightred "(\$|@)[[:alpha:]_-][[:alnum:]_.-]*"
|