mirror of
https://github.com/pikvm/pikvm
synced 2024-11-08 19:10:24 +00:00
bfdce5ef30
* update tailscale.md to reflect best-practices The provided -Syy is supposed to be used to redownload all package databases, while the command chain itself is a partial upgrade which is not recommended either for rolling release distributions. Replace the full database redownload with a database update and run a system upgrade while installing tailscaled. * remove unnecessary sync command from video.md * remove unnecessary sync command from bluetooth_hid.md * remove unnecessary sync command from arduino_hid.md * update faq.md to reflect best practices * update letsencrypt.md to keep system up-to-date when installing packages
43 lines
1.6 KiB
Markdown
43 lines
1.6 KiB
Markdown
# Tailscale VPN
|
|
|
|
[Tailscale](https://tailscale.com/) can be used to access PiKVM on the internal network. This is a convenient and free (for private use) tool for organizing a small VPN network. This document is provided as an example for accessing your pikvm over the inet but you can also use zerotier or remote.it. Basic support like whats shown below is provided as an example, any other setting or functionality needs to be redirected to the appropriate community.
|
|
|
|
|
|
## Installation
|
|
|
|
### On the PiKVM side
|
|
|
|
1. Use these commands:
|
|
|
|
```
|
|
# rw
|
|
# pacman -Syu tailscale-pikvm
|
|
# systemctl enable --now tailscaled
|
|
# tailscale up
|
|
```
|
|
|
|
2. Follow the link to authorize this installation.
|
|
|
|
3. After success, perform soft reboot using `reboot` command to make sure that everything will work correctly.
|
|
|
|
4. Perform command `ip addr show tailscale0` to view the Tailscale IP address.
|
|
|
|
|
|
### For each device you wish to access pikvm
|
|
|
|
* [Download](https://tailscale.com/download) and install tailscale for your OS to the system you are using, not to the system you want to control.
|
|
* Check the [admin page](https://login.tailscale.com/admin/machines) to view your VPN network.
|
|
* Follow the URL in the web browser: `https://<tailscale_kvm_ip>` and you will see PiKVM web interface.
|
|
|
|
??? note
|
|
* BASIC troubleshooting in case this fails in some way: Uninstall tailscale, remove these dirs /var/lib/tailscale /var/cache/tailscale and reinstall
|
|
|
|
```
|
|
# pacman -Rscnd tailscale
|
|
# rm -rf /var/lib/tailscale /var/cache/tailscale
|
|
# reboot
|
|
```
|
|
|
|
* Follow the above instructions to reinstall
|
|
|