# Gooverssh **Repository Path**: mirrors/Gooverssh ## Basic Information - **Project Name**: Gooverssh - **Description**: gooverssh 是基于gosshtool的一个ssh开发包开发的一个基于ssh本地端口转发服务小应用,可以方便突破一些网络限制,如通过ssh代理访问内网数据库服务 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/gooverssh - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-09-04 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gooverssh gooverssh - forwards over ssh. ## Installation ```bash go get github.com/scottkiss/gooverssh go build gooverssh.go ``` ## Usage ### edit config file config.toml ``` [ssh] local_bind_address = ":3306" ssh_server = "222.222.222.222" ssh_user = "root" ssh_password = "passwd" private_key_path = "" [remote] host = "111.111.111.111" port = "3306" ``` ### run gooverssh ``` ./gooverssh ``` then you connect to localhost:3306,the gooverssh will open an ssh tunne and forwards local port 3306 to 111.111.111.111:3306. ## License View the [LICENSE](https://github.com/scottkiss/gooverssh/blob/master/LICENSE) file