Skip to the content.

nettica-rpm

Repository for RPM based linux systems

Welcome to the Nettica Repository

You can use this repo to install the nettica-client for redhat/fedora linux distros.


# Install wireguard if not already installed
sudo dnf install wireguard-tools iptables

# Install above should have installed systemd-resolved. Enable and start it.
sudo systemctl enable systemd-resolved
sudo systemctl start systemd-resolved

# Install nettica-client
sudo dnf config-manager --add-repo https://rpm.nettica.com/nettica.repo
sudo dnf install nettica
(You will be asked to accept the certificate on the first download)

# Set the config
# Create a device on https://my.nettica.com and copy and paste the config url text
# See https://nettica.com/adding-a-device-manually
# This can be skipped if you're installing on a desktop and using nettica agent.
# curl "http://localhost:53280/config/?id=device-cciAg&apiKey=device-api-bu5WuXRq&server=https://my.nettica.com"

# Enable IP forwarding for subnet routing or VPN tunneling
sudo nano /etc/sysctl.conf

In the file, uncomment the line below to enable IP forwarding

# Uncomment the next line to enable packet forwarding for IPv4
net.ipv4.ip_forward=1

Ctrl-X to save the file

sudo sudo sysctl -p

# Install and start nettica agent on desktops
sudo dnf install nettica.agent
nettica.agent &