Hi Guys,
I'm totally new bie in configuring routerOS, currently I'm using
C# as my way of communicating to the rourterOS, I use the Api example there at the wiki api documentation and it works, my problem is how to edit and delete the added IP Address, this is how I add new IP
router.Send("/ip/address/add");
router.Send("=address=192.168.1.1/24");
router.Send("=network=10.10.10.0");
router.Send("=broadcast=10.10.10.255");
router.Send("=interface=ether1");
router.Send("=disabled=no");
router.Send(".tag=aaa", true);
I tried this statement for removing IP but an error occured
router.Send("/ip/address/remove");
router.Send("=address=192.168.1.1/24");
and for updating something like this
router.Send("/ip/address/set");
router.Send("=address=192.168.1.1/24");
by the way I'm currently using the latest version of the routerOS
Thanks in Advance