Github user nickwallen commented on a diff in the pull request:
https://github.com/apache/metron/pull/1205#discussion_r218948106
--- Diff: metron-deployment/ansible/playbooks/sensor_install.yml ---
@@ -46,6 +46,19 @@
tags:
- sensors
+#
+# deploys all components required to simulate and then capture packets
+#
+- hosts: sensors
+ become: true
+ roles:
+ - { role: ambari_gather_facts }
+ - { role: tap_interface }
+ - { role: pcap_replay }
+ - { role: pycapa }
+ tags:
+ - pcap
--- End diff --
Allows us to deploy all of the components required for testing packet
capture using the tag 'pcap'.
---