-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
nft_rules_tcp: | ||
- name: 22 | ||
rules: | ||
- add rule inet filter input tcp dport 22 counter accept comment "Incoming SSH" | ||
- name: 80 | ||
rules: | ||
- add rule inet filter input tcp dport 80 counter accept comment "incoming HTTP" | ||
- name: 443 | ||
rules: | ||
- add rule inet filter input tcp dport 443 counter accept comment "incoming HTTPS" | ||
- name: 9100 | ||
- add rule inet filter input ip saddr 5.9.112.244 tcp dport 9100 counter accept comment "clickhouse prometheus from monitoring.ooni.org" |