mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
[GH-ISSUE #296] mipsle版frpc可能有些问题 #218
Labels
No labels
In Progress
WIP
WaitingForInfo
bug
doc
duplicate
easy
enhancement
future
help wanted
invalid
lifecycle/stale
need-issue-template
need-usage-help
no plan
proposal
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/frp#218
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hongnod on GitHub (Apr 11, 2017).
Original GitHub issue: https://github.com/fatedier/frp/issues/296
同样的配置文件在Windows下没有问题,但在路由器上怎么都不成,因此猜测mipsle版可能有问题,不知道有没有成功的。
frpc.ini
[common]
server_addr = x.x.x.x
server_port = 7000
auth_token = test
[ssh]
type = tcp
local_ip = 192.168.1.12
local_port = 22
./frpc_linux_mipsle -c ./frpc.ini
2017/04/11 15:37:50 [main.go:109] [I] Start frpc success
2017/04/11 15:37:50 [control.go:151] [E] ProxyName [ssh], connect to server [x.x.x.x:7000] error, dial tcp x.x.x.x:7000: errno -89
2017/04/11 15:37:50 [control.go:39] [E] ProxyName [ssh], connect to server failed!
2017/04/11 15:37:50 [main.go:112] [W] All proxy exit!
@hongnod commented on GitHub (Apr 12, 2017):
难道又是uclib的问题?rootfs中有ld-uClibc-0.9.33.2.so。errno -89 是否就是0x59,对应EDESTADDRREQ,解释为:不处于连接模式,没有指定对端地址(Destination address required)。
golang的sys call 与uclibc调用接口问题吗?
@fatedier commented on GitHub (Apr 12, 2017):
Go 对于 mipsle 目前支持也不是很好,如果有兴趣你可以继续跟下去。
@hongnod commented on GitHub (Apr 12, 2017):
虽然很有兴趣,然能力有限,非常感谢您做的frp。
@hongnod commented on GitHub (Apr 12, 2017):
zerrors_linux_mipsle.go :ENOSYS = Errno(0x59) , EDESTADDRREQ = Errno(0x60)
zerrors_linux_amd64.go :EDESTADDRREQ = Errno(0x59)
zerrors_linux_arm.go: EDESTADDRREQ = Errno(0x59)
zerrors_linux_386.go: EDESTADDRREQ = Errno(0x59)
zerrors_linux_mips64.go:EDESTADDRREQ = Errno(0x60)
zerrors_linux_mips64le.go:EDESTADDRREQ = Errno(0x60)
zerrors_linux_mips.go: EDESTADDRREQ = Errno(0x60)
@marspage commented on GitHub (Sep 24, 2017):
mipsle, BCM 4706, Netgear R6300 V1, frpc v0.13.0前来报道:connect to server failed
@zhagoonet commented on GitHub (Dec 16, 2017):
mipsle,mtk sdk4300: mipsel-linux-uclibc-gcc-3.4.2 异常
[W] [control.go:121] login to server failed: lookup x.x.x.x on 192.168.30.1:53: dial udp 192.168.30.1:53: errno -89
lookup x.x.x.x on 192.168.30.1:53: dial udp 192.168.30.1:53: errno -89
mipsle,mtkop -v3.3: mipsel_24kec+dsp_gcc-4.8-linaro_uClibc-0.9.33.2
同样配置使用正常。