-
-
Save Nurlan199206/37ac63b3e19980b3f78d0fdbdee632e4 to your computer and use it in GitHub Desktop.
How to get tcpdump for containers inside Kubernetes pods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# find the kube node of the running pod, appear next to hostIP, and note containerID hash | |
kubectl get pod mypod -o json | |
# -> save hostIP | |
# -> save containerID | |
# connect to the node and find the pods unique network interface index inside it's container | |
docker exec containerID /bin/bash -c 'cat /sys/class/net/eth0/iflink' | |
# -> returns index | |
# locate the interface of the node | |
ip link |grep ^index: | |
# -> returns interface | |
# then GO tcpdump ! | |
tcpdump -i interface |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment