OpenArena: Difference between revisions

From NixOS Wiki
Uk (talk | contribs)
add firewall configuration example.
 
Klinger (talk | contribs)
link added, category gaming added
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
== OpenArena ==
[https://openarena.ws/ OpenArena] is an open-source fork of Quake 3 Arena.
OpenArena is an open-source fork of Quake 3 Arena.


=== Firewall Configuration in NixOS for Local Games ===
=== Firewall Configuration in NixOS for Local Games ===
If you want to play OpenArena in a LAN setting (LAN-Party, Office Tournament) the game will not show locally hosted games. That is unless you allow the necessary UDP ports:<blockquote>networking.firewall.allowedUDPPorts = [ 27960 27961 27962 27963 ];</blockquote>
 
If you want to play OpenArena in a LAN setting (LAN-Party, Office Tournament) the game will not show locally hosted games. That is unless you allow the necessary UDP ports:
<syntaxhighlight lang="nixos">
  networking.firewall.allowedUDPPorts = [ 27960 27961 27962 27963 ];
</syntaxhighlight>
 
[[Category:Gaming]]

Latest revision as of 19:10, 1 September 2024

OpenArena is an open-source fork of Quake 3 Arena.

Firewall Configuration in NixOS for Local Games

If you want to play OpenArena in a LAN setting (LAN-Party, Office Tournament) the game will not show locally hosted games. That is unless you allow the necessary UDP ports:

  networking.firewall.allowedUDPPorts = [ 27960 27961 27962 27963 ];