Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yunusemrejr/yunus-traf-statter-v2
Yunus' Traffic Statter 2.0 is a cool tool for checking out what's happening on your network. It uses tshark to grab and look at network packets as they fly by, giving you a real-time peek into your network's activity. You can pick which network interface to watch, and it'll spit out detailed reports and graphs to help you make sense!
https://github.com/yunusemrejr/yunus-traf-statter-v2
bash ip linux mac macos network shell shell-script tshark unix wireshark
Last synced: about 1 month ago
JSON representation
Yunus' Traffic Statter 2.0 is a cool tool for checking out what's happening on your network. It uses tshark to grab and look at network packets as they fly by, giving you a real-time peek into your network's activity. You can pick which network interface to watch, and it'll spit out detailed reports and graphs to help you make sense!
- Host: GitHub
- URL: https://github.com/yunusemrejr/yunus-traf-statter-v2
- Owner: yunusemrejr
- License: mit
- Created: 2024-11-28T10:25:25.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-28T10:29:12.000Z (about 2 months ago)
- Last Synced: 2024-11-28T11:30:50.325Z (about 2 months ago)
- Topics: bash, ip, linux, mac, macos, network, shell, shell-script, tshark, unix, wireshark
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Yunus' Traffic Statter 2.0 is a cool tool for checking out what's happening on your network. It uses tshark to grab and look at network packets as they fly by, giving you a real-time peek into your network's activity. You can pick which network interface to watch, and it'll spit out detailed reports and graphs to help you make sense of all that network chatter.
Tested for MacOS Silicon! The script relies on Unix-based system utilities and may not function correctly on Windows without modifications. The script is written in Bash and requires a Bash-compatible shell to execute.Requires:
macOS: brew install wireshark brew install gnuplotDebian/Ubuntu: sudo apt-get install tshark sudo apt-get install gnuplot
Fedora: sudo dnf install wireshark-cli sudo dnf install gnuplot
Arch Linux: sudo pacman -S wireshark-cli sudo pacman -S gnuplot
The script uses common command-line tools:
awk
sort
uniq
grep
sed
mkdir
rm
These are typically pre-installed on Unix-based systems.-Yun