KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
thru
★ 9
Open GitHub ↗
A QUIC tunnel for TCP/UDP
Download README (.md)
Explore Similar Repositories
nfc-final
:
No description available.
bm4duo
:
No description available.
extend-flet-example
:
Integrating existing Flutter packages into Flet app example
Music-system
:
No description available.
websocket
:
Tesla Telemetry to Websocket
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
thru
?
Download (.md)
# Thru A QUIC tunnel for TCP/UDP. ## Install `cargo install thru` ## Example usage TCP through QUIC. ### Server endpoint Forward QUIC traffic to tcpbin echo server. ```shell thru -t quic://0.0.0.0:4242==tcp://tcpbin.com:4242 --cert certchain.pem --key key.pem ``` ### Client endpoint Forward TCP tranffic to QUIC tunnel. ```shell thru -t tcp://127.0.0.1:4242==quic://example.com:4242 --peer-cert root.pem ``` ### Echo client ```shell nc 127.0.0.1 4242 ``` ## TLS certificate On the client side, `--peer-cert` is for the client to specify the server's root certificate. It's only needed for self-signed certificates and if it hasn't been installed on the system keystore.