I want implement docsis provisioning with mikrotik dhcp server, authenticated with radius.
The radius authentication is ok, i get the file-name in radius reply to "RADIUS_MT_STR1" variable. But.
Noticed that, some modems don't request the option 67, but it needed to start up.
Trided to write static string to the network "Boot File Name" option and it sended, but if configured in options as option 67 it not sended.
This is not sended:
This sends "$(RADIUS_MT_STR1)" as string to the client, what is wrong too./ip dhcp-server option add code=67 name=bootfile_name value="\$(RADIUS_MT_STR1)"
I really need to force send that option, or use the variable in network./ip dhcp-server network add address=10.10.10.0/24 boot-file-name="\$(RADIUS_MT_STR1)" dhcp-option-set=modem dns-server=1.1.1.1,8.8.8.8 gateway=10.10.10.1 next-server=10.10.10.254
Anyone has any ideas how to get this work?
Thanks.