10 lines
381 B
Bash
10 lines
381 B
Bash
|
#!/bin/bash --posix
|
||
|
|
||
|
# To add additional ports for Arma you need to have 5 ports open as a range
|
||
|
# Arma offsets from the first port and increments upwards until 5 ports are open
|
||
|
# E.g. game is set to run on port 100, then ports 100-104 need to be opened
|
||
|
# By default Arma 3 runs from port 2302
|
||
|
firewall-cmd --zone=public --add-port=2300-2309/udp --permanent
|
||
|
firewall-cmd --reload
|
||
|
|