- 🚀 Fast & Lightweight - Built with Rust for optimal performance
- 🔒 Secure - Encrypted connections with authentication support
- 🔌 Plugin System - Extensible architecture with dynamic plugin loading
- 🌐 Multiple Servers - Support for various tunnel server types
- 📦 Easy Installation - Single binary with no dependencies
We are currently working on publishing to crates.io. Please check back later.
# for Linux x86_64
wget https://github.com/Strawberry-Foundations/tunneled/releases/latest/download/tunneled-x86_64 -O tunneled
# for Linux aarch64
wget https://github.com/Strawberry-Foundations/tunneled/releases/latest/download/tunneled-aarch64 -O tunneled
chmod +x tunneled
# Create a tunnel for local port 3000
tunneled local 3000
# Specify remote server
tunneled local 8080 --use exampleserver.org
# Use authentication
tunneled auth
tunneled local 3000 --auth
# Start a tunnel server
tunneled server --min-port 5000 --max-port 6000
For more options, run:
tunneled help
Server | Type | Authentication | Cost | Status |
---|---|---|---|---|
strawberryfoundations.org | Public-Auth | ✅ Required | Free | 🟢 Active |
- Public: No authentication required, open access
- Public-Auth: Free but requires account registration
- Private-Auth: Paid service with account authentication
- Private: Password-protected, not for public use
Tunneled supports a powerful plugin system for extending functionality:
# List available plugins
tunneled plugin list
# Run a plugin
tunneled plugin example-plugin test
Plugins can be used to add new tunnel servers, authentication methods, or other features.
Add plugins by copying them to the plugins directory:
cp /path/to/plugin.so ~/.config/tunneled/plugins/
Configuration files are stored in:
- Linux/macOS:
~/.config/tunneled/
- Windows:
%APPDATA%\tunneled\
We welcome contributions! Please see our Contributing Guide for details (they dont exist yet 💀)
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the GPL-3.0 License - see the LICENSE file for details.
Special thanks to:
-
This project would not be possible without your foundational work. Tunneled builds upon and extends bore's excellent architecture, originally licensed under the MIT license.
Made with ❤️ and Rust