From 87d3b4a58bdc629cec07ca2bc4246a1ab214da04 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sun, 5 Jan 2025 16:24:58 -0600 Subject: [PATCH] update interfaces --- internal/config/config.go | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 248ffe9..90fac7a 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -221,23 +221,25 @@ func CreateDefaultConfig(path string) error { } // Add default interfaces - cfg.Interfaces["RNS Testnet Amsterdam"] = &common.InterfaceConfig{ + cfg.Interfaces["Go-RNS-Testnet"] = &common.InterfaceConfig{ Type: "TCPClientInterface", Enabled: true, - TargetHost: "amsterdam.connect.reticulum.network", - TargetPort: 4965, + TargetHost: "127.0.0.1", + TargetPort: 4242, + Name: "Go-RNS-Testnet", } - cfg.Interfaces["RNS Testnet BetweenTheBorders"] = &common.InterfaceConfig{ + cfg.Interfaces["Quad4 TCP"] = &common.InterfaceConfig{ Type: "TCPClientInterface", Enabled: true, - TargetHost: "reticulum.betweentheborders.com", + TargetHost: "rns.quad4.io", TargetPort: 4242, + Name: "Quad4 TCP", } cfg.Interfaces["Local UDP"] = &common.InterfaceConfig{ Type: "UDPInterface", - Enabled: true, + Enabled: false, Address: "0.0.0.0", Port: 37696, }