summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/helpers/strip-private.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers/strip-private.py b/src/helpers/strip-private.py
index 23761e578..023298eec 100755
--- a/src/helpers/strip-private.py
+++ b/src/helpers/strip-private.py
@@ -19,7 +19,7 @@ import argparse
import re
import sys
-from netaddr import IPAddress, AddrFormatError
+from netaddr import IPNetwork, AddrFormatError
parser = argparse.ArgumentParser(description='strip off private information from VyOS config')
@@ -58,7 +58,7 @@ def ip_match(match: re.Match, subst: str) -> str:
result = match.group(0)
# Is this a valid IP address?
try:
- addr = IPAddress(result)
+ addr = IPNetwork(result).ip
# No? Then we've got nothing to do with it.
except AddrFormatError:
return result