From 1d10adb67ccf87cc7461be71905b1ee2378b7c73 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sat, 25 Dec 2021 20:57:37 -0400 Subject: fix(wpcarro/diogenes): Admit traffic to wpcarro.dev:6698 It's difficult to know whether or not I need this. When I run the following commands... ``` wpcarro@diogenes> nmap localhost PORT STATE SERVICE 22/tcp open ssh 80/tcp open http 443/tcp open https wpcarro@diogenes> nmap wpcarro.dev PORT STATE SERVICE 22/tcp open ssh 80/tcp open http 443/tcp open https 3389/tcp closed ms-wbt-server ``` ...neither localhost nor wpcarro.dev reports 6698 being open even though 6698 is configured to be open in both: - diogenes/default.nix - GCP console Right now, quasselcore is WAI, so I don't want to invest more time into closing this loop. Change-Id: I3d68fd901314aa7d364abf9381dff101411e6d15 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4629 Reviewed-by: wpcarro Autosubmit: wpcarro Tested-by: BuildkiteCI --- users/wpcarro/nixos/diogenes/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'users') diff --git a/users/wpcarro/nixos/diogenes/default.nix b/users/wpcarro/nixos/diogenes/default.nix index 4004857c59..af49f33aa1 100644 --- a/users/wpcarro/nixos/diogenes/default.nix +++ b/users/wpcarro/nixos/diogenes/default.nix @@ -11,7 +11,11 @@ in { networking = { hostName = "diogenes"; - firewall.allowedTCPPorts = [ 80 443 ]; + firewall.allowedTCPPorts = [ + 80 # http + 443 # https + 6698 # quassel + ]; }; # Use the TVL binary cache -- cgit 1.4.1