summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Smith <tom@appliedinvention.com>2019-06-20 12:56:59 -0700
committerThomas Markwalder <tmark@isc.org>2019-07-16 14:24:55 -0400
commitc6c4db599aa5fb562e95e723cef00a3e30c3b14b (patch)
treeeee9ed9fe059b9cffd3cb254f0dcbc075d5a4fc0
parent6f4d2259f0e33acf8b14a9037e00240af728ddac (diff)
downloadisc-dhcp-c6c4db599aa5fb562e95e723cef00a3e30c3b14b.tar.gz
Updated OUI_URL location. Issue #26
-rw-r--r--contrib/dhcp-lease-list.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/dhcp-lease-list.pl b/contrib/dhcp-lease-list.pl
index aa6372df..3a87516c 100644
--- a/contrib/dhcp-lease-list.pl
+++ b/contrib/dhcp-lease-list.pl
@@ -20,6 +20,8 @@
#
# 2016-01-18 - Mainly cosmetics. Eliminated spurious output in "parsable" mode.
# Provided for the various conventional lease file locations. (cbp)
+#
+# 2019-06-20 - Updated OUI_URL location. -TS
use strict;
use warnings;
@@ -30,7 +32,7 @@ my @all_leases;
my @leases;
my @OUIS = ('/usr/share/misc/oui.txt', '/usr/local/etc/oui.txt');
-my $OUI_URL = 'http://standards.ieee.org/regauth/oui/oui.txt';
+my $OUI_URL = 'http://standards-oui.ieee.org/oui.txt';
my $oui;
my %data;