mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
[GH-ISSUE #2115] Game Server cant be Pinged or reached (error: dial tcp ip:port: connect: connection refused) #1680
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#1680
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 @ghost on GitHub (Nov 26, 2020).
Original GitHub issue: https://github.com/fatedier/frp/issues/2115
[REQUIRED] hat version of frp are you using
Version: v0.34.3
[REQUIRED] What operating system and processor architecture are you using
OS: Ubuntu 20.04.1 LTS
CPU architecture: Home Server: AMD Ryzen 3400G(arm64) / VPS Server Intel(R) Xeon(R) CPU E5-2620 v3(arm64)
[REQUIRED] description of errors
When Server and client are perfectly fine connected and a ping is beeing sent to the Minecraft Server (by clicking refresh) the Proxy gets a Connection refused Error
[proxy.go:793] [5f58084e5a63e00b] [Minecraft] connect to local service [127.0.0.1:25566] error: dial tcp 127.0.0.1:25566: connect: connection refused
confile
[Minecraft]
type = tcp
local_port = 25566
remote_port = 25566
log file
https://pastebin.com/8TAUbrs7
Steps to reproduce the issue
Supplementary information
Can you guess what caused this issue
No
Checklist:
@fatedier commented on GitHub (Nov 27, 2020):
Run
netstat -antp|grep 25566to see if your local service listen on this port?@ghost commented on GitHub (Nov 27, 2020):
I am sure that the service is running because im able to connect to the server locally over lan
i used a normal reverse shell before but wanted to simplefy things with a proxy
the reverse shell is still working properly and i can acess the minecraft server over my vps public ip adress
but when i try to use the proxy instead it always ends in the same error
@fatedier commented on GitHub (Nov 27, 2020):
Can you just paste the outputs of cmd i write above?
@ghost commented on GitHub (Nov 27, 2020):
Heres the Line u requested
netstat -antp|grep 25566
tcp 0 0 192.168.0.51:25566 0.0.0.0:* LISTEN 1979/docker-proxy
maybe it is useful when i also tell u that the minecraft server is running over the website pterodactyl that creates docker containers
@Becods commented on GitHub (Nov 28, 2020):
Your listening address is 192.168.0.51, so have you configured it correctly in the frpc.ini file?
@ghost commented on GitHub (Nov 28, 2020):
Oh, I fixed it!
It was really just setting additional value local_ip = 192.168.0.51 and it worked.
I fell really stupid.... but thanks so much for the help