Forrest logo
back to context overview

ngrep

List of commands for ngrep:

  • ngrep:tldr:19dd3 ngrep: Capture traffic crossing port 22 of interface eth0.
    $ ngrep -d ${eth0} port ${22}
    try on your machine
    explain this command
  • ngrep:tldr:3e31e ngrep: Capture traffic of a specific interface.
    $ ngrep -d ${eth0}
    try on your machine
    explain this command
  • ngrep:tldr:71416 ngrep: Capture traffic from or to a host.
    $ ngrep host ${www-example-com}
    try on your machine
    explain this command
  • ngrep:tldr:7dade ngrep: Capture traffic of all interfaces.
    $ ngrep -d any
    try on your machine
    explain this command
  • ngrep:tldr:a960f ngrep: Filter keyword 'User-Agent:' of interface eth0.
    $ ngrep -d ${eth0} '${User-Agent:}'
    try on your machine
    explain this command
back to context overview