eosrift start
Start one or more named tunnels from tunnels: in config.
Usage
text
eosrift start [flags] [<tunnel> ...]Valid invocation patterns:
eosrift start <name> [<name> ...]eosrift start --all
Invalid:
eosrift start(no names and no--all)eosrift start --all web(--allwith names)
Flags
--server <addr>--authtoken <token>--all--inspect=<true|false>: default inspector setting for HTTP tunnels.--inspect-addr <host:port>: shared inspector listen address.--upstream-tls-skip-verify: disable cert verification for HTTPS upstreams (HTTP tunnels).--help,-h
Tunnel selection and validation
On startup, Eosrift:
- Loads config file.
- Resolves selected tunnel names (
--allor explicit names). - Validates each selected tunnel.
- Starts all requested tunnels and prints a combined session view.
Validation errors include the tunnel name and fail fast.
Examples
bash
eosrift start web
eosrift start web db
eosrift start --all
eosrift start --all --server https://eosrift.com
eosrift start --all --inspect=false
eosrift start --all --upstream-tls-skip-verifyInspector behavior with start
- One inspector server is started per process when at least one selected HTTP tunnel has inspector enabled.
- Per-tunnel
inspect: falsedisables capture for that tunnel.