Forked from PieterScheffers/install_forticlient_linux.sh
Created
August 27, 2020 13:24
-
-
Save pfrozi/99896dff2314cf27efd9acbff0da0dba to your computer and use it in GitHub Desktop.
Install Forticlient on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install ubuntu in virtual machine | |
# https://ubuntuforums.org/showthread.php?t=1481300 | |
# Get arch type of ubuntu | |
# i686 = 32 bit | |
# x86_64 = 64 bit | |
uname -m | |
# download forticlient | |
https://hadler.me/linux/forticlient-sslvpn-deb-packages | |
# install (get error on missing dependencies) | |
sudo dpkg -i forticlient.deb | |
# https://askubuntu.com/questions/40011/how-to-let-dpkg-i-install-dependencies-for-me | |
# install dependencies | |
sudo apt-get -f install | |
# install forticlient | |
sudo dpkg -i forticlient.deb | |
# https://askubuntu.com/questions/81797/nslookup-finds-ip-but-ping-doesnt | |
sudo apt-get remove libnss-mdns | |
# start forticlient | |
cd /opt/forticlient-sslvpn | |
sudo ./fortisslvpn.sh | |
# https://github.com/adrienverge/openfortivpn | |
# https://askubuntu.com/questions/793443/forticlient-on-ubuntu-1404-tunnel-running-but-no-ip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment