2021-04-09 10:36:42 -07:00
|
|
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-07-18 12:35:46 -07:00
|
|
|
# jc.parsers.ping
|
2020-08-05 16:51:58 -07:00
|
|
|
jc - JSON CLI output utility `ping` command output parser
|
|
|
|
|
|
|
|
Supports `ping` and `ping6` output.
|
2020-07-18 12:35:46 -07:00
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (cli):
|
2020-07-18 12:35:46 -07:00
|
|
|
|
2020-08-05 16:51:58 -07:00
|
|
|
Note: Use the ping `-c` (count) option, otherwise data will not be piped to `jc`.
|
|
|
|
|
|
|
|
$ ping -c 3 1.2.3.4 | jc --ping
|
|
|
|
|
|
|
|
or
|
2020-07-18 12:35:46 -07:00
|
|
|
|
2020-08-05 16:51:58 -07:00
|
|
|
$ jc ping -c 3 1.2.3.4
|
2020-07-19 15:30:54 -07:00
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (module):
|
|
|
|
|
|
|
|
import jc.parsers.ping
|
|
|
|
result = jc.parsers.ping.parse(ping_command_output)
|
|
|
|
|
2021-04-08 15:52:49 -07:00
|
|
|
Schema:
|
|
|
|
|
|
|
|
{
|
|
|
|
"source_ip": string,
|
|
|
|
"destination_ip": string,
|
|
|
|
"data_bytes": integer,
|
|
|
|
"pattern": string, # (null if not set)
|
|
|
|
"destination": string,
|
|
|
|
"packets_transmitted": integer,
|
|
|
|
"packets_received": integer,
|
|
|
|
"packet_loss_percent": float,
|
|
|
|
"duplicates": integer,
|
|
|
|
"round_trip_ms_min": float,
|
|
|
|
"round_trip_ms_avg": float,
|
|
|
|
"round_trip_ms_max": float,
|
|
|
|
"round_trip_ms_stddev": float,
|
|
|
|
"responses": [
|
|
|
|
{
|
2021-05-03 15:26:16 -07:00
|
|
|
"type": string, # 'reply', 'timeout', etc. See type_map for all options
|
2021-04-08 15:52:49 -07:00
|
|
|
"timestamp": float,
|
|
|
|
"bytes": integer,
|
|
|
|
"response_ip": string,
|
|
|
|
"icmp_seq": integer,
|
|
|
|
"ttl": integer,
|
|
|
|
"time_ms": float,
|
2021-05-03 15:26:16 -07:00
|
|
|
"duplicate": boolean,
|
|
|
|
"vr": integer, # hex value converted to decimal
|
|
|
|
"hl": integer, # hex value converted to decimal
|
|
|
|
"tos": integer, # hex value converted to decimal
|
|
|
|
"len": integer, # hex value converted to decimal
|
|
|
|
"id": integer, # hex value converted to decimal
|
|
|
|
"flg": integer, # hex value converted to decimal
|
|
|
|
"off": integer, # hex value converted to decimal
|
|
|
|
"pro": integer, # hex value converted to decimal
|
|
|
|
"cks": ingeger, # hex value converted to decimal
|
|
|
|
"src": string,
|
|
|
|
"dst": string
|
2021-04-08 15:52:49 -07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-07-18 12:35:46 -07:00
|
|
|
Examples:
|
|
|
|
|
2020-07-19 15:30:54 -07:00
|
|
|
$ ping -c 3 -p ff cnn.com | jc --ping -p
|
|
|
|
{
|
|
|
|
"destination_ip": "151.101.1.67",
|
|
|
|
"data_bytes": 56,
|
|
|
|
"pattern": "0xff",
|
|
|
|
"destination": "cnn.com",
|
|
|
|
"packets_transmitted": 3,
|
|
|
|
"packets_received": 3,
|
|
|
|
"packet_loss_percent": 0.0,
|
2020-07-21 15:16:39 -07:00
|
|
|
"duplicates": 0,
|
2020-07-19 15:30:54 -07:00
|
|
|
"round_trip_ms_min": 28.015,
|
|
|
|
"round_trip_ms_avg": 32.848,
|
|
|
|
"round_trip_ms_max": 39.376,
|
|
|
|
"round_trip_ms_stddev": 4.79,
|
|
|
|
"responses": [
|
|
|
|
{
|
|
|
|
"type": "reply",
|
|
|
|
"bytes": 64,
|
|
|
|
"response_ip": "151.101.1.67",
|
|
|
|
"icmp_seq": 0,
|
|
|
|
"ttl": 59,
|
2020-07-21 15:16:39 -07:00
|
|
|
"time_ms": 28.015,
|
|
|
|
"duplicate": false
|
2020-07-19 15:30:54 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "reply",
|
|
|
|
"bytes": 64,
|
|
|
|
"response_ip": "151.101.1.67",
|
|
|
|
"icmp_seq": 1,
|
|
|
|
"ttl": 59,
|
2020-07-21 15:16:39 -07:00
|
|
|
"time_ms": 39.376,
|
|
|
|
"duplicate": false
|
2020-07-19 15:30:54 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "reply",
|
|
|
|
"bytes": 64,
|
|
|
|
"response_ip": "151.101.1.67",
|
|
|
|
"icmp_seq": 2,
|
|
|
|
"ttl": 59,
|
2020-07-21 15:16:39 -07:00
|
|
|
"time_ms": 31.153,
|
|
|
|
"duplicate": false
|
2020-07-19 15:30:54 -07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
$ ping -c 3 -p ff cnn.com | jc --ping -p -r
|
|
|
|
{
|
|
|
|
"destination_ip": "151.101.129.67",
|
|
|
|
"data_bytes": "56",
|
|
|
|
"pattern": "0xff",
|
|
|
|
"destination": "cnn.com",
|
|
|
|
"packets_transmitted": "3",
|
|
|
|
"packets_received": "3",
|
|
|
|
"packet_loss_percent": "0.0",
|
2020-07-21 15:16:39 -07:00
|
|
|
"duplicates": "0",
|
2020-07-19 15:30:54 -07:00
|
|
|
"round_trip_ms_min": "25.078",
|
|
|
|
"round_trip_ms_avg": "29.543",
|
|
|
|
"round_trip_ms_max": "32.553",
|
|
|
|
"round_trip_ms_stddev": "3.221",
|
|
|
|
"responses": [
|
|
|
|
{
|
|
|
|
"type": "reply",
|
|
|
|
"bytes": "64",
|
|
|
|
"response_ip": "151.101.129.67",
|
|
|
|
"icmp_seq": "0",
|
|
|
|
"ttl": "59",
|
2020-07-21 15:16:39 -07:00
|
|
|
"time_ms": "25.078",
|
|
|
|
"duplicate": false
|
2020-07-19 15:30:54 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "reply",
|
|
|
|
"bytes": "64",
|
|
|
|
"response_ip": "151.101.129.67",
|
|
|
|
"icmp_seq": "1",
|
|
|
|
"ttl": "59",
|
2020-07-21 15:16:39 -07:00
|
|
|
"time_ms": "30.999",
|
|
|
|
"duplicate": false
|
2020-07-19 15:30:54 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "reply",
|
|
|
|
"bytes": "64",
|
|
|
|
"response_ip": "151.101.129.67",
|
|
|
|
"icmp_seq": "2",
|
|
|
|
"ttl": "59",
|
2020-07-21 15:16:39 -07:00
|
|
|
"time_ms": "32.553",
|
|
|
|
"duplicate": false
|
2020-07-19 15:30:54 -07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2020-07-18 12:35:46 -07:00
|
|
|
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-07-18 12:35:46 -07:00
|
|
|
## info
|
|
|
|
```python
|
2020-07-30 16:20:24 -07:00
|
|
|
info()
|
2020-07-18 12:35:46 -07:00
|
|
|
```
|
2021-04-08 15:52:49 -07:00
|
|
|
Provides parser metadata (version, author, etc.)
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-07-18 12:35:46 -07:00
|
|
|
## parse
|
|
|
|
```python
|
|
|
|
parse(data, raw=False, quiet=False)
|
|
|
|
```
|
|
|
|
|
|
|
|
Main text parsing function
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
data: (string) text data to parse
|
|
|
|
raw: (boolean) output preprocessed JSON if True
|
|
|
|
quiet: (boolean) suppress warning messages if True
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2020-07-19 15:30:54 -07:00
|
|
|
Dictionary. Raw or processed structured data.
|
2020-07-18 12:35:46 -07:00
|
|
|
|
2021-04-09 10:36:42 -07:00
|
|
|
## Parser Information
|
|
|
|
Compatibility: linux, darwin, freebsd
|
|
|
|
|
2021-05-03 15:26:16 -07:00
|
|
|
Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com)
|