BSD based systems
- www.huntvpn.com
Difficulty Level: Expert
HuntVPN can be configured on BSD based systems by using OpenVPN or WireGuard.
OpenVPN
OpenVPN - FreeBSD
- First update all repositories
pkg update
- Install the OpenVPN package
pkg install openvpn
- Create a folder for the configuration files
mkdir /usr/local/etc/openvpn/client/
- Download your connection profile and extract the file huntvpn-profile.ovpn to /usr/local/etc/openvpn/client/
unzip huntvpn-profile.zip huntvpn-profile.ovpn -d /usr/local/etc/openvpn/client/
Rename this file to huntvpn.conf
cd /usr/local/etc/openvpn/client/ && mv huntvpn-profile.ovpn huntvpn.conf
- Add the following lines to '/etc/rc.conf'
openvpn_enable=yes
openvpn_config="/usr/local/etc/openvpn/client/huntvpn.conf"
- Start the OpenVPN Client
service openvpn start
OpenVPN - NetBSD
- Download the NetBSD package for your architecture from pgksrc :
- Install the OpenVPN package
pkg_add openvpn*tgz
- Create a folder for the configuration files
mkdir /usr/local/etc/openvpn/client/
- Download your connection profile and extract the file huntvpn-profile.ovpn to /usr/local/etc/openvpn/client/
unzip huntvpn-profile.zip huntvpn-profile.ovpn -d /usr/local/etc/openvpn/client/
- Start OpenVPN
openvpn --config /usr/local/etc/openvpn/client/huntvpn-profile.ovpn --user root
w: BSD
Is this article helpful to you?