Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Fix for Local DNS Resolution #15

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/OpenStack Setup Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
1. Go to [https://openvpn.net/client/](https://openvpn.net/client/).
2. Download the appropriate version of OpenVPN for your operating system and install it.

### For Windows:
### For Windows:

- Press the Windows key and search for OpenVPN.
- Run OpenVPN.
Expand All @@ -25,7 +25,7 @@
- Press "Connect".
- In the future, navigate to the OpenVPN client and select the on switch labeled "vpn.hackucf.org".

### For Windows 10 Users:
### For Windows 10 Users:

- If you don't already have the new Windows Terminal, download it from [https://aka.ms/terminal](https://aka.ms/terminal).

Expand Down
35 changes: 35 additions & 0 deletions docs/guides/Troubleshooting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Troubleshooting

This page provides methods for troubleshooting problems the end user may run into.

## Hackucf DNS records not resolving:
<details>
<summary>Fix for Custom DNS Users</summary><br>
<span>If you run your own local DNS and you cannot resolve horizon.hackucf.cloud with nslookup, then you will need to add the following to your Records.</span></br></br>
<span>DNS Records:</span>
<table>
<tr>
<th>Domain</th>
<th>IP Address</th>
</tr>
<tr>
<td>cloud.hackucf</td>
<td>10.4.4.10</td>
</tr>
</table>
<span>CNAME Records:</span>
<table>
<tr>
<th>FQDN</th>
<th>Domain</th>
</tr>
<tr>
<td>horizon.hackucf.cloud</td>
<td>cloud.hackucf</td>
</tr>
<tr>
<td>api.hackucf.cloud</td>
<td>cloud.hackucf</td>
</tr>
</table>
</details>
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@ nav:
- "Security Groups Guide": "guides/Security Groups.md"
- "How to Launch an Instance": "guides/How to Launch an Instance.md"
- "Migration Guide": "guides/Migrate Instance.md"
- "Troubleshooting": "guides/Troubleshooting.md"
#extra_css:
# - stylesheets/extra.css
Loading