Skip to content

Commit b2ae971

Browse files
committed
update wireguard clearnet and hide cloud vpn for now
1 parent 763ddc3 commit b2ae971

File tree

6 files changed

+9
-15
lines changed

6 files changed

+9
-15
lines changed

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Here you will find everything you need to set up and use your Start9 server. For
1111
- [Connecting Locally](user-manual/connecting-locally.md)
1212
- [Connecting Remotely](user-manual/connecting-remotely/)
1313
- [Router VPN](user-manual/connecting-remotely/router-vpn.md)
14-
- [Cloud VPN](user-manual/connecting-remotely/cloud-vpn.md)
14+
<!-- - [Cloud VPN](user-manual/connecting-remotely/cloud-vpn.md) -->
1515
- [Clearnet](user-manual/connecting-remotely/clearnet.md)
1616
- [Tor](user-manual/connecting-remotely/tor.md)
1717
- [Installing Services](user-manual/installing-services.md)

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- [Connecting Locally](user-manual/connecting-locally.md)
1212
- [Connecting Remotely](user-manual/connecting-remotely/README.md)
1313
- [Router VPN](user-manual/connecting-remotely/router-vpn.md)
14-
- [Cloud VPN](user-manual/connecting-remotely/cloud-vpn.md)
14+
<!-- - [Cloud VPN](user-manual/connecting-remotely/cloud-vpn.md) -->
1515
- [Clearnet](user-manual/connecting-remotely/clearnet.md)
1616
- [Tor](user-manual/connecting-remotely/tor.md)
1717
- [Installing Services](user-manual/installing-services.md)

src/user-manual/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- [Connecting Locally](connecting-locally.md)
66
- [Connecting Remotely](connecting-remotely/README.md)
77
- [Router VPN](connecting-remotely/router-vpn.md)
8-
- [Cloud VPN](connecting-remotely/cloud-vpn.md)
8+
<!-- - [Cloud VPN](connecting-remotely/cloud-vpn.md) -->
99
- [Clearnet](connecting-remotely/clearnet.md)
1010
- [Tor](connecting-remotely/tor.md)
1111
- [Installing Services](installing-services.md)

src/user-manual/connecting-remotely/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ There are three ways to connect to your server and its installed services remote
44

55
- [Router VPN](./router-vpn.md). Fast, private, _personal_ access from anywhere in the world using a VPN server on your router.
66

7-
- [Cloud VPN](./cloud-vpn.md). Fast, private, _personal_ access from anywhere in the world using a VPN server on a cloud VPS.
7+
<!-- - [Cloud VPN](./cloud-vpn.md). Fast, private, _personal_ access from anywhere in the world using a VPN server on a cloud VPS. -->
88

99
- [Clearnet](./clearnet.md). Permits hosting services on the _public_ Internet using standard (`.com`, `.net`, etc) domains.
1010

src/user-manual/connecting-remotely/clearnet.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ There are two ways of opening your server to the Internet. Note, this just is a
3131

3232
1. (optional but recommended) Enable dynamic DNS for your home IP address. Your Internet Service Provider (ISP) may unexpectedly change the IP address of your home. If this happens, it will break your clearnet connections until you redo the final step below. To prevent this, you can enable <a href="https://en.wikipedia.org/wiki/Dynamic_DNS" target="_blank">dynamic DNS</a>. Many routers offer this as a free or paid service. If not, there are third party services available.
3333

34-
1. Access the DNS settings for your domain (usually your domain registrar where you originally leased the domain) and create an "A" record.
34+
1. Access the DNS settings for your domain (usually your domain registrar where you originally leased the domain) and create an "A" record.
3535

36-
Even if using an dynamic DNS address, having at least one A record is usually a requirement. The "Host" should be `@`, while the value should be your home IP address (prehaps labeled as WAN IP in your router interface). If you're using a dynamic DNS address (recommended) that provides a unique static IP address, use that in the A record, otherwise you must add a CNAME with a "`*`" as the "Host" (if your registrar allows this) and `mydomain.com` as the "Value". (If you cannot use "`*`" then you'll need to create and use a subdomain).
36+
Even if using an dynamic DNS address, having at least one A record is usually a requirement. The "Host" should be `@`, while the value should be your home IP address (prehaps labeled as WAN IP in your router interface). If you're using a dynamic DNS address (recommended) that provides a unique static IP address, use that in the A record, otherwise you must add a CNAME with a "`*`" as the "Host" (if your registrar allows this) and `mydomain.com` as the "Value". (If you cannot use "`*`" then you'll need to create and use a subdomain).
3737

3838
```admonish warning
3939
It might take a few minutes for your domain changes to take effect. You can test it using <a href="https://dnschecker.org" target="_blank">https://dnschecker.org</a>.
@@ -73,15 +73,9 @@ The result of this setup will be a brand new _public_ IP address (e.g. `162.159.
7373
7474
1. SSH into your StartOS server. [Instructions](../../user-manual/ssh.html)
7575
76-
1. Run the following command, replacing `###.###.###.###` with the IPv4 address of your VPS:
76+
1. Run the following command, replacing `###.###.###.###` with the IPv4 address of your VPS, then follow the on-screen prompts to complete setup:
7777
78-
wg-vps-setup -i ###.###.###.###
79-
80-
- When prompted, provide your VPS's root password.
81-
- When prompted, decide if you want the script to add your StartOS SSH public key to the VPS. This is recommended and can make debugging easier if a problem arises.
82-
- When prompted, choose a port for WireGuard to listen on and a name for the client. If you don't need to customize this, hit enter to accept the defaults.
83-
84-
The script will automatically configure your VPS. Unless there is an issue, it will conclude with WireGuard server setup complete!
78+
wireguard-vps-proxy-setup -i ###.###.###.###
8579
8680
1. Verify everything is working:
8781

src/user-manual/connecting-remotely/cloud-vpn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The result of this setup will be a brand new _local_ IP address (e.g. `192.168.x
2525
2626
1. Run the following command, replacing `###.###.###.###` with the IPv4 address of your VPS:
2727
28-
wg-vps-setup -i ###.###.###.###
28+
wireguard-vps-proxy-setup -i ###.###.###.###
2929
3030
- When prompted, provide your VPS's root password.
3131
- When prompted, decide if you want the script to add your StartOS SSH public key to the VPS. This is recommended and can make debugging easier if a problem arises.

0 commit comments

Comments
 (0)