summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-02-02 09:12:36 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-02-02 09:12:36 -0800
commitfed73592cfd6fd2f87aad1669d1b9ebecfa03cdc (patch)
tree593d14ce30f866ab334d2662be3972c8a8ea016e /scripts
parent831abebf172d4350849aecca838547f8878f36d1 (diff)
downloadvyatta-cfg-quagga-fed73592cfd6fd2f87aad1669d1b9ebecfa03cdc.tar.gz
vyatta-cfg-quagga-fed73592cfd6fd2f87aad1669d1b9ebecfa03cdc.zip
Static host-name mapping changes
Fix help text (Bug 5254) and allow IPV6 static mapping (Bug 5298)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check-ipv4-ipv6.pl12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/check-ipv4-ipv6.pl b/scripts/check-ipv4-ipv6.pl
new file mode 100644
index 00000000..0816ebee
--- /dev/null
+++ b/scripts/check-ipv4-ipv6.pl
@@ -0,0 +1,12 @@
+#! /usr/bin/perl
+
+# Trivial script to check for valid IPv4 or IPv6 address
+
+use strict;
+use NetAddr::IP;
+
+foreach my $addr (@ARGV) {
+ die "$addr: not valid a valid IPv4 or IPv6 address\n"
+ unless new NetAddr::IP $addr;
+}
+