blob: 963e8e78ca6b6dc27989dc0d344e053c37d1933c [file] [log] [blame]
Zack Williams3c9af7d2022-06-25 14:18:05 -07001---
2# devtools tasks/netdev.yml
3#
4# SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6
7- name: install tools used for network development and troubleshooting
8 apt:
9 name:
10 - arping
11 - ethtool
12 - git
13 - iperf
14 - iperf3
15 - ipvsadm
16 - python3-scapy
17 - tcpdump
18 - tcpreplay
19 - traceroute
20 - tshark
21 state: present
22 update_cache: true
23 cache_valid_time: 3600