summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2008-01-24 16:46:48 -0800
committerStig Thormodsrud <stig@vyatta.com>2008-01-24 16:46:48 -0800
commit9c262c43444441dbbbf5bbccc6dae0583abbdec6 (patch)
tree29e81f048ade3bc74edbdfe3e6fe62fdd49858bd /scripts
parent5c97a19976e400901b06b6784d767925e0893799 (diff)
downloadvyatta-cfg-9c262c43444441dbbbf5bbccc6dae0583abbdec6.tar.gz
vyatta-cfg-9c262c43444441dbbbf5bbccc6dae0583abbdec6.zip
add script to /etc/dhcp3/dhclient-exit-hooks to store values received by dhclient
Diffstat (limited to 'scripts')
-rw-r--r--scripts/vyatta-dhclient-hook19
-rw-r--r--scripts/vyatta-interfaces.pl1
2 files changed, 20 insertions, 0 deletions
diff --git a/scripts/vyatta-dhclient-hook b/scripts/vyatta-dhclient-hook
new file mode 100644
index 0000000..cc3cb08
--- /dev/null
+++ b/scripts/vyatta-dhclient-hook
@@ -0,0 +1,19 @@
+
+# To enable this script set the following variable to "yes"
+RUN="yes"
+
+if [ "$RUN" = "yes" ]; then
+ LOG=/var/lib/dhcp3/dhclient_"$interface"_lease
+ echo `date` > $LOG
+
+ for i in reason interface new_expiry new_dhcp_lease_time medium \
+ alias_ip_address new_ip_address new_broadcast_address \
+ new_subnet_mask new_domain_name new_network_number \
+ new_domain_name_servers new_routers new_static_routes \
+ new_dhcp_server_identifier new_dhcp_message_type \
+ old_ip_address old_subnet_mask old_domain_name \
+ old_domain_name_servers old_routers \
+ old_static_routes; do
+ echo $i=\'${!i}\' >> $LOG
+ done
+fi
diff --git a/scripts/vyatta-interfaces.pl b/scripts/vyatta-interfaces.pl
index dde54c7..1f13e20 100644
--- a/scripts/vyatta-interfaces.pl
+++ b/scripts/vyatta-interfaces.pl
@@ -277,6 +277,7 @@ sub delete_eth_addrs {
if ($addr eq "dhcp") {
dhcp_release_addr($intf);
update_dhcp_client();
+ system("rm -f /var/lib/dhcp3/dhclient_$intf\_lease");
return;
}
my $version = is_ip_v4_or_v6($addr);