NAT behaviour tool setup & use assistance on Kicksecure

I’m trying to follow the Standalone Snowflake proxy guide on Debian-based Kicksecure but am stuck on step 2 — I am not understanding how to install the NAT behaviour tool. I’ve tried entering the “install” command displayed in the main Github page under “usage” but this is my output:

% go install github.com/pion/stun/v3/cmd/stun-nat-behaviour@latest
zsh: command not found: go
zsh: exit 127   go install github.com/pion/stun/v3/cmd/stun-nat-behaviour@latest

I am new to all of this and would love to help so if someone could please lend a hand, any help is much appreciated! :heart:

You need to install Go.

1 Like

If you do not want to install a 3rd party go you might also use debian backports:

add the following lines to your /etc/apt/sources.list

deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware

afterwards

apt-get update
apt-get install golang-1.22-src/bookworm-backports golang-go/bookworm-backports

1 Like