diff --git a/playbooks/ci-workarounds/get_extra_logging.yaml b/playbooks/ci-workarounds/get_extra_logging.yaml index 29454585ad..3e9115fae9 100644 --- a/playbooks/ci-workarounds/get_extra_logging.yaml +++ b/playbooks/ci-workarounds/get_extra_logging.yaml @@ -6,3 +6,11 @@ - name: Get network connection information for ironic process shell: "netstat -apn > {{ zuul_output_dir }}/logs/post-job-network-connections.txt" become: yes + - name: Get routing table, IPv4 + shell: "ip -4 route > {{ zuul_output_dir }}/logs/post-job-network-routes-v4.txt" + ignore_errors: True + become: yes + - name: Get routing table, IPv6 + shell: "ip -6 route > {{ zuul_output_dir }}/logs/post-job-network-routes-v6.txt" + ignore_errors: True + become: yes