-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into xc/srv-zombie-process
- Loading branch information
Showing
24 changed files
with
575 additions
and
245 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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
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,75 @@ | ||
--- | ||
description: SSH No Ports Windows | ||
--- | ||
|
||
# 🪟 Installation Guide Windows | ||
|
||
### Installation <a href="#installation" id="installation"></a> | ||
|
||
First, open a powershell terminal. | ||
|
||
Then run the following command: | ||
|
||
```powershell | ||
Invoke-WebRequest -Uri "https://github.com/atsign-foundation/noports/releases/latest/download/universal.ps1" -OutFile "universal.ps1" | ||
``` | ||
|
||
#### Running the installer <a href="#running-the-installer" id="running-the-installer"></a> | ||
|
||
After downloading the installer, you can run the installer by running the following command: | ||
|
||
```powershell | ||
.\universal.ps1 | ||
``` | ||
|
||
#### Device Side <a href="#device-side" id="device-side"></a> | ||
|
||
After finishing the device install, you will have a windows service installed called `sshnpd`. This service will be started automatically and will be running in the background. | ||
|
||
#### Client Side <a href="#client-side" id="client-side"></a> | ||
|
||
After finishing the client install, you will have a binary called `{device_name@device_atsign}` installed on your machine. You can use this binary to connect to the device. | ||
|
||
Example: | ||
|
||
```powershell | ||
esp_32@wanderinggazebo | ||
``` | ||
|
||
or | ||
|
||
``` | ||
.\[email protected] | ||
``` | ||
|
||
### SSH Key Generation <a href="#ssh-key-generation" id="ssh-key-generation"></a> | ||
|
||
To generate an SSH key, you can run the following command: | ||
|
||
For RSA: | ||
|
||
```powershell | ||
ssh-keygen | ||
``` | ||
|
||
For Ed25519: | ||
|
||
```powershell | ||
ssh-keygen -t ed25519 | ||
``` | ||
|
||
### Activate the device atSign <a href="#activate-the-device-atsign" id="activate-the-device-atsign"></a> | ||
|
||
First time activating this atSign | ||
|
||
```powershell | ||
Users\alice\.local\bin\at_activate -a @<REPLACE>_device | ||
``` | ||
|
||
Activated this atSign before ? As before if this atSign is already activated elsewhere then you need to copy the .atKeys file for this atSign into the \~/.atsign/keys/ directory. | ||
|
||
### RDP? Check this out. | ||
|
||
{% content-ref url="usage-guide/rdp.md" %} | ||
[rdp.md](usage-guide/rdp.md) | ||
{% endcontent-ref %} |
Oops, something went wrong.