# direct-ssh-passthrough-nat **Repository Path**: PaperDragon/direct-ssh-passthrough-nat ## Basic Information - **Project Name**: direct-ssh-passthrough-nat - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2023-12-23 - **Last Updated**: 2025-04-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pass through NAT network ## Script Install ### get install scripts ```bash wget https://gitee.com/PaperDragon/direct-ssh-passthrough-nat/raw/master/frpc_linux_install.sh ``` ### run install script #### default ```bash chmod +x frpc_linux_install.sh ./frpc_linux_install.sh ``` #### no spy mode ```bash chmod +x frpc_linux_install.sh SPY_MODE=False ./frpc_linux_install.sh ``` ### env | Parameter | Description | Default Value | |----------------|---------------------------------------------------------|---------------------| | `FRPS_ADDRESS` | Address for frps. | `frp.geekery.cn` | | `FRPS_PORT` | Port for frps. | `7000` | | `SPY_MODE` | Spy mode. | `True` | ## Script Uninstall ### get uninstall script ```bash wget https://gitee.com/PaperDragon/direct-ssh-passthrough-nat/raw/master/frpc_linux_uninstall.sh ``` ### run uninstall script #### default mode ```bash chmod +x frpc_linux_uninstall.sh ./frpc_linux_uninstall.sh ``` #### no spy mode ```bash chmod +x frpc_linux_uninstall.sh SPY_MODE=False ./frpc_linux_uninstall.sh ``` ## Docker support ```bash docker run -itd --ipc=host \ --pid=host \ -v /:/host \ jockerdragon/frpc-ssh-passthrough:latest ```