Skip to content

Commit

Permalink
unetd: add firewall input rule for global port
Browse files Browse the repository at this point in the history
Ensure that peers can be exchanged over any interface

Signed-off-by: Felix Fietkau <[email protected]>
  • Loading branch information
nbd168 committed Dec 17, 2024
1 parent 8a72390 commit f8a1652
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions package/network/services/unetd/files/unetd.init
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,20 @@ start_service() {
procd_set_param command "$PROG" -h /var/run/unetd/hosts -u /var/run/unetd/socket
procd_set_param respawn
procd_set_param limits core="unlimited"

procd_open_data
json_add_array firewall

json_add_object ""
json_add_string type rule
json_add_string proto udp
json_add_string src "*"
json_add_int dest_port 51819
json_add_string target ACCEPT
json_close_object

json_close_array
procd_close_data

procd_close_instance
}

0 comments on commit f8a1652

Please sign in to comment.