qokelate / frpc-ios

A frp client framework for ios, connect ios ssh via public network, useful for jailbreak device/iOS越狱设备端口穿透(SSH,VNC等).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Frp Client Framework for iOS

README | 中文文档

What is frp?

frp is a fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. As of now, it supports tcp & udp, as well as http and https protocols, where requests can be forwarded to internal services by domain name.

quote: https://github.com/fatedier/frp

What is Frp Client Framework?

Connect to frp server, shoul connect to iOS device like ddns(vnc/ssh/etc...).

How to use?

API:
// arg1: config path
// arg2: frp salt(default frp)
extern void FrpClientFrpc_main(NSString* cfgFile, NSString* salt);

// e.g.:
FrpClientFrpc_main(@"app/config.ini", @"frp");
config.ini(nat to ssh)
# frpc.ini
[common]
server_addr = x.x.x.x(server ip)
server_port = 7000(server port)

[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 6000(remote ssh port)

use ssh root@x.x.x.x -p 6000 to connect.

Donation

Alipay

Alipay

WeChat

WeChat

About

A frp client framework for ios, connect ios ssh via public network, useful for jailbreak device/iOS越狱设备端口穿透(SSH,VNC等).


Languages

Language:Objective-C 100.0%