mirror of
https://github.com/pion/stun.git
synced 2025-09-26 20:01:18 +08:00
10 lines
252 B
Bash
10 lines
252 B
Bash
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
echo "net: $INTERFACE $SUBNET"
|
|
tcpdump -U -v -i $INTERFACE \
|
|
src net $SUBNET and dst net $SUBNET \
|
|
-w /root/dump/dump.pcap
|