{"id":40450619,"url":"https://github.com/rtsp/docker-net-tools","last_synced_at":"2026-05-25T04:05:55.385Z","repository":{"id":38322200,"uuid":"401834667","full_name":"rtsp/docker-net-tools","owner":"rtsp","description":"Debian Docker image with a lot of network tools preinstalled","archived":false,"fork":false,"pushed_at":"2026-01-13T05:08:15.000Z","size":340,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T08:35:02.052Z","etag":null,"topics":["debian","docker","docker-image","net-tools","network"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/rtsp/net-tools","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rtsp.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":"2021-08-31T20:26:47.000Z","updated_at":"2026-01-13T05:08:11.000Z","dependencies_parsed_at":"2023-10-12T12:22:38.001Z","dependency_job_id":"24c2c038-dd10-406e-83ec-a05e01c1c29c","html_url":"https://github.com/rtsp/docker-net-tools","commit_stats":null,"previous_names":[],"tags_count":70,"template":false,"template_full_name":null,"purl":"pkg:github/rtsp/docker-net-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-net-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-net-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-net-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-net-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtsp","download_url":"https://codeload.github.com/rtsp/docker-net-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-net-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["debian","docker","docker-image","net-tools","network"],"created_at":"2026-01-20T17:16:58.433Z","updated_at":"2026-01-20T17:16:59.016Z","avatar_url":"https://github.com/rtsp.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RTSP Network Tools Docker Image\n\nDebian with basic network tools included.\n\n\n## Usage\n\nIn order to use image from GitHub Container Registry instead of Docker Hub, you can replace `rtsp/net-tools` with `ghcr.io/rtsp/docker-net-tools` anywhere in the instruction below.\n\n### Pull Image\n\n```ShellSession\ndocker pull rtsp/net-tools\n```\n\n### Interactive Mode\n\n```ShellSession\ndocker run --rm -it rtsp/net-tools bash\n```\n\n### Run a Specific Command\n\n```ShellSession\ndocker run --rm rtsp/net-tools ping -c 3 172.17.0.1\n```\n\n### Run as Daemon\n\n```ShellSession\ndocker run -d --name net-tools rtsp/net-tools\n```\n\n```ShellSession\ndocker exec net-tools ping -c 3 172.17.0.1\n\ndocker exec -it net-tools bash\n```\n\n### Run as Kubernetes Pod\n\n```yaml\n---\napiVersion: v1\nkind: Pod\nmetadata:\n  name: net-tools\nspec:\n  containers:\n  - name: net-tools\n    image: rtsp/net-tools:latest\n```\n\n```ShellSession\nkubectl exec net-tools -- ping -c 3 10.233.0.1\n\nkubectl exec -it net-tools -- bash\n```\n\n### Run as Kubernetes DaemonSet\n\nThis manifests will deploy Pods in all nodes (including control-plane). Useful for network reachability debugging.\n\n```yaml\n---\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n  name: net-tools\nspec:\n  selector:\n    matchLabels:\n      name: net-tools\n  template:\n    metadata:\n      labels:\n        name: net-tools\n    spec:\n      tolerations:\n      - key: node-role.kubernetes.io/master\n        operator: Exists\n        effect: NoSchedule\n      containers:\n        - name: net-tools\n          image: rtsp/net-tools:latest\n          imagePullPolicy: IfNotPresent\n      terminationGracePeriodSeconds: 30\n```\n\nRetrieve Pods Name\n\n```ShellSession\nkubectl get pods -l name=net-tools -o wide\n```\n\nOutput (Trimmed)\n```\nNAME              READY   STATUS    AGE     IP             NODE\nnet-tools-j7j97   1/1     Running   4d5h    10.233.69.40   k8s-w3\nnet-tools-kfx7h   1/1     Running   4d16h   10.233.66.10   k8s-m3\nnet-tools-krttb   1/1     Running   4d16h   10.233.68.43   k8s-w1\nnet-tools-l8tjd   1/1     Running   4d16h   10.233.67.36   k8s-w2\nnet-tools-q48n6   1/1     Running   4d16h   10.233.65.7    k8s-m2\nnet-tools-vw45v   1/1     Running   4d16h   10.233.64.11   k8s-m1\n```\n\nExample: Check that `k8s-m2` node (`net-tools-q48n6`) able to reach a pod in `k8s-m1` node (`10.233.64.11`).\n\n```ShellSession\nkubectl exec net-tools-q48n6 -- ping -c 3 10.233.64.11\n```\n\nor just run it interactively\n\n```ShellSession\nkubectl exec -it net-tools-q48n6 -- bash\n```\n\nor if you don't mind which Pod to use\n\n```ShellSession\nkubectl exec -it daemonset/net-tools -- bash\n```\n\n\n## Links\n\n### Packages\n\n- Docker Hub: [rtsp/net-tools](https://hub.docker.com/r/rtsp/net-tools/)\n- GitHub: [ghcr.io/rtsp/docker-net-tools](https://github.com/rtsp/docker-net-tools/pkgs/container/docker-net-tools)\n\n### Source Code\n\n- [rtsp/docker-net-tools](https://github.com/rtsp/docker-net-tools)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtsp%2Fdocker-net-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtsp%2Fdocker-net-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtsp%2Fdocker-net-tools/lists"}