on
Frp install on Raspberry Pi Zero
Github:https://github.com/fatedier/frp
wget https://github.com/fatedier/frp/relea...
sudo tar -zxvf frp_XXXXX.tar.gz
cd frp_XXXXX
// frps.ini configuration
[common]
bind_port = 7000
vhost_http_port = 54321
vhost_https_port = 54322
token = XXXXXX
// frpc.ini configuration
[common]
server_addr = 1582.getmemap.com
server_port = 7000
token = XXXXXX
[web]
type = http
local_ip = 127.0.0.1
local_port = 80
remote_port = 54321
custom_domains = 1582.getmemap.com
[https]
type = https
local_ip = 127.0.0.1
local_port = 443
remote_port = 54322
custom_domains = 1582.getmemap.com
[RDP]
type = tcp
local_ip = 127.0.0.1
local_port = 3389
remote_port = 7500
custom_domains = 1582.getmemap.com
// Start Frps on Raspberry pi
// one time start
./frps -c ./frps.ini
// auto start
sudo nano /etc/rc.local
nohup /home/pi/Frp/frps -c /home/pi/Frp/frps.ini &
// Start Frpc on Windows
// one time start
./frpc -c ./frpc.ini
// auto start
nohup ./frpc -c ./frpc.ini &
================================================================================
End