14 lines
509 B
Bash
Executable File
14 lines
509 B
Bash
Executable File
#!/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 -zone=public --add-port=2344-2345/udp --permanent
|
|
firewall-cmd -zone=public --add-port=2344-2345/tcp --permanent
|
|
firewall-cmd --reload
|
|
|