Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonathancross/xmr-stunnel
Connect a Monero wallet to a full node via secure tunnel
https://github.com/jonathancross/xmr-stunnel
monero stunnel
Last synced: 24 days ago
JSON representation
Connect a Monero wallet to a full node via secure tunnel
- Host: GitHub
- URL: https://github.com/jonathancross/xmr-stunnel
- Owner: jonathancross
- Created: 2017-12-05T02:15:02.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-05T02:53:14.000Z (about 7 years ago)
- Last Synced: 2024-10-25T05:59:35.132Z (2 months ago)
- Topics: monero, stunnel
- Language: Shell
- Homepage:
- Size: 15.6 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Connect a Monero wallet to a full node via stunnel
==================================================Taken from: https://monero.stackexchange.com/a/3466/1023
Pretty sure this is not the most easy way to generate these certificates, but here is a script based on [this tutorial](http://pki-tutorial.readthedocs.io/en/latest/advanced/index.html) :
Stunnel configuration file for the server :
[monerod_server]
accept = 30000
connect = < monerod-local-ip >:18081
sslVersion = TLSv1.2
verify = 2
cert = /path/to/certs/green-chain.pem
key = /path/to/certs/green.no.key
CAfile = /path/to/ca/tls-ca-chain.pem
CRLfile = /path/to/crl/tls-ca-chain.crlStunnel configuration file for the client :
[monerod_client]
client = yes
accept = 18081
connect = < external.ip.of.node >:30000
sslVersion = TLSv1.2
verify = 3
cert = /path/to/certs/barney.crt
key = /path/to/certs/barney.key
CAfile = /path/to/ca/green-chain.pemThis example requires port `30000` to be open on `external.ip.of.node`, and eventually redirected to the machine hosting stunnel.