diff options
author | Seth Mos <seth.mos@dds.nl> | 2011-03-03 21:30:06 +0100 |
---|---|---|
committer | Seth Mos <seth.mos@dds.nl> | 2011-03-03 21:30:06 +0100 |
commit | 4e8e7662c0309f6c83ca9b2ee3eb2e9f1aa95e52 (patch) | |
tree | 1028c93f42012d486e416f3f3468bec49ef7c519 /usr | |
parent | 11085d2abc88851f5dca2ffd3f1e8053d822d593 (diff) | |
download | pfsense-4e8e7662c0309f6c83ca9b2ee3eb2e9f1aa95e52.zip pfsense-4e8e7662c0309f6c83ca9b2ee3eb2e9f1aa95e52.tar.gz |
Blind coded a edit page for IPv6. the subnet check needs to be written entirely. Checking if the IP address falls within the v6 subnet isn't so hard, what is harder is making sure that the ip does not fall within the dynamic subnet. For that we need proper subnet math calculus. Which we don't have yet.
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/services_dhcpv6.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/services_dhcpv6.php b/usr/local/www/services_dhcpv6.php index 4d6251a..27c4443 100644 --- a/usr/local/www/services_dhcpv6.php +++ b/usr/local/www/services_dhcpv6.php @@ -848,7 +848,7 @@ include("head.inc"); <?=htmlspecialchars($mapent['mac']);?> </td> <td class="listr" ondblclick="document.location='services_dhcpv6_edit.php?if=<?=$if;?>&id=<?=$i;?>';"> - <?=htmlspecialchars($mapent['ipaddr']);?> + <?=htmlspecialchars($mapent['ipaddrv6']);?> </td> <td class="listr" ondblclick="document.location='services_dhcpv6_edit.php?if=<?=$if;?>&id=<?=$i;?>';"> <?=htmlspecialchars($mapent['hostname']);?> |