From 3c00336b07f1fec0fb13af3c7d502d51fab732b7 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Tue, 3 Mar 2015 13:23:48 +0100 Subject: Add amqps.pcapng (AMQP over SSL) Master keys are available in the capture file comments. Installed rabbitmq-server on Ubuntu 14.04 (upgraded halfway to 14.10) and wrote /etc/rabbitmq/rabbitmq.config with appriopriate certs: [ {rabbit, [ {ssl_listeners, [5671]}, {ssl_options, [{cacertfile, "/etc/rabbitmq/cert.pem"}, {certfile, "/etc/rabbitmq/cert.pem"}, {keyfile, "/etc/rabbitmq/key.pem"}, {verify, verify_peer}, {fail_if_no_peer_cert, false}]} ]} ]. amqp-tools (amqp-publish, etc.) did not work, so a quick Celery script was used (install python-celery): from celery import Celery app = Celery('tasks', broker='amqp://guest@localhost:5671/') app.conf.update(BROKER_USE_SSL=True) @app.task def add(x, y): return x + y print(add.delay(3, 4)) --- tls/amqps.pcapng | Bin 0 -> 8484 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tls/amqps.pcapng (limited to 'tls') diff --git a/tls/amqps.pcapng b/tls/amqps.pcapng new file mode 100644 index 0000000..86ee3b1 Binary files /dev/null and b/tls/amqps.pcapng differ -- cgit v1.2.1