FastTunnel.Core 3.0.0-Beta.2.22705

This is a prerelease version of FastTunnel.Core.
dotnet add package FastTunnel.Core --version 3.0.0-Beta.2.22705
NuGet\Install-Package FastTunnel.Core -Version 3.0.0-Beta.2.22705
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FastTunnel.Core" Version="3.0.0-Beta.2.22705" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FastTunnel.Core --version 3.0.0-Beta.2.22705
#r "nuget: FastTunnel.Core, 3.0.0-Beta.2.22705"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FastTunnel.Core as a Cake Addin
#addin nuget:?package=FastTunnel.Core&version=3.0.0-Beta.2.22705&prerelease

// Install FastTunnel.Core as a Cake Tool
#tool nuget:?package=FastTunnel.Core&version=3.0.0-Beta.2.22705&prerelease

<div align="center">

<img src="images/logo.png" width="150" align=center />

FastTunnel

License Build status Nuget Nuget

README | 中文文档

This project supports any commercial and secondary development activities, but seriously despises plagiarizing and copying the code, implementation scheme or architecture of this project and repackaging them into their own open source works.

</div>

What is FastTunnel?

  • FastTunnel is a high-performance cross-platform intranet penetration tool. With it, you can expose intranet services to the public network for yourself or anyone to access.
  • Unlike other penetration tools, the FastTunnel project is committed to creating an easy-to-extensible and easy-to-maintain intranet penetration framework.
  • You can build your own penetration application by referencing the nuget package of FastTunnel.Core, and target the business extension functions you need.

Official website : https://suidao.io

The penetration platform developed based on this framework, if you need intranet penetration, you can register and use it directly, eliminating the cost of building and maintaining yourself. But do not use this service for important items.

OpenSource:

GitHub : FastTunnel
Gitee: FastTunnel

If helpful, click on ⭐Star to support this project, please submit an issue if you have needs and bugs, and welcome coder to PR

Get GVP

img1


What can FastTunel do?

  • Remote intranet computer Windows/Linux/Mac
  • Use a custom domain name to access intranet web services (usually used for WeChat development)
  • Port forwarding/port mapping, access services provided by any port on the intranet mysql, redis, ftp, etc.
  • p2p penetration
  • Support binding multiple domain names to access intranet services
  • Support domain name whitelist restriction
  • Support client identity verification

Quickstart

  1. Download the corresponding program on the releases page
  2. Modify the client and server configuration files according to your needsappsettings.json
  3. Run FastTunnel.Server
  4. Run FastTunnel.Cient

Install FastTunel.Sever using Docker Engine

Configuration files and log files are mounted through volume. If this image has been run before, docker may not update to the latest image. Please delete the existing image manually, and then execute the following command

docker run --detach \
  --publish 1270:1270 --publish 1271:1271 \
  --name FastTunnel \
  --restart always \
  --volume /var/FastTunnel/config:/app/config \
  --volume /var/FastTunnel/Logs:/app/Logs \
  springhgui/fasttunnel:latest

Run on Linux/Mac os?

Windows

Double click directly FastTunnel.Client.exe to run

Linux

chmod +x FastTunnel.Client
./FastTunnel.Client

Mac

click directly FastTunnel.Client to run

Configuration example

1. Use a custom domain name to access intranet web services

  • For example, you have a server with a public IP address of 110.110.110.110, and you have a domain name with a top-level domain name of abc.com, you want to visit a website on the intranet by visiting test.abc.com

  • You need to add a DNS resolution for the domain name address, the type is A, the name is *, and the ipv4 address is 110.110.110.110, so that all domain names of *.abc.com will point to 110.110.110.110’s server, because the default http port of FastTunnel is 1270, so you need to visithttp://test.abc.com:1270

  • If you don't want to bring the port number every time you visit, you can use nginx forwarding.
http {
    # add resolver 
    resolver 8.8.8.8;

    # set *.abc.com to 1270 port
    server {
      server_name  *.abc.com;
      location / {
         proxy_pass http://$host:1270;
         proxy_set_header   Host             $host;
         proxy_set_header   X-Real-IP        $remote_addr;
         proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
      }

      # 可选
      error_log /var/log/nginx/error_ft.log error;
    }
}
  • If the domain name configured on the server is ft.suidao.io, then access the local site through the subdomain name test.ft.suidao.io:1270, the IIS configuration is as follows: img1

2. Remote intranet computer Windows/Linux/Mac

The client configuration is as follows, there are two hosts in the intranet, and the ip is as follows: appsettings.json

 "ClientSettings": {
    "Common": {
      "ServerAddr": "xxx.xxx.xxx.xxx",
      "ServerPort": 1271
    },
    "SSH": [
      {
        "LocalIp": "192.168.0.100", // linux pc
        "LocalPort": 22,            // ssh default port
        "RemotePort": 12701
      },
      {
        "LocalIp": "192.168.0.101", // windows pc
        "LocalPort": 3389,          // windows default port for Remote
        "RemotePort": 12702
      }
    ]
  }
remote intranet linux host by ssh (ip:192.168.0.100)

Assuming that the user name of the intranet host is root, the server ip is x.x.x.x, and the two hosts that access the intranet are as follows

ssh -oPort=12701 root@x.x.x.x
remote desktop Windows host by mstsc (ip:192.168.0.101)
Controlled terminal setting
  • Open cmd and enter the command sysdm.cpl in the pop-up dialog box and select Allow remote connection to this computer

img1

Control terminal settings
  • Open cmd and enter the command mstsc, open the remote dialog box, enter x.x.x.x:12701 in the computer input box of the dialog box, and then specify the user name and password to remote the windows host of the intranet img1

Development/PR

  • install vs2019 last version
  • install .net5 or higher https://dotnet.microsoft.com/download/dotnet/5.0
  • add test.test.cc 127.0.0.1 in system host file
  • run fasttunnel.server
  • run fasttunnel.client

contributors

<a href = "https://github.com/FastTunnel/FastTunnel/graphs/contributors"> <img src = "https://contrib.rocks/image?repo=FastTunnel/FastTunnel"/> </a>

Join QQ Group

<div align="center"><img src="images/qqgroup.png" width="150" align=center /></div>

License

Apache License 2.0

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on FastTunnel.Core:

Package Downloads
FastTunnel.Api

expose a local server behind a NAT or firewall to the internet like ngrok and frp

FastTunnel.Hosting

expose a local server behind a NAT or firewall to the internet like ngrok and frp

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0-Beta.2.22705 269 7/5/2022
3.0.0-Beta.1.22511 482 5/11/2022
2.1.2 1,280 12/3/2022
2.1.1 450 6/30/2022
2.1.0 343 4/25/2022
2.0.4 280 10/30/2021
2.0.3 251 10/29/2021
2.0.2 326 9/15/2021
2.0.1 297 8/18/2021
2.0.0 185 8/8/2021
1.1.3 216 7/8/2021
1.1.2 197 6/24/2021
1.1.1 273 6/18/2021
1.1.0 259 6/17/2021
1.0.24 525 5/19/2021
1.0.23 718 12/15/2020
1.0.22 720 11/4/2020
1.0.21 622 10/26/2020
1.0.2 611 9/29/2020
1.0.1 654 8/25/2020
1.0.0 660 7/1/2020