1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

chisel: rephrase descriptions for clarity (#3601)

This commit is contained in:
Waldir Pimenta 2019-11-22 15:06:04 +00:00 committed by Starbeamrainbowlabs
parent 93420c3529
commit 6463f50a18

View file

@ -1,28 +1,28 @@
# chisel # chisel
> Chisel is a tool creating a TCP tunnel. Including both client and server. > Create TCP tunnels. Includes both client and server.
> More information: <https://github.com/jpillora/chisel>. > More information: <https://github.com/jpillora/chisel>.
- Run a chisel server: - Run a Chisel server:
`chisel server` `chisel server`
- Run a chisel server listening to a specific port: - Run a Chisel server listening to a specific port:
`chisel server -p {{server_port}}` `chisel server -p {{server_port}}`
- Run a chisel server securing the connection using a username and password authentication: - Run a chisel server that accepts authenticated connections using username and password:
`chisel server --auth {{username}}:{{password}}` `chisel server --auth {{username}}:{{password}}`
- Connect to a chisel server and tunnel a specific port to a remote server and port: - Connect to a Chisel server and tunnel a specific port to a remote server and port:
`chisel client {{server_ip}}:{{server_port}} {{local_port}}:{{remote_server}}:{{remote_port}}` `chisel client {{server_ip}}:{{server_port}} {{local_port}}:{{remote_server}}:{{remote_port}}`
- Connect to a chisel server and tunnel a specific host and port to a remote server and port: - Connect to a Chisel server and tunnel a specific host and port to a remote server and port:
`chisel client {{server_ip}}:{{server_port}} {{local_host}}:{{local_port}}:{{remote_server}}:{{remote_port}}` `chisel client {{server_ip}}:{{server_port}} {{local_host}}:{{local_port}}:{{remote_server}}:{{remote_port}}`
- Connect to a chisel server using username and password authentication: - Connect to a Chisel server using username and password authentication:
`chisel client --auth {{username}}:{{password}} {{server_ip}}:{{server_port}} {{local_port}}:{{remote_server}}:{{remote_port}}` `chisel client --auth {{username}}:{{password}} {{server_ip}}:{{server_port}} {{local_port}}:{{remote_server}}:{{remote_port}}`