diff --git a/src/etc/inc/interfaces.inc b/src/etc/inc/interfaces.inc index a78cf69e2..867a2b419 100644 --- a/src/etc/inc/interfaces.inc +++ b/src/etc/inc/interfaces.inc @@ -5295,21 +5295,3 @@ function get_ppp_uptime($port){ return $total_time; } } - -/** - * Get the NAS-IP-Address based on the current wan address - * - * Use functions in interfaces.inc to find this out - * - */ - -function getNasIP() -{ - $nasIp = get_interface_ip(); - - if (!is_ipaddr($nasIp)) { - $nasIp = '0.0.0.0'; - } - - return $nasIp; -}