frp内网穿透神器

    network

  1. 为什么使用内网穿透
  2. 环境
  3. 安装步骤

为什么使用内网穿透

很多场景在调用第三方API的时候需要填写回调地址,如果在内网开发的话就需要做内网穿透。今天给大家介绍一款内网穿透工具frp,使用起来既简单又方便。

环境

name Version
centos 7.3

安装步骤

  1. 下载压缩包
  2. 解压
    1
    tar -zxvf frp_0.14.0_linux_amd64.tar.gz
  3. 配置相关参数实现通过ssh访问公司内网机器
  • server端配置
    1
    2
    3
    4
    5
    vi frps.ini

    [common]
    bind_port = 7000
    vhost_http_port = 8079
  • client端配置 (xx.xx.xx.xx为外网可访问的IP)
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    vi frpc.ini

    [common]
    server_addr = xx.xx.xx.xx
    server_port = 7000

    [ssh]
    local_port = 22
    remote_port = 6000

    [web]
    type = http
    local_port = 8079
    custom_domains = xx.xx.xx.xx
  1. 启动相关服务
  • start server

    1
    ./frps -c ./frps.ini
  • start client

    1
    ./frpc -c ./frpc.ini
  1. 验证(通过ssh访问内网机器,假设用户名为test)
    1
    ssh -oPort=6000 test@xx.xx.xx.xx
page PV:  ・  site PV:  ・  site UV: