Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 836 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 836 Bytes

USF VPN Setup

Ubuntu 18.04 / 20.04 LTS x64 Install

# Clone repo and enter director
git clone https://github.com/sawyermade/usf_vpn
cd usf_vpn

# Install package
sudo dpkg -i linux/GlobalProtect_deb-5.1.1.0-17.deb && sudo apt install -f -y

# Initialize portal, should have connection error
globalprotect connect --portal vpn.usf.edu

# Enter credentials, netid & password then it connects
globalprotect

# After connecting, youll see >> where you type quit
quit

# Disconnect
globalprotect disconnect 

# Reconnect, shouldnt ask for credentials
globalprotect connect

Certificate Error Fix Ubuntu

# Remove .GlobalProtect
rm -rf ~/.GlobalProtect

# Connect
globalprotect connect

Aliases

alias vu='globalprotect connect'
alias vd='globalprotect disconnect'
alias vs='globalprotect status'