Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info

ITS doesn't support network access for Linux systems, but it is possible to connect Linux to the campus network.  This page contains some tips we have collected. 

Table of Contents

Installing Linux on an former macOS or Windows computer

...

When using a dual boot system you will need to randomize the MAC addresses on one of the operating systems, as both systems cannot use the same MAC Address.

SwatVPN

Option 1

Install openconnect, a SSL VPN client that works with the Cisco Anyconnect VPN servers used by Swarthmore. The example below was done using Ubuntu 18.04. Other versions of Linux might require different commands.

To install:

  1. Open a terminal window
  2. $ sudo apt-get update
  3. $ sudo apt install network-manager-openconnect-gnome 

To run from the command line (cli), it must run as root, so use the sudo option:

  1. Open a terminal window.
  2. $ sudo openconnect swatvpn.swarthmore.edu
  3.  Accept the certificate, even with the error "signer not found".
  4. Enter your username, password (first PASSCODE prompt), and "push" without the quotes (at the second PASSCODE prompt, used for DUO 2FA prompt).
  5. Once DUO has successfully completed, it will finish connecting and show "Connected as 130.58.#.#, using SSL"
  6. Leave terminal open to maintain the VPN connection. Use web browser or another terminal window to access the network via the VPN tunnel.
  7. CTRL-C to end the VPN session.

Option 2 (deprecated)

To use Swarthmore's VPN system from Linux install the Cisco AnyConnect client for Linux.  Submit a help request to ask for the AnyConnect Linux installer then follow the directions below.enter the following in a terminal window.

Code Block
tar -zxvf anyconnect-linux64-<version number>-predeploy-k9.tar.gz

...


cd anyconnect-linux64-<version number>

...


cd vpn

...


sudo ./vpn_install.sh

Ubuntu apt-get errors

Swarthmore's network can cause problems for some Ubuntu systems when installing software via apt-get.  To avoid the problem, use the following instructions.

...