summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_dhcp.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2016-09-28 11:12:42 -0400
committerjim-p <jimp@pfsense.org>2016-09-28 11:12:42 -0400
commit632e5f504fed668c328eea3c0af702d1b4998289 (patch)
tree37d7c6b47ec2daf58a762525b43efe87b29aab87 /src/usr/local/www/services_dhcp.php
parentba868cff5137e18774a934986ad9fffff8081f4e (diff)
downloadpfsense-632e5f504fed668c328eea3c0af702d1b4998289.zip
pfsense-632e5f504fed668c328eea3c0af702d1b4998289.tar.gz
Apply static ARP entries more consistently when adding and removing static mapping entries. Fixes #6821
Diffstat (limited to 'src/usr/local/www/services_dhcp.php')
-rw-r--r--src/usr/local/www/services_dhcp.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php
index 5c90fe3..2419b00 100644
--- a/src/usr/local/www/services_dhcp.php
+++ b/src/usr/local/www/services_dhcp.php
@@ -632,6 +632,10 @@ if ($act == "delpool") {
if ($act == "del") {
if ($a_maps[$_GET['id']]) {
+ /* Remove staic ARP entry, if necessary */
+ if (isset($a_maps[$_GET['id']]['arp_table_static_entry'])) {
+ mwexec("/usr/sbin/arp -d " . escapeshellarg($a_maps[$_GET['id']]['ipaddr']));
+ }
unset($a_maps[$_GET['id']]);
write_config();
if (isset($config['dhcpd'][$if]['enable'])) {
OpenPOWER on IntegriCloud