Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/viordash/tutodatatunnel
Network proxy for user data pipelined via SignalR
https://github.com/viordash/tutodatatunnel
connback net7 reverse-proxy reverse-tunnel signalr
Last synced: about 2 months ago
JSON representation
Network proxy for user data pipelined via SignalR
- Host: GitHub
- URL: https://github.com/viordash/tutodatatunnel
- Owner: viordash
- License: gpl-3.0
- Created: 2022-04-14T19:58:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-21T14:10:27.000Z (6 months ago)
- Last Synced: 2024-10-11T19:45:12.042Z (2 months ago)
- Topics: connback, net7, reverse-proxy, reverse-tunnel, signalr
- Language: C#
- Homepage:
- Size: 1.88 MB
- Stars: 21
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TuToDataTunnel
[![.NET](https://github.com/viordash/TuToDataTunnel/actions/workflows/dotnet.yml/badge.svg?branch=main)](https://github.com/viordash/TuToDataTunnel/actions/workflows/dotnet.yml)
## Reverse websocket/http data tunnel on .NET7 + SignalR.![Demo preview](./article/tutoproxy.png)
### Applications
The [TutoProxy.Server](https://github.com/viordash/TuToDataTunnel/tree/main/Projects/TutoProxy/TutoProxy.Server) application is an inbound server for tunneling clients and for tcp/udp end-clients.
cmd arguments:
- \, server address, for example http://200.100.10.1:8088
- **--tcp** \, list of tcp ports to listen to, for example --tcp=80,81,443,8000-8100. Optional, if --udp option is present.
- **--udp** \, list of udp ports to listen to, for example --udp=700-900,65500. Optional, if --tcp option is present.
- **--clients** \ optional list of allowed clients, e.g. --clients=Client1,Client2 if this parameter is omitted, then there is no check for connecting client ID
- **--daemon** optional, disable the terminal GUIFor example, start input traffic tunneling on 50 tcp/udp ports to 3 clients:
TutoProxy.Server http://200.100.10.1:8088 --tcp=3389,8071-8073,10000-10010,20000-20010 --udp=5000-5010,7000-7010 --clients=Client0Linux,ClientSecLinux,Client3Win
----------------------------------
The [TutoProxy.Client](https://github.com/viordash/TuToDataTunnel/tree/main/Projects/TutoProxy/TutoProxy.Client) is an output tunneling client.
cmd arguments:
- \, TutoProxy.Server server address, for example http://200.100.10.1:8088
- \, the IP of the recipient of the data, for example 127.0.0.1
- **--id** \, client ID, for example --id=Client1
- **--tcp** \, list of tcp ports, for example --tcp=80,81,443,8000-8100. Optional, if --udp option is present.
- **--udp** \, list of udp ports, for example --udp=700-900,65500. Optional, if --tcp option is present.
- **--daemon** optional, disable the terminal GUIFor example, start output traffic tunneling on 5 tcp and 3 udp ports:
TutoProxy.Client http://200.100.10.1:8088 127.0.0.1 --tcp=8071,10000,20004-20006 --udp=7000-7002 --id=Client0Linux
*Keep in mind that ports of different TutoProxy.Clients should not overlap, i.e. each client serves a unique set of sockets/ports.*