• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Opening Ports

God Mythera

Veteran OT User
Joined
Aug 11, 2012
Messages
2,048
Solutions
2
Reaction score
256
Location
United States
Could someone help me open ports via teamviewer? It has been a couple years since i did it, and the tutorial did not help at all.

The ports i need are
7171
7172
80
 
Could someone help me open ports via teamviewer? It has been a couple years since i did it, and the tutorial did not help at all.

The ports i need are
7171
7172
80

In Ubuntu (propably in Debian also)
Code:
sudo ufw allow 7171
sudo ufw allow 7172
sudo ufw allow 80/tcp

In Centos, RHEL
Code:
firewall-cmd --permanent --zone=public --add-port=7171
firewall-cmd --permanent --zone=public --add-port=7172
firewall-cmd --permanent --zone=public --add-port=80/tcp

About Windows and MacOs ask someone else.
About port forwarding in router ask someone else.
 
Back
Top