1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

Add missing Devops CLI utilities resources (#1975)

* Add resources for UFW

* Add resources for Tcpdump
This commit is contained in:
Vivaan Verma
2022-10-01 17:00:47 +01:00
committed by GitHub
parent 327dad1a3e
commit f99660ea8d
2 changed files with 17 additions and 2 deletions

View File

@@ -1 +1,9 @@
# Tcpdump
# Tcpdump
`tcpdump` is a command line tool used for analysing network traffic passing through your system. It can be used to capture and filter packets and display them in a human-readable format. The captured information can be analysed at a later date as well.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Official Documentation' colorScheme='blue' href='https://www.tcpdump.org/manpages/tcpdump.1.html'>tcpdump Documentation</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://opensource.com/article/18/10/introduction-tcpdump'>Basic Introduction to Tcpdump</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://danielmiessler.com/study/tcpdump/'>50 ways to isolate traffic with Tcpdump</BadgeLink>
<BadgeLink colorScheme='purple' badgeText='Watch' href='https://www.youtube.com/watch?v=7bsQP9sKHrs'>Interpreting Tcpdump output and data</BadgeLink>

View File

@@ -1 +1,8 @@
# Ufw
# UFW
UFW, or *uncomplicated firewall*, is command-line based utility for managing firewall rules in Arch Linux, Debian and Ubuntu. It's aim is to make firewall configuration as simple as possible. It is a frontend for the `iptables` firewalling tool.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Official Documentation' colorScheme='blue' href='https://manpages.ubuntu.com/manpages/trusty/man8/ufw.8.html'>ufw Documentation</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.linux.com/training-tutorials/introduction-uncomplicated-firewall-ufw/'>Basic Introduction to UFW</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.digitalocean.com/community/tutorials/ufw-essentials-common-firewall-rules-and-commands'>UFW Essentials</BadgeLink>