9 lines
223 B
Bash
9 lines
223 B
Bash
|
#!/bin/bash --posix
|
||
|
|
||
|
### Minecraft Ports ###
|
||
|
# Game ports 12000 - 12099
|
||
|
# Query ports 12100 - 12199
|
||
|
# RCON ports 12200 - 12299
|
||
|
|
||
|
firewall-cmd --zone=public --add-port=12000-12299/tcp --permanent
|
||
|
firewall-cmd --reload
|