Feature request: Framed-Route and Mikrotik-Address-List

Hi!

Mikrotik have nice feature - Radius attribute “Mikrotik-Address-List”.
But if add route for additional IP Addresses via Radius attribute “Framed-Route” - this addreses do not add to address list.

Feature request: add addresses listed in “Framed-Route” to address list selected in “Mikrotik-Address-List”

WBR,
Fyodor.

+1 :wink:

+100 :wink:

+1 ..

+100… :smiley:

I need this feature

After five years this feature still not implemented… And absolutely no reaction either from support or from developers.

Please Mikrotik, this feature is a must have.
Asked since the first day Mikrotik released Mikrotik-Address-List feature.

http://forum.mikrotik.com/t/new-feature-dynamic-ppp-address-lists/21394/1

Thank you

Workaround

For profile on UP

:delay 1s;
:local remoteAddr $"remote-address"
:local interfaceName [/interface get $interface name]
:if ( [:len [/ip firewall address-list find address=$remoteAddr and dynamic=yes]] > 0 ) do={ 
	:foreach i in=[/ip firewall address-list find address=$remoteAddr] do={
		:local addressList [/ip firewall address-list get $i list]
		:local routeStatic [/ip route get [find gateway=$interfaceName and static=yes] dst-address]
		/ip firewall address-list add list=$addressList address=$routeStatic comment="Framed-Route - $remoteAddr"
	};
};

For profile on DOWN

:local remoteAddr $"remote-address"
:foreach i in=[/ip firewall address-list find comment="Framed-Route - $remoteAddr"] do={
	/ip firewall address-list remove $i;
	};

We also need this feature.