mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
[GH-ISSUE #4234] 'localAddr' of https2http seems not working. #3335
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#3335
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 @playercatboy on GitHub (May 23, 2024).
Original GitHub issue: https://github.com/fatedier/frp/issues/4234
Bug Description
When using
frpcandfrpsversion 0.58.0, usinghttps2httpplugin to proxy LAN HTTP service to Internet, frpc seems not working.The output log shows it dials TCP
127.0.0.1:0instead of127.0.0.1:3000, which is abnormal.I checked
netstat -lntp, shows the following output:Which indicates the TCP port 3000 is open.
frpc Version
0.58.0
frps Version
0.58.0
System Architecture
linux/arm64
Configurations
frps.toml
frpc.toml
Logs
Steps to reproduce
*.domain.extA record to IP Addressxxx.xxx.xxx.xxx.frps -c frps.tomlfrpc -c frpc.tomlhttps://git.domain.ext:8443...
Affected area
@fatedier commented on GitHub (May 23, 2024):
https://github.com/fatedier/frp?tab=readme-ov-file#client-plugins
参考文档,声明 plugin 类型是 type ,不是 name,下个版本这样的配置会直接报错而不是允许运行。
@playercatboy commented on GitHub (May 23, 2024):
Thanks a lot!