From 1d99a377517aee25df62b96b749060966f94b141 Mon Sep 17 00:00:00 2001 From: sever-sever Date: Thu, 4 Mar 2021 19:06:07 +0000 Subject: pppoe: T3386: Fix client ip-pool stop range (cherry picked from commit 52ee92b8edf851939c5ea3dc90fac3f5f90096c2) --- data/templates/accel-ppp/config_ip_pool.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/templates') diff --git a/data/templates/accel-ppp/config_ip_pool.j2 b/data/templates/accel-ppp/config_ip_pool.j2 index 973bc0071..3b0f68084 100644 --- a/data/templates/accel-ppp/config_ip_pool.j2 +++ b/data/templates/accel-ppp/config_ip_pool.j2 @@ -4,7 +4,7 @@ gw-ip-address={{ gateway_address }} {% endif %} {% if client_ip_pool.start is defined and client_ip_pool.stop is defined and client_ip_pool.start is not none and client_ip_pool.stop is not none %} -{{ client_ip_pool.start }}-{{ client_ip_pool.stop }} +{{ client_ip_pool.start }}-{{ client_ip_pool.stop.split('.')[3] }} {% endif %} {% if client_ip_pool.subnet is defined and client_ip_pool.subnet is not none %} {% for subnet in client_ip_pool.subnet %} -- cgit v1.2.3