网络隧道是通过任意数量的网络/网络节点在一对节点之间的虚拟双向点对点连接。
Cloudflare Tunnel:访问本地 HTTP API / 错误网关时“无法到达源服务”
我正在端口 8504 上运行本地 API 并尝试通过 Cloudflare Tunnel 公开它。当我从本地计算机直接使用curl访问API时,它工作正常: 卷曲“http://localhost:8504/q...
我正在尝试用 Rust 编写一个小程序来完成 ssh -L 5000:localhost:8080 的基本功能:在我的机器上的 localhost:5000 和远程机器上的 localhost:8080 之间建立一条隧道...
我正在尝试使用 socat 设置中继服务器。用户向客户端发送请求,然后客户端在输入上应用 rot13 并将其转发到服务器,服务器再次应用 rot13 进行解密,最后通过...
从react-native发送到Visual Studio Dev Tunnel的请求中删除了Cookie
我有一个与后端 .NET Web API 对话的反应本机应用程序。 我试图让 Android 模拟器能够调用在调试器中运行的 Web api 实例。 我尝试使用 ip 地址...
cloudflare 零信任隧道通过浏览器封装的 vnc 或 ssh 不起作用
我按照零信任-mac-浏览器和cloudflare官方文档来配置cloudflare隧道并将浏览器渲染设置为VNC,但我在浏览器上收到错误,控制台显示连接时失败:
以管理员身份在 Windows cmd 中运行“tmole 3000”后,我没有得到答案。我什么也没有得到,而是 tmole 图像。 我希望获得网址,但什么也没发生,甚至没有给出
我已经尝试了一周将本地应用程序连接到 CloudFoundry 服务上的远程rabbitMQ,但结果是: 连接=工厂.newConnection(); 总是抛出 IOException 因为 j...
我在 Ubuntu 计算机上使用代码 CLI 托管自己的 VS Code 服务器实例。网关已被指定一个自动生成的名称,但我想更改此名称,以便更方便
Cloudflare 隧道 + Apache + Moodle
我正在尝试在我的 Ubuntu 22.04 上安装 Moodle 4.2 stable。 由于我没有公共IP,我希望使用隧道以便其他人可以访问该网站。 请帮忙,谢谢。如果还有其他信息请告诉我...
运行文件浏览器的 Docker 容器的 UNRAID / Cloudflare 隧道出现错误 502 bad gateway
我是 cloudflare 隧道的新手,我现在正在尝试从任何地方访问家里的服务。 VPN 是没有选择的,因为我的互联网提供商给了我一个私人 IP 地址。 我知道如何设置...
在 iOS VPN 应用程序中使用 TunnelKit 时,iPhone 设置 -> VPN 已连接,但我无法访问互联网
问题:为了使用 TunnelKit 的隧道功能并访问互联网,我在实现过程中缺少什么? 我开始制作 VPN iOS 应用程序并决定使用 TunnelKit 库:...
我有两台 DNS 服务器 A 和 B(A 位于受控区域内,即使使用 DoH,DNS 请求也可能受到监控 - 要么 DoH 被阻止,要么 DoH 服务器本身也被监控),B 不在...
是否有任何解决方案/补丁可以使 nginx 与上游的袜子一起工作? 像这样的东西: 服务器 { 地点 / { proxy_passocks5://ip:端口/ } }
我试图了解什么是 TCP over file。 我尝试在谷歌上搜索它,但除了一个软件之外,我并没有真正找到答案。
serveo.net 在尝试隧道本地主机 Web api 时返回 502,前端框架 Angular
我的serveo.net 遇到问题。 我正在尝试检查我在应用程序中引入的一些社交媒体元标记是否可以正常工作,现在我不想在不确定的情况下完成 PR...
Sentry ReactJS:如何设置隧道来绕过广告拦截器?
我在 React 应用程序中设置了 Sentry 云,但它被广告拦截器拦截了(当关闭广告拦截器时,它会起作用)。 有人在 React 应用程序中成功设置了隧道吗?...
NGROK 请求错误:连接 ECONNREFUSED 127.0.0.1:4040
我在设置ngrok隧道时偶尔会遇到以下错误。关于如何解决它有什么想法吗? 请求错误:连接ECONNREFUSED 127.0.0.1:4040 应客户要求。 我在设置ngrok隧道时偶尔会遇到以下错误。有什么想法可以解决吗? RequestError: connect ECONNREFUSED 127.0.0.1:4040 at ClientRequest.<anonymous> (C:\Users\user\Downloads\Node\RequestLogger_Dev\node_modules\got\dist\source\core\index.js:970:111) at Object.onceWrapper (node:events:629:26) at ClientRequest.emit (node:events:526:35) at origin.emit (C:\Users\user\Downloads\Node\RequestLogger_Dev\node_modules\@szmarczak\http-timer\dist\source\index.js:43:20) at Socket.socketErrorListener (node:_http_client:495:9) at Socket.emit (node:events:514:28) at emitErrorNT (node:internal/streams/destroy:151:8) at emitErrorCloseNT (node:internal/streams/destroy:116:3) at process.processTicksAndRejections (node:internal/process/task_queues:82:21) at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1595:16) { code: 'ECONNREFUSED', timings: { start: 1702548022231, socket: 1702548022232, lookup: undefined, connect: undefined, secureConnect: undefined, upload: undefined, response: undefined, end: undefined, error: 1702548022233, abort: undefined, phases: { wait: 1, dns: undefined, tcp: undefined, tls: undefined, request: undefined, firstByte: undefined, download: undefined, total: 2 } } } 代码: // Asynchronous function to set up an ngrok tunnel async function setupNgrokTunnel() { try { // Connect to ngrok, providing the port, authentication token, and disabling TLS binding const url = await ngrok.connect({ addr: config.PORT, authtoken: config.AUTH_TOKEN, bind_tls: false }); // Log the public URL of the ngrok tunnel console.log('\nNgrok Tunnel URL:', url); // Update the server's endpoint in the configuration with the ngrok tunnel URL config.ENDPOINT = url; // Close the ngrok tunnel when the application exits process.on('SIGINT', async () => { await ngrok.disconnect(); console.log("close...........") process.exit(); }); } catch (err) { // Handle errors during ngrok tunnel setup and log the details console.error('\nError creating ngrok tunnel:', err); // Update the configuration with the error details config.ERROR = err; } } 也许检查一下是否有任何进程已经在后台运行 ngrok。
我有一台无法访问互联网的本地计算机和一台可以访问互联网的计算机。在我的本地网络中,我只能在通过 ssh 连接到其他两台计算机后才能连接到该计算机。 本地(123.123.123...
我在寻找如何正确编写 ngrok.yml 文件以使其使用 https 启动隧道时遇到一些问题。我目前所拥有的是以下内容: 隧道: 库存: 原型:...
是否可以使用 HTTP/2 CONNECT 或 HTTP/3 QUIC CONNECT 连接作为反向隧道,以便服务器端可以将 HTTP 请求多路复用通过隧道返回到连接发起者? 这个