chisel配置systemd和客户端配置方法 发表于 2023-12-19 更新于 2024-09-20 分类于 技术文章 chisel 服务段 123456789[Unit]Description=Chisel[Service]ExecStart=/home/witt/.local/chisel/chisel server --auth "user:password" --port 5000 --reverserestart=on-failure[Install]WantedBy=default.target chisel 客户端 1234# 将blog.163.com:80端口转发本地8081端口chisel client --auth "user:password" http://server:5000 0.0.0.0:8081:blog.163.com:80# 将blog.163.com:80端口转发服务器8081端口chisel client --auth "user:password" http://server:5000 R:8081:blog.163.com:80