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.

README.md 5.7 KiB

4 år sedan
4 år sedan
4 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. bubble-flexrouter
  2. =================
  3. bubble-flexrouter provides HTTP/HTTPS proxy services for Bubble.
  4. Some websites and apps refuse to respond to requests originating from a cloud IP address.
  5. Thus, when a user is connected to their Bubble, some sites and apps will not work.
  6. With flex routing, Bubble can route these requests through a device connected to the Bubble that is running bubble-flexrouter.
  7. Now, from the perspective of the website or app, these requests will originate from a "clean" IP, and so a valid response
  8. will be sent.
  9. Note that using flex routing does remove some privacy protection - sites and apps that are flex-routed will see
  10. one of your device's real IP addresses.
  11. # The Easy Way
  12. The [README-release](README-release.md) file describes how to use the `flex_init.sh` and `flex_register.sh` scripts
  13. to manage a flex router. Try to use these first.
  14. The instructions that follow below describe more low-level means of initializing and registering a flex router
  15. and are intended for software developers.
  16. # Installation
  17. There are a few steps to installation:
  18. * Generate the flex-router password
  19. * Create an SSH key pair
  20. * Create an auth token file
  21. * Install system service
  22. ## Generate the bubble-flexrouter password
  23. During installation, choose a password for the service. It should be random and at least 30 characters long.
  24. Store this password in securely someplace where the Bubble app can read it. Ideally this is *not* on the filesystem,
  25. but in some internal app storage mechanism, since it will be stored in plaintext.
  26. Bcrypt the password (use 12 rounds) and store the bcrypted value in a file. This file should only be readable by
  27. the bubble-flexrouter system service.
  28. ## Create an SSH key pair
  29. During installation, generate an RSA key pair:
  30. ssh-keygen -t rsa -f /some/secure/location
  31. In the above, `/some/secure/location` should be a path that is only readable by the bubble-flexrouter system service.
  32. When this step is done, `/some/secure/location` should be the path to the SSH private key and
  33. `/some/secure/location.pub` should be the path to the SSH public key.
  34. ## Create an auth token file
  35. bubble-flexrouter uses an auth token to secure its connection to a Bubble.
  36. During installation, write a random token to a file. This token must be at least 50 characters long.
  37. After writing the file, ensure that it is only readable by the bubble-flexrouter service.
  38. ## Install system service
  39. Install bubble-flexrouter as a system service (Windows Service or Mac OS launch daemon) during Bubble app installation.
  40. It should always be running. Set it to run at system startup.
  41. The user that bubble-flexrouter runs as must have sufficient privileges to add and remove IP routes from the
  42. system routing table. This usually means Administrator (on Windows) or root (on Mac OS).
  43. The service requires some environment variables to be set:
  44. * `BUBBLE_FR_SSH_KEY` - full path to the *private* SSH key
  45. * `BUBBLE_FR_PASS` - full path to the bcrypted password file
  46. * `BUBBLE_FR_TOKEN` - full path to the auth token file
  47. Run the service with these environment variables set.
  48. ## Uncommon configuration
  49. By default bubble-flexrouter will listen on 127.0.0.1 on ports 9823 and 9833.
  50. If these ports are unavailable, you can change them with command line arguments to bubble-flexrouter.
  51. Run `bubble-flexrouter --help` to see the full list of command line options. Usually you will not need to set any arguments.
  52. # Registering
  53. When a user successfully logs in to a Bubble node, the API response will include a session token. Use this token
  54. and the bubble-flexrouter password to register the flexrouter with the Bubble.
  55. To register the flexrouter with the Bubble, send a registration request to the admin port, listening on 127.0.0.1:9833
  56. This request must include the request header `Content-Type: application/json`
  57. POST http://127.0.0.1:9833/register
  58. {
  59. "password": "<password>",
  60. "session": "<session-token>",
  61. "bubble": "<bubble-hostname>",
  62. "ip": "<client-vpn-ip>"
  63. }
  64. Where:
  65. * `<password>` is the bubble-flexrouter password that was generated during installation
  66. * `<session-token>` is the session token returned when the used logged in (usually from the `auth/login` API call)
  67. * `<bubble-hostname>` is the hostname of the Bubble that the app has connected to
  68. * `<client-vpn-ip>` is the VPN IP address that was assigned to the device (usually starts with `10.19.`)
  69. A successful registration request will return HTTP status 200. Any other response indicates a failure, and the response
  70. body will contain a plaintext string with an error message.
  71. An example using curl:
  72. curl -H 'Content-Type: application/json' \
  73. -d '{"password":"Uy6dDwNP5msid3P6QEpeVmQMuUiAda","session":"47cc4974-2eca-47d8-8c74-c2cc106b9ba8","bubble":"nexus-dr66b-wn85d-ux27e.bubv.net","ip":"10.19.49.12"}' \
  74. http://127.0.0.1:9833/register
  75. # Unregistering
  76. When a user logs out of a Bubble node, unregister the flexrouter by sending a request to the admin port.
  77. This request must include the request header `Content-Type: application/json`
  78. POST http://127.0.0.1:9833/unregister
  79. {
  80. "password": "<password>"
  81. }
  82. Where:
  83. * `<password>` is the bubble-flexrouter password that was generated during installation
  84. A successful unregister request will return HTTP status 200. Any other response indicates a failure, and the response
  85. body will contain a plaintext string with an error message.
  86. An example using curl:
  87. curl -H 'Content-Type: application/json' \
  88. -d '{"password":"Uy6dDwNP5msid3P6QEpeVmQMuUiAda"}' \
  89. http://127.0.0.1:9833/unregister
  90. # Uninstallation
  91. If the Bubble app is uninstalled from the system, then also:
  92. * Stop and remove the system service
  93. * Remove the bcrypted password file
  94. * Remove both files of the SSH key pair
  95. * Remove the auth token file