From 37fd4f24043768190af80307030897d7429e116e Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 8 Jun 2018 03:01:59 -0600 Subject: [PATCH] document commands --- README.md | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 66 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8a63103..096a72c 100644 --- a/README.md +++ b/README.md @@ -127,11 +127,74 @@ Windows & Node.js There is [a bug](https://github.com/nodejs/node/issues/20241) in node v9.x that causes telebit to crash. -Usage -==== +Remote Usage +============ + +``` +# commands +telebit + +# domain and port control +telebit [servername] [options ...] +``` + +Examples: + +``` +telebit status # whether enabled or disabled +telebit enable # disallow incoming connections +telebit disable # allow incoming connections +telebit restart # kill daemon and allow system launcher to restart it + +telebit list # list rules for servernames and ports + + ################ + # HTTP # + ################ + +telebit http [servername] [opts] + +telebit http none # remove all https handlers +telebit http 3000 # forward all https traffic to port 3000 +telebit http /module/path # load a node module to handle all https traffic + +telebit http none example.com # remove https handler from example.com +telebit http 3001 example.com # forward https traffic for example.com to port 3001 +telebit http /module/path example.com # forward https traffic for example.com to port 3001 + + + ################ + # TCP # + ################ + +telebit tcp [servername] [opts] + +telebit tcp none # remove all tcp handlers +telebit tcp 5050 # forward all tcp to port 5050 +telebit tcp /module/path # handle all tcp with a node module + +telebit tcp none 6565 # remove tcp handler from external port 6565 +telebit tcp 5050 6565 # forward external port 6565 to local 5050 +telebit tcp /module/path 6565 # handle external port 6565 with a node module +``` + +### Using SSH + +SSH over HTTPS +``` +ssh -o ProxyCommand='openssl s_client -connect %h:443 -quiet' slippery-bobcat-39.telebit.cloud +``` + +SSH over non-standard port +``` +ssh slippery-bobcat-39.telebit.cloud -p 3031 +``` + +Daemon Usage +============ ```bash -telebit --config /opt/telebit/etc/telebit.yml +telebit daemon --config /opt/telebit/etc/telebit.yml ``` Options