-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Template: Adds support for Cisco FTD and cisco_asa_ping (#654)
- Loading branch information
1 parent
508cbac
commit 20d7d56
Showing
7 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Value Required SENT_QTY (\d+) | ||
Value Required SENT_TYPE (.*) | ||
Value Required DESTINATION (\S+) | ||
Value Required TIMEOUT (\d+) | ||
Value Required RESPONSE_STREAM ([\.\!]+) | ||
Value Required SUCCESS_PCT (\d+) | ||
Value Required SUCCESS_QTY (\d+) | ||
Value Required RTT_MIN (\d+) | ||
Value Required RTT_AVG (\d+) | ||
Value Required RTT_MAX (\d+) | ||
|
||
|
||
Start | ||
^Type\s+escape\s+sequence\s+to\s+abort. | ||
^Sending\s+${SENT_QTY},\s+${SENT_TYPE}\s+to\s+${DESTINATION},\s+timeout\s+is\s+${TIMEOUT}\s+seconds: | ||
^${RESPONSE_STREAM} | ||
^Success\s+rate\s+is\s+${SUCCESS_PCT}\s+percent\s+\(${SUCCESS_QTY}/\d+\),\s+round-trip\s+min/avg/max\s+=\s+${RTT_MIN}/${RTT_AVG}/${RTT_MAX}\s+ms | ||
^\s*$$ | ||
^. -> Error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Type escape sequence to abort. | ||
Sending 5, 100-byte ICMP Echos to 192.168.10.45, timeout is 2 seconds: | ||
!!!!! | ||
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/10 ms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
parsed_sample: | ||
- sent_qty: "5" | ||
sent_type: "100-byte ICMP Echos" | ||
destination: "192.168.10.45" | ||
timeout: "2" | ||
response_stream: "!!!!!" | ||
success_pct: "100" | ||
success_qty: "5" | ||
rtt_min: "1" | ||
rtt_avg: "2" | ||
rtt_max: "10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Type escape sequence to abort. | ||
Sending 5, 100-byte ICMP Echos to 10.91.108.200, timeout is 2 seconds: | ||
!!!!! | ||
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
parsed_sample: | ||
- sent_qty: "5" | ||
sent_type: "100-byte ICMP Echos" | ||
destination: "10.91.108.200" | ||
timeout: "2" | ||
response_stream: "!!!!!" | ||
success_pct: "100" | ||
success_qty: "5" | ||
rtt_min: "1" | ||
rtt_avg: "1" | ||
rtt_max: "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters