added port 43391 to TCP/UDP allowed
i use this for locally hosting minecraft servers via the Open To LAN feature, UDP is required for the Simple Voice Chat mod sadly this does not seem to work and i havent a clue why, but I am leaving this port open for now SVC works perfectly with the Essential mod hosting
This commit is contained in:
parent
d763c2a257
commit
0be67ad22f
1 changed files with 13 additions and 14 deletions
|
@ -1,15 +1,11 @@
|
||||||
# Edit this configuration file to define what should be installed on
|
# Edit this configuration file to define what should be installed on
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}: {
|
||||||
|
|
||||||
{
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
@ -221,7 +217,10 @@
|
||||||
4455 # used for OBS websocket
|
4455 # used for OBS websocket
|
||||||
7777 # used for Satisfactory Server
|
7777 # used for Satisfactory Server
|
||||||
];
|
];
|
||||||
networking.firewall.allowedUDPPorts = [ 7777 ];
|
networking.firewall.allowedUDPPorts = [
|
||||||
|
7777 # # used for Satisfactory Server
|
||||||
|
43391 # used to forward simple voice chat traffic to minecraft.gabbie.blue:33991
|
||||||
|
];
|
||||||
networking.firewall.allowedUDPPortRanges = [
|
networking.firewall.allowedUDPPortRanges = [
|
||||||
{
|
{
|
||||||
from = 45000;
|
from = 45000;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue