Qortal Project

The future of blockchain platforms

User Tools

Site Tools


Sidebar

Qortal Project Wiki

Important Notices

Introduction

Project Model

Minting

Communications

Trade Portal

Qortal Hosting (QDN)

Voting System

AT System

Hardware

Frequently Asked Questions (FAQ)

How-To Guides

Node Setup Guides

Third-Party Services

how_to_remote_access_without_ssh

This is an old revision of the document!


How To Configure A Node For Direct UI Access (without SSH tunneling)

If it's a private node (i.e. port 12391 isn't forwarded or accessible to anyone outside of the network) then the simplest way is to add this to settings.json: `"apiWhitelistEnabled": false` This will allow all connections to the node, and therefore will allow your UI to talk to it directly.

Alternatively, if you'd like more control over the node's security, you can set a manual whitelist with this setting: ```"apiWhitelist": [

"::1",
"127.0.0.1",
"192.168.0.0/24"

]```

The first 2 values allow local access. The third value "192.168.0.0/24" would need to be modified to specify the IP or IP range that is allowed to connect.

For a regular private node, setting `"apiWhitelistEnabled": false` is by far the simplest option.

how_to_remote_access_without_ssh.1646072076.txt.gz · Last modified: 02/28/2022 13:14 by gfactor