-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed commits: [c5ff92f] Wrong MAC example [3ff10c5] Apply the right pattern [0124b99] Fix typo [10e639d] Remove encoding
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
pattern: DHCPD_AAI_DECLINE | ||
data: "DHCPREQUEST for 1.2.3.4 (10.1.20.1) from a0:38:f7:4s:85:1b via 192.168.1.10: lease owned by peer" | ||
pattern: DHCPD_AAI_DHCPREQUEST | ||
data: "DHCPREQUEST for 1.2.3.4 (10.1.20.1) from a0:38:f7:4a:85:1b via 192.168.1.10: lease owned by peer" | ||
results: | ||
client: "1.2.3.4" | ||
dhcp_server: "10.1.20.1" | ||
mac: "a0:38:f7:4s:85:1b" | ||
mac: "a0:38:f7:4a:85:1b" | ||
via: "192.168.1.10" | ||
error: "lease owned by peer" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
encoding: utf-8 | ||
#encoding: utf-8 | ||
require 'rubygems' | ||
require 'minitest/autorun' | ||
require 'grok-pure' | ||
|