Skip to content

Commit

Permalink
Accepting 'PERMANENT' record as neighbor
Browse files Browse the repository at this point in the history
  • Loading branch information
jaesivsm committed Feb 28, 2017
1 parent 7e383b9 commit 4538541
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@


setup(name='MindYourNeighbors',
version='0.5.0',
version='1.0.0',
description='IP Neighbors table watching script',
long_description=readme,
keywords='ip-neigh arp',
Expand Down
2 changes: 1 addition & 1 deletion src/mind_your_neighbors/const.py
Expand Up @@ -9,7 +9,7 @@ class MatchResult(Enum):
NO_MATCH = 'no match'


REACHABLE = re.compile('.*REACHABLE.*')
REACHABLE = re.compile('.*(REACHABLE|PERMANENT).*')
KNOWN_MACHINES_SECTION = 'known_machines'
LOG_TO_MATCH_RES_MAPPING = ((logging.DEBUG, MatchResult.EXCLUDED),
(logging.INFO, MatchResult.MATCHED),
Expand Down

0 comments on commit 4538541

Please sign in to comment.