API Command to edit Radius IP address
Posted: Mon Aug 13, 2012 1:06 pm
Hi everyone,
I'm using an RB433 with RouterOS 5.19. Accessing API via PHP, using this Class: http://wiki.mikrotik.com/wiki/API_PHP_class
Tried this commands:
1.-
2.-
3.-
With no luck.. I just want to run this command via API:
Any help will be appreciated
I'm using an RB433 with RouterOS 5.19. Accessing API via PHP, using this Class: http://wiki.mikrotik.com/wiki/API_PHP_class
Tried this commands:
1.-
Code: Select all
$API->write('/radius/set/0/address/10.11.12.13');
Code: Select all
$API->write('/radius/set');
$API->write('=.id=0');
$API->write('=address=10.11.12.13');
Code: Select all
$API->write('/radius/set');
$API->write('=numbers=0');
$API->write('=address=10.11.12.13');
Code: Select all
/radius set numbers=0 address=10.11.12.13