ufm
March 24, 2014, 8:05am
1
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.
ufm
August 6, 2019, 12:46pm
7
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;
};
andriik
December 23, 2021, 11:09am
10
We also need this feature.