Pod의 veth (Virtual Ethernet Interface) 장치 찾기 1. Pod의 내부에 있는 Container ID와 생성된 Worker Node 확인다수의 Container가 있을 경우그 중 1개의 Container ID를 확인함.Pod가 배포된 Worker Node 를 확인[명령어]kubectl describe pod [Pod Name] 2. Pod의 PID 확인Pod가 배포된 Worker Node로 이동해서 작업Container 의 PID를 확인[명령어]docker inspect --format '{{ .State.Pid }}' [container-id-or-name] 3. PID에 해당하는 veth 번호 확인[명령어]nsenter -t [your-container-pid] -n ..