-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Connecting to the Server | ||
======================== | ||
|
||
Access to the cstock server requires connecting to the VPN. | ||
Follow the steps below to connect to the VPN and access the server. | ||
|
||
## VPN set up | ||
|
||
To get set up initially ask a system administrator to set you up with a new VPN account, and two-factor application. | ||
You may need to install an older version of Sophos Authenticator to get the two-factor codes to work. | ||
|
||
Once you've gotten set up, download the OpenVPN config file and save it locally. | ||
|
||
## Logging in to the VPN | ||
|
||
On Ubuntu, login to the VPN by running: | ||
|
||
```bash | ||
sudo openvpn --config ~/user__ssl_vpn_config.ovpn | ||
``` | ||
|
||
Enter your credentials, which are you username, followed by your password + 2FA code appended together. | ||
So if your password is `hunter2` and the 2-factor code is `123456`, | ||
you would enter `hunter2123456` for the password field. | ||
|
||
## Logging in to cstock | ||
|
||
Once on the VPN, you can access cstock by running: | ||
|
||
```bash | ||
ssh [email protected] | ||
``` | ||
|
||
Replace `user` with your username, or use the `cstock` user for shared access. |