Skip to main content

Traceroute parser

Project description

trparse

Parses the output of a traceroute or traceroute6 execution into an AST (Abstract Syntax Tree) built up from:

  • a Traceroute root

  • Hop inner nodes

  • Probe leaf nodes

Every node is printable and the entire tree is printable from the root.

Supports the following info. Parsed info in bold:

  • Header:

    • Destination Hostname

    • (Destination IP address)

  • Hop

    • Hop counter

    • [AS#]

    • Probe

      • Hostname

      • (IP address)

      • RTT

      • !Annotation

Usage

import trparse
s = <some_output_from_traceroute>
# Parse the traceroute output
traceroute = trparse.loads(s)
# You can print the result
print traceroute
# Save it as string
tr_str = str(traceroute)
# Or travel the tree
hop = traceroute.hops[0]
probe = hop.probes[0]
# And print the IP address
print probe.ip

Data structures

  • Traceroute

    • dest_name :: <str>

    • dest_ip :: <str>

    • hops :: <list<Hop>>

  • Hop

    • idx :: <int>

    • asn :: <int>

    • probes :: <list<Probe>>

  • Probe

    • name :: <str>

    • ip :: <str>

    • rtt :: <float>

    • anno :: <str>

Considerations

trparse is based on the output of the traceroute command in OSX and Linux. It parses the text based on regular expressions, so there are some tokens it expects to find in a specific format. For example:

  • Destination Hostname and (Destination IP Address) must be in the same line separated only by one or more space characters. They must be found in the header zone (typically the first two lines), before any hop result.

  • (Destination IP Address) must be surrounded by parenthesis

  • Hop counter must be the first token in its line. There can be lines starting with another token, but if there is a Hop counter in a line, it has to be the first token in that line. (can be preceded by space characters).

  • [AS#] must be surrounded by square brackets [] and start with AS.

  • Hostname Can be a hostname or its IP address without parenthesis

  • (IP address) either IPv4 or IPv6 must surrounded by parenthesis ().

  • RTT must be in integer (without commas or dots) or float format (with one (and only one) dot) separated from the ms literal by a least one space character.

  • !Annotation must start with a ! symbol followed by non-space charachters and there can’t be more than one per probe.

Windows’s tracert output does not meet these conditions so it won’t work in a Widows system. Maybe in a future release.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trparse-0.2.1.tar.gz (4.2 kB view details)

Uploaded Source

File details

Details for the file trparse-0.2.1.tar.gz.

File metadata

  • Download URL: trparse-0.2.1.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for trparse-0.2.1.tar.gz
Algorithm Hash digest
SHA256 4cfc2f0d61a5083e254321c9351fb53a933cd7b419005fd80d16cbc719047d6b
MD5 a297f0a3fe5eb2dca7d30d9421b87811
BLAKE2b-256 cc1adcfa9994174e791393a6c9a7a081826c390a6f57e55fdf8b5883142feb1b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page