F5F Stay Refreshed Software PC Gaming Need assistance with port forwarding on Linux?

Need assistance with port forwarding on Linux?

Need assistance with port forwarding on Linux?

E
ErikBaumeister
Junior Member
3
10-23-2019, 10:06 AM
#1
I'm facing issues running games on my Linux server despite having Ubuntu 20.04 set up smoothly. Everything seems fine with ports, UFW rules, and friends connecting from anywhere. However, when I install Valheim or 7 Days to Die, it works perfectly on Windows but fails to load properly after a fresh install on Linux.
E
ErikBaumeister
10-23-2019, 10:06 AM #1

I'm facing issues running games on my Linux server despite having Ubuntu 20.04 set up smoothly. Everything seems fine with ports, UFW rules, and friends connecting from anywhere. However, when I install Valheim or 7 Days to Die, it works perfectly on Windows but fails to load properly after a fresh install on Linux.

D
Dandalilly
Junior Member
10
10-25-2019, 02:06 AM
#2
Your server handles routing across your network or remains confined to the DMZ?
D
Dandalilly
10-25-2019, 02:06 AM #2

Your server handles routing across your network or remains confined to the DMZ?

B
Bosskj
Member
100
10-25-2019, 09:19 PM
#3
Your server is intended for hosting games.
B
Bosskj
10-25-2019, 09:19 PM #3

Your server is intended for hosting games.

D
DatCircleO_o
Junior Member
14
10-26-2019, 12:51 AM
#4
Ensure the command uses the correct input parameters. Run `sudo iptables --line-numbers -nvL ufw-user-input` followed by `sudo ip6tables --line-numbers -nvL ufw6-user-input`. If needed, switch to `sudo ip route` for routing details.
D
DatCircleO_o
10-26-2019, 12:51 AM #4

Ensure the command uses the correct input parameters. Run `sudo iptables --line-numbers -nvL ufw-user-input` followed by `sudo ip6tables --line-numbers -nvL ufw6-user-input`. If needed, switch to `sudo ip route` for routing details.

T
Tetdesu
Junior Member
2
10-26-2019, 01:38 AM
#5
The configuration for Valheim is incomplete. Create the file /etc/ufw/applications.d/valheim-server and insert the following: [valheim-server] title=valheim-server description=Valheim server listening port config ports=2456:2457,4380,27000:27031,27036/udp|2456:2457,27015:27030,27036:27037/tcp and enable it using ufw app update valheim-server. Activate with ufw allow valheim-server. To manage rules, run ufw status numbered to retrieve index numbers, then delete the unwanted entries with ufw delete. If you wish to handle open/close ports in startup/shutdown scripts, use the provided command snippet. For additional setup, a separate file for /etc/ufw/applications.d/7days2die-server should be prepared.
T
Tetdesu
10-26-2019, 01:38 AM #5

The configuration for Valheim is incomplete. Create the file /etc/ufw/applications.d/valheim-server and insert the following: [valheim-server] title=valheim-server description=Valheim server listening port config ports=2456:2457,4380,27000:27031,27036/udp|2456:2457,27015:27030,27036:27037/tcp and enable it using ufw app update valheim-server. Activate with ufw allow valheim-server. To manage rules, run ufw status numbered to retrieve index numbers, then delete the unwanted entries with ufw delete. If you wish to handle open/close ports in startup/shutdown scripts, use the provided command snippet. For additional setup, a separate file for /etc/ufw/applications.d/7days2die-server should be prepared.