mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 16:15:49 -06:00
[GH-ISSUE #4641] Frp 安装正常启动,在别的电脑上都可以,但是在甲骨文不能访问 #3664
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#3664
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 @gangz1204 on GitHub (Jan 16, 2025).
Original GitHub issue: https://github.com/fatedier/frp/issues/4641
Bug Description
这个真的是无语了,求教大神帮忙。
我用docker安装的frps(在另外一台vps上能够完全正常使用,朋友的腾讯云vps),然后把相应的配置文件放到甲骨文vps上。启动显示正常,如图所示。但是无法通过公网访问对应的7500端口。我全部端口都是放开访问的,比如其他任何软件的端口都能正常。比如我另外一个软件开了8004端口,把frp的对应7500修改成8004后也不能访问。
然后我做了另外的尝试,就是在相同vps上安装了frpc,将对应的配置的IP地址设置成127.0.0.1。神奇的是连接上了。如图中后面3行那样。而且如果我用自己VPN局域网也能显示正常。但是就是公网不能连接。不知道哪里出了问题。不知道是否还需要别的补充。
frpc Version
最新的snowdreamtech/frps容器
frps Version
最新的snowdreamtech/frpc容器
System Architecture
linux/amd64
Configurations
Logs
No response
Steps to reproduce
...
Affected area
@gangz1204 commented on GitHub (Jan 16, 2025):
这是我frps.toml的配置文件。
另外,没有用docker安装,直接安装软件查看日志也是这样。确实不知道是哪里的问题了。
防火墙问题吧:其他软件用相同端口可以打开。
frps问题吧:用局域网127.0.0.1或者vpn连接后的小局域网都能够访问。
就是不能转公网。
@github-actions[bot] commented on GitHub (Jan 31, 2025):
Issues go stale after 14d of inactivity. Stale issues rot after an additional 3d of inactivity and eventually close.
@vincent067 commented on GitHub (Mar 23, 2026):
Hi @xqzr 👋
Thanks for reporting this issue! Let me help clarify the multiplexer configuration.
The error you're seeing usually happens when there's a mismatch between the client and server multiplexer settings. Here are a few things to check:
Version consistency: Make sure both your frpc and frps are running the same version (v0.61.0 in your case)
Transport protocol: The multiplexer is tied to the transport protocol. Try explicitly setting:
Check for protocol mismatch: If your server is using
transport.protocol = "quic"or"kcp", the tcp multiplexer won't work.Could you share:
frps --versionandfrpc --versionThis will help us pinpoint the exact cause! 😊
Also, you might want to try disabling tcpMux temporarily to see if the connection works without it:
Let me know what you find!