chisel
TCP/UDP tunnel over HTTP secured via SSH
TLDR
Start server
SYNOPSIS
chisel server [options]
chisel client [options] server remote...
DESCRIPTION
chisel is a fast TCP/UDP tunnel transported over HTTP and secured via SSH. A single executable contains both client and server functionality. It uses WebSockets to multiplex connections, allowing multiple tunnels through a single HTTP connection.
The tool is useful for traversing firewalls, accessing services behind NAT, and creating reverse tunnels. It supports forward and reverse port forwarding as well as SOCKS5 proxy mode. Authentication can be configured with username/password pairs or an authentication file. Written in Go.
SERVER OPTIONS
--port port
Listening port (default: 8080)--host host
Listening interface--authfile file
User authentication file--auth user:pass
Single user authentication--reverse
Allow reverse tunneling--keepalive duration
Keepalive interval--tls-key / --tls-cert
TLS key and certificate
CLIENT OPTIONS
--auth user:pass
Authentication credentials--fingerprint hash
Server fingerprint for verification--keepalive duration
Keepalive interval
REMOTE SYNTAX
CAVEATS
Useful for bypassing firewalls. WebSocket support varies by PaaS provider. Install: curl https://i.jpillora.com/chisel! | bash
