Forrest logo
back to context overview

chisel

List of commands for chisel:

  • chisel:tldr:19abe chisel: Run a Chisel server listening to a specific port.
    $ chisel server -p ${server_port}
    try on your machine
    explain this command
  • chisel:tldr:630e9 chisel: 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}
    try on your machine
    explain this command
  • chisel:tldr:71f3d chisel: Run a Chisel server.
    $ chisel server
    try on your machine
    explain this command
  • chisel:tldr:77d1c chisel: 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}
    try on your machine
    explain this command
  • chisel:tldr:797e8 chisel: 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}
    try on your machine
    explain this command
  • chisel:tldr:f1c30 chisel: Run a chisel server that accepts authenticated connections using username and password.
    $ chisel server --auth ${username}:${password}
    try on your machine
    explain this command
back to context overview