Medium syndication metadata

This commit is contained in:
Brandon Rozek 2023-03-10 12:41:04 -05:00
parent c5b2488589
commit 9bf7cfb744
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
14 changed files with 82 additions and 64 deletions

View file

@ -1,9 +1,12 @@
---
title: "Multicast Receive Script"
date: 2020-11-18T10:09:15-05:00
date: 2020-11-18 15:09:15
draft: false
tags: ["Linux", "Networking"]
medium_enabled: true
medium_post_id: 6f6efe549a47
tags:
- Linux
- Networking
title: Multicast Receive Script
---
I use `socat` to debug mutlicast traffic, though the syntax for it is complicated to learn. Here is the command that I normally use to debug multicast traffic.
@ -46,5 +49,4 @@ multicast_address="$1"
port="$2"
socat UDP4-RECVFROM:"$port",ip-add-membership="$multicast_address":0.0.0.0,fork -
```
```