homemade_firewall/defines.nft

17 lines
327 B
Plaintext

# Networks
define VPN_SUBNET = 10.8.0.0/24
# TCP only services
define SSH_PORT1 = 22
define SSH_PORT2 = 8022
define HTTP_PORT = 80
define HTTPS_PORT = 443
# TCP and UDP services (needs to go in both sets)
define DNS_PORT = 53
# UDP only services
define DHCP_IN_PORT = 67
define DHCP_OUT_PORT = 68
define OPENVPN_PORT = 1194