mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
[GH-ISSUE #4774] virtual_net: (0.62.1) visitors connection not working #3767
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#3767
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 @manprint on GitHub (Apr 28, 2025).
Original GitHub issue: https://github.com/fatedier/frp/issues/4774
Bug Description
Hi @fatedier
I am testing the virtual network in the new release 0.62.1.
Client side (target machine), the interface utun0 (100.85.0.1) is allocated correctly and I am able to ping the interface itself: ping 100.85.0.1 -> OK
Visitor side (my laptop), the interface utun0 is allocated but the client is not reachable; ping 100.85.0.1 not working -> KO. Also, pinging the interface itself does not work either: ping 100.85.0.2 -> KO
frpc Version
0.62.1
frps Version
0.62.1
System Architecture
linux/amd64
Configurations
client:
serverAddr = "mydomain.net"
serverPort = 7835
user = "admin"
metadatas.token = "zzzzz"
transport.protocol = "tcp"
transport.tls.enable = false
featureGates = { VirtualNet = true }
virtualNet.address = "100.85.0.1/24"
proxies
name = "client-vnet-test"
type = "stcp"
secretKey = "zzzzzzz"
[proxies.plugin]
type = "virtual_net"
visitors:
serverAddr = "mydomain.net"
serverPort = 7835
user = "admin"
metadatas.token = "zzzzz"
transport.protocol = "tcp"
transport.tls.enable = false
featureGates = { VirtualNet = true }
virtualNet.address = "100.85.0.2/24"
visitors
name = "visitors-vnet-test"
type = "stcp"
serverName = "client-vnet-test"
secretKey = "zzzzzzz"
bindPort = -1
[visitors.plugin]
type = "virtual_net"
destinationIP = "100.85.0.1"
Logs
No errors in log.
Steps to reproduce
...
Affected area
@manprint commented on GitHub (Apr 29, 2025):
I restarted the laptop.
After restart, the connection works!