saved a few lines in named set definitons

This commit is contained in:
celso 2024-12-13 04:32:30 -03:00
parent 359a43654a
commit 7398a5046b
1 changed files with 4 additions and 8 deletions

View File

@ -6,8 +6,7 @@ include "/var/geoipsets/dbip/nftset/ipv4/*.ipv4"
table ip filter {
set allowed_tcp_ports {
type inet_service;
flags constant;
type inet_service; flags constant;
elements = {
$SSH_PORT1, $SSH_PORT2, $DNS_PORT, $HTTP_PORT, $HTTPS_PORT, $SYNCPLAY_PORT,
$TERRARIA_PORT, $OPENTTD_PORT, $MAINPAGE_PORT, $NEXTCLOUD_PORT, $GITEA_PORT,
@ -16,20 +15,17 @@ table ip filter {
}
set allowed_udp_ports_in {
type inet_service;
flags constant;
type inet_service; flags constant;
elements = { $DNS_PORT, $DHCP_IN_PORT, $OPENVPN_PORT, $FACTORIO_PORT, $OPENTTD_PORT, $CSTRIKE_PORT, $SNMP_POLL_PORT, $SNMP_TRAP_PORT }
}
set allowed_udp_ports_out {
type inet_service;
flags constant;
type inet_service; flags constant;
elements = { $DNS_PORT, $DHCP_OUT_PORT, $SNMP_POLL_PORT }
}
set ipv4_geo_blacklist {
type ipv4_addr;
flags interval;
type ipv4_addr; flags interval;
elements = { };
}