{"id":32490208,"url":"https://github.com/debug-ing/zed","last_synced_at":"2026-07-07T03:31:30.430Z","repository":{"id":315809153,"uuid":"1048655866","full_name":"debug-ing/Zed","owner":"debug-ing","description":"Zed Tunnel ","archived":false,"fork":false,"pushed_at":"2025-09-20T21:05:06.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-20T22:14:52.099Z","etag":null,"topics":["go","kcp","kcp-tunneling","reverse-tunnel","reverse-tunneling","tcp","tcp-tunneling","tunnel","tunneling"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/debug-ing.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-01T20:01:30.000Z","updated_at":"2025-09-20T21:05:10.000Z","dependencies_parsed_at":"2025-09-20T22:14:58.559Z","dependency_job_id":"6e1f7b35-fde2-4689-baf7-e831be385dba","html_url":"https://github.com/debug-ing/Zed","commit_stats":null,"previous_names":["debug-ing/zed"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/debug-ing/Zed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debug-ing%2FZed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debug-ing%2FZed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debug-ing%2FZed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debug-ing%2FZed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/debug-ing","download_url":"https://codeload.github.com/debug-ing/Zed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debug-ing%2FZed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281241874,"owners_count":26467373,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-27T02:00:05.855Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","kcp","kcp-tunneling","reverse-tunnel","reverse-tunneling","tcp","tcp-tunneling","tunnel","tunneling"],"created_at":"2025-10-27T08:56:10.598Z","updated_at":"2025-10-27T08:56:14.835Z","avatar_url":"https://github.com/debug-ing.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zed\n\n\nWelcome to the **`Zed`** project!\n\n## Usage\n\nThe main executable for this project is `Zed`. It requires a TOML configuration file for both the server and client components.\n\n\n### Detailed Configuration\n\n#### TCP Configuration\n* **Server**:\n\n   ```toml\n    [mode]\n    mode = \"server\"\n    type = \"tcp\"\n    [server]\n    address = \"127.0.0.1:4000\"\n    key = \"abcdefghijklmnop\"\n   ```\n* **Client**:\n\n   ```toml\n    [mode]\n    mode = \"agent\"\n    type = \"tcp\"\n    [agent]\n    address = \":4000\"\n    key = \"abcdefghijklmnop\"\n    ports = [\n        \"8088:8080\",\n        \"9001:9000\",\n    ]\n\n   ```\n* **Details**:\n\n   `address`: The IPv4, IPv6, or domain address of the server to which the client connects.\n\n   `key`: An authentication token used to securely validate and authenticate the connection between the client and server within the tunnel.\n\n\n\n#### KCP Configuration\n* **Server**:\n\n   ```toml\n    [mode]\n    mode = \"server\"\n    type = \"kcp\"\n    [kcp]\n    ACKNoDelay = false\n    Mtu = 1000\n    Internal = 1000\n    [server]\n    address = \"127.0.0.1:4000\"\n    key = \"abcdefghijklmnop\"\n   ```\n* **Client**:\n\n   ```toml\n    [mode]\n    mode = \"agent\"\n    type = \"tcp\"\n    [kcp]\n    ACKNoDelay = false\n    Mtu = 1000\n    Internal = 1000\n    [agent]\n    address = \":4000\"\n    key = \"abcdefghijklmnop\"\n    ports = [\n        \"8088:8080\",\n        \"9001:9000\",\n    ]\n\n   ```\n* **Details**:\n\n   `address`: The IPv4, IPv6, or domain address of the server to which the client connects.\n\n   `key`: An authentication token used to securely validate and authenticate the connection between the client and server within the tunnel.\n\n   `ACKNoDelay`: \n   `Mtu`:\n   `Internal`:\n\n\n## ⚙️ Requirements\n\n- Go ≥ 1.24  \n- **Nix** (optional, to get all tools in one shell)\n\n\n## ❄️ Nix Environment\n\nThis project includes a shell.nix file that sets up **Go,golangci** in a reproducible development environment.\n\n```bash\nnix-shell\n# Build\nmake build\n\n```\n\n## License\n\nThis project is open source and licensed under the **MIT License**.  \n\nYou are free to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software, **without restriction**, as long as you include the original copyright notice and this permission notice in all copies or substantial portions of the Software.\n\nFor the full license text, see the [LICENSE](./LICENSE) file.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdebug-ing%2Fzed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdebug-ing%2Fzed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdebug-ing%2Fzed/lists"}