1

Add a firewall preset for asterisk

This commit is contained in:
Evan Pratten 2023-12-17 15:56:40 -05:00
parent 7257d3378d
commit e8dee828e6

View File

@ -21,8 +21,19 @@ PROFILES = {
},
"kdeconnect": {
"comment": "KDE Connect",
"ports":[("1714:1764", "udp"), ("1714:1764", "tcp")]
}
"ports": [("1714:1764", "udp"), ("1714:1764", "tcp")],
},
"asterisk": {
"comment": "Asterisk",
"ports": [
(5060, "udp"),
(4569, "udp"),
(4569, "tcp"),
(5060, "tcp"),
(5061, "tcp"),
("10000:20000", "udp"),
],
},
}