Giter Club home page Giter Club logo

trparse's Introduction

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.

trparse's People

Contributors

lbenitez000 avatar benohara avatar ericzinnikas avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.