added http and https services, commented defines.nft for clarity
This commit is contained in:
parent
ca58857af1
commit
be8d249c29
|
@ -1,6 +1,12 @@
|
|||
# services
|
||||
# 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
|
||||
|
|
|
@ -7,7 +7,7 @@ table ip filter {
|
|||
set allowed_tcp_ports {
|
||||
type inet_service;
|
||||
flags constant;
|
||||
elements = { $SSH_PORT1, $SSH_PORT2, $DNS_PORT };
|
||||
elements = { $SSH_PORT1, $SSH_PORT2, $DNS_PORT, $HTTP_PORT, $HTTPS_PORT };
|
||||
}
|
||||
|
||||
set allowed_udp_ports_in {
|
||||
|
|
Loading…
Reference in New Issue