ip-binding

i need send ip-binding command from vb.net
i connect to mikrotik router and can receipt by this command

Mikrotik.Send(“/ip/hotspot/ip-binding/print”, True)

for add a new mac address i use this command

Mikrotik.Send(“/ip/hotspot/ip-binding/add mac-address=28:98:7B:D7:0C:BB type=blocked”, True)

but not working

help PLZ

i can do it by this command
mikrotik.Send(“/ip/hotspot/ip-binding/add”, False)
mikrotik.Send(“=type=blocked”, False)
mikrotik.Send(“=mac-address=28:98:7B:D7:0C:BB”, False)
mikrotik.Send(“=address=0.0.0.0”, True)

its work

now i need to remove this mac address by this command
mikrotik.Send(“/ip/hotspot/ip-binding/remove”, False)
mikrotik.Send(“=.number=4”, True)


but not working

i try by this one

mikrotik.Send(“/ip/hotspot/ip-binding/remove”, False)
mikrotik.Send(“6”, True)

and router return " !done "

but not change anyting


please helpppppppppppppppppppp

i do it

mikrotik.Send(“=.id=*5”, True)

:laughing:
its working