Skip to content

Commit 17113d1

Browse files
authored
Merge pull request #20 from HackUCF/linux-cyberlab-secure
Added linux cyberlab secure
2 parents 70f784a + 4425624 commit 17113d1

File tree

6 files changed

+86
-0
lines changed

6 files changed

+86
-0
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# How to use Cyberlab Secure on Linux
2+
3+
1. Install nm-connection-editor
4+
- **Ubuntu**
5+
```
6+
sudo apt update &&
7+
sudo apt install network-manager-gnome
8+
```
9+
10+
- **Fedora**
11+
```
12+
sudo dnf install nm-connection-editor
13+
```
14+
15+
- **Arch**
16+
```
17+
sudo pacman -S network-manager-applet
18+
```
19+
20+
21+
??? note "Note about compatibility"
22+
23+
This should work on most distributions that use NetworkManager and wpa_supplicant. If you are using a different network manager, you may need to use a different tool to connect to Cyberlab Secure.
24+
Other distros are officially unsupported, but you can try to use the nm-connection-editor tool to connect to Cyberlab Secure.
25+
26+
27+
2. Run nm-connection-editor
28+
```bash
29+
sudo nm-connection-editor
30+
```
31+
32+
3. Click on the + button to add a new connection
33+
- ![Select the plus on the bottom left](../img/linux-cyberlab-secure/nm-step-1.png)
34+
35+
4. Select Wifi and click Create
36+
- ![Select Wifi and click Create](../img/linux-cyberlab-secure/nm-step-2.png)
37+
38+
5. In the wifi tab fill in the following:
39+
* Connection Name: `Cyberlab Secure`
40+
* SSID: `Cyberlab Secure`
41+
* Mode: `Client`
42+
* Band: `Automatic`
43+
* Device: `leave blank`
44+
* MAC Address: `leave blank`
45+
* Cloned MAC Address: `leave blank`
46+
* MTU: `Automatic`
47+
* Available to all users: `checked`
48+
* All other fields can be left as default
49+
* ![Fill in the fields](../img/linux-cyberlab-secure/nm-step-3.png)
50+
51+
6. In the wifi security tab fill in the following:
52+
* Security: `WPA & WPA2 Enterprise`
53+
* Authentication: `Protected EAP (PEAP)`
54+
* Anonymous Identity: `leave blank`
55+
* Domain: `leave blank`
56+
* CA Certificate: `leave blank`
57+
* Check box for No CA certificate is required
58+
* PEAP Version: `Automatic`
59+
* Inner Authentication: `MSCHAPv
60+
* Username: `Your SSO Username`
61+
* Password: `Your SSO Password`
62+
* ![Fill in the fields](../img/linux-cyberlab-secure/nm-step-4.png)
63+
64+
7. Select Save
65+
66+
8. Connect to the network
67+
The Cyberlab Secure network should be available where you normally connect to Wi-Fi. If not, run
68+
```bash
69+
nmcli connection up "Cyberlab Secure"
70+
```
71+
72+
73+
### Troubleshooting
74+
75+
If you are having trouble connecting to the network, try the following steps:
76+
77+
1. Run ``sudo journaclctl -u NetworkManager`` to see if there are any errors
78+
79+
2. Run ``sudo journalctl -u wpa_supplicant`` to see if there are any errors
80+
81+
3. Create ticket in infra help desk
39.5 KB
Loading
51.7 KB
Loading
42.2 KB
Loading
84.8 KB
Loading

mkdocs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,10 @@ nav:
5050
- "Migration Guide": "guides/Migrate Instance.md"
5151
- "Windows Instances": "guides/How to access Windows Instances.md"
5252
- "Troubleshooting": "guides/Troubleshooting.md"
53+
- "Linux Cyberlab Secure": "guides/Linux Cyberlab Secure.md"
5354
#extra_css:
5455
# - stylesheets/extra.css
56+
markdown_extensions:
57+
- admonition
58+
- pymdownx.details
59+
- pymdownx.superfences

0 commit comments

Comments
 (0)