Scope: Use OpenConnect VPN client to connect to NYU-NET, the university's wide-area network (WAN).
You'll need one or more of the following packages:
- openconnect
- network-manager-openconnect
- network-manager-openconnect-gnome
You may install them via your operating system's (OS) package manager:
Debian, Ubuntu:
apt-get install openconnect network-manager-openconnect network-manager-openconnect-gnome
Fedora:
dnf install openconnect
macOS:
brew install openconnect
You can access NYU-NET using a full- or split-tunnel connection:
NYU VPN: All Traffic
NYU VPN: NYU-NET Traffic Only
and you'll need to indicate the type of connection you want to establish using the: --authgroup
option.
Initiate a connection:
sudo openconnect --background --user NetID --authgroup "NYU VPN: All Traffic" vpn.nyu.edu
When prompted, provide your credentials:
password:(your local password)
VPN authentication requires a: valid NetID and password, as well as access to a multi-factor authentication (MFA) device. The second password prompt requires you to enter one of the following:
push
- push notification via Duo App
phone1
- phone call to your primary registered phone number
sms
- text message to your primary registered phone number
For example:
Username:(your NetID)
Password:(your NetID password)
Password:(push)
Accept the push.
When you want to disconnect, bring the background process to the foreground:
sudo killall -SIGINT openconnect
then end it with:
SIGINT
(Ctrl + C)
or:
SIGTERM
(Ctrl + Z)
❤️