Bubble proxy service
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Jonathan Cobb 698fa50a86 WIP. building standalone installer for mac 4 år sedan
img WIP. add windows build instructions, try whoami instead of users (not supported on windows) 4 år sedan
macos WIP. adding support for separately installing on mac 4 år sedan
src fix reading token from env var 4 år sedan
.gitignore getting releases to work on win/mac 4 år sedan
BUILD-windows.md update windows build instructions 4 år sedan
BUILD.md fix windows route management and dns config, add utility scripts, add release script and instructions 4 år sedan
Cargo.lock allow token and password env vars to contain the literal value of the token/password 4 år sedan
Cargo.toml allow token and password env vars to contain the literal value of the token/password 4 år sedan
README-release.md prompt for flex router password in flex_register, update docs 4 år sedan
README.md update README to describe passing literal values in env vars 4 år sedan
bubble_release.sh WIP. building standalone installer for mac 4 år sedan
dist_jenkins.sh WIP. building standalone installer for mac 4 år sedan
first_time_ubuntu.sh initial commit 4 år sedan
flex_init.sh prompt for password in init if env var not defined, update readme 4 år sedan
flex_register.sh prompt for flex router password in flex_register, update docs 4 år sedan
set_version.sh pull version from Cargo.toml 4 år sedan

README.md

bubble-flexrouter

bubble-flexrouter provides HTTP/HTTPS proxy services for Bubble.

Some websites and apps refuse to respond to requests originating from a cloud IP address. Thus, when a user is connected to their Bubble, some sites and apps will not work.

With flex routing, Bubble can route these requests through a device connected to the Bubble that is running bubble-flexrouter. Now, from the perspective of the website or app, these requests will originate from a “clean” IP, and so a valid response will be sent.

Note that using flex routing does remove some privacy protection - sites and apps that are flex-routed will see one of your device’s real IP addresses.

The Easy Way

Download the latest bubble-flexrouter release:

The README file found within the above release ZIP file describes how to use the flex_init.sh and flex_register.sh scripts to manage a flex router. These scripts make managing a flex router much easier than what is described here.

The instructions below describe the low-level way to initialize and register a flex router and are intended for software developers.

Build bubble-flexrouter

You can skip this step if you have a pre-built binary from one of the above ZIP files.

If you want to build from source:

Installation

There are a few steps to installation:

  • Generate the flex-router password
  • Create an auth token file
  • Create an SSH key pair
  • Install system service

Generate the bubble-flexrouter password

During installation, choose a password for the service. It should be random and at least 30 characters long.

Bcrypt the password (use 12 rounds).

Store the plaintext (not bcrypted) password securely someplace where the Bubble app can read it. It will need this password to register and unregister the router with the Bubble. Ideally this is not on the filesystem, but in some internal app storage mechanism, since it will be stored in plaintext.

Store the bcrypted value securely somewhere someplace where only the bubble-flexrouter service can read it. If you store the bcrypted value in a file, ensure that only the bubble-flexrouter service can read the file.

Create an auth token file

bubble-flexrouter uses an auth token to secure its connection to a Bubble.

During installation, generate a random token. This token must be at least 50 characters long.

Store the token securely somewhere someplace where only the bubble-flexrouter service can read it. If you store the token in a file, ensure that only the bubble-flexrouter service can read the file.

Create an SSH key pair

During installation, generate an RSA key pair:

ssh-keygen -t rsa -f /some/secure/location

In the above, /some/secure/location should be a path that is only readable by the bubble-flexrouter system service.

When this step is done, /some/secure/location should be the path to the SSH private key and /some/secure/location.pub should be the path to the SSH public key.

Install system service

Install bubble-flexrouter as a system service (Windows Service or Mac OS launch daemon) during Bubble app installation.

It should always be running. Set it to run at system startup.

The user that bubble-flexrouter runs as must have sufficient privileges to add and remove IP routes from the system routing table. This usually means Administrator (on Windows) or root (on Mac OS).

The service requires some environment variables to be set:

  • BUBBLE_FR_SSH_KEY - full path to the private SSH key
  • BUBBLE_FR_PASS - full path to the bcrypted password file, or the actual bcrypted password prefixed with @
  • BUBBLE_FR_TOKEN - full path to the auth token file, or the actual token prefixed with @

Run the service with these environment variables set.

Uncommon configuration

By default bubble-flexrouter will listen on 127.0.0.1 on ports 9823 and 9833.

If these ports are unavailable, you can change them with command line arguments to bubble-flexrouter.

Run bubble-flexrouter --help to see the full list of command line options. Usually you will not need to set any arguments.

Registering

When a user successfully logs in to a Bubble node, the API response will include a session token. Use this token and the bubble-flexrouter password to register the flexrouter with the Bubble.

To register the flexrouter with the Bubble, send a registration request to the admin port, listening on 127.0.0.1:9833

This request must include the request header Content-Type: application/json

POST http://127.0.0.1:9833/register
{
  "password": "<password>",
  "session": "<session-token>",
  "bubble": "<bubble-hostname>",
  "ip": "<client-vpn-ip>"
}

Where:

  • <password> is the bubble-flexrouter password that was generated during installation
  • <session-token> is the session token returned when the used logged in (usually from the auth/login API call)
  • <bubble-hostname> is the hostname of the Bubble that the app has connected to
  • <client-vpn-ip> is the VPN IP address that was assigned to the device (usually starts with 10.19.)

A successful registration request will return HTTP status 200. Any other response indicates a failure, and the response body will contain a plaintext string with an error message.

An example using curl:

curl -H 'Content-Type: application/json' \
     -d '{"password":"Uy6dDwNP5msid3P6QEpeVmQMuUiAda","session":"47cc4974-2eca-47d8-8c74-c2cc106b9ba8","bubble":"nexus-dr66b-wn85d-ux27e.bubv.net","ip":"10.19.49.12"}' \
     http://127.0.0.1:9833/register

Unregistering

When a user logs out of a Bubble node, unregister the flexrouter by sending a request to the admin port.

This request must include the request header Content-Type: application/json

POST http://127.0.0.1:9833/unregister
{
  "password": "<password>"
}

Where:

  • <password> is the bubble-flexrouter password that was generated during installation

A successful unregister request will return HTTP status 200. Any other response indicates a failure, and the response body will contain a plaintext string with an error message.

An example using curl:

curl -H 'Content-Type: application/json' \
     -d '{"password":"Uy6dDwNP5msid3P6QEpeVmQMuUiAda"}' \
     http://127.0.0.1:9833/unregister

Uninstallation

If the Bubble app is uninstalled from the system, then also:

  • Stop and remove the system service
  • Remove the bcrypted password file
  • Remove both files of the SSH key pair
  • Remove the auth token file