Update and rename 12_3_Adding_SSH_Hidden_Services to 12_3_Adding_SSH_Hidden_Services.md

This commit is contained in:
Javier Vargas 2020-07-01 18:50:08 +02:00 committed by GitHub
parent 3e4ec41fab
commit 8d93aa2efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
# Chapter 12.3: Adding SSH Hidden Services
In this chapter we will show you how to add a ssh hidden service to login remotelly using tor.
In this chapter we will show you how to add a ssh hidden service to login remotelly using Tor.
## Create SSH Hidden Services
To create new service you need to add some lines in your torrcfile.
To create new service you need to add some lines in your torrc file.
This should be under /etc/tor/torrc
@ -16,7 +16,7 @@ HiddenServicePort 22 127.0.0.1:22
HiddenServiceAuthorizeClient stealth hidden-service-ssh
```
* HiddenServiceDir: indicates tor that you have a hidden service directory with the neccesary configuration on path.
* HiddenServiceDir: indicates tor that you have a hidden service directory with the necessary configuration on path.
* HiddenServicePort: indicates tor port to be used, in SSH case is 22, if you want use other port you can change here.
* HiddenServiceAuthorizeClient: As it's name indicates authorize a client to connect to the hidden service.