Community discussions

MikroTik App

Search found 10 matches

by jmaria62
Mon Dec 22, 2014 9:29 am
Forum: General
Topic: Captive portal with remote authentication
Replies: 2
Views: 1423

Re: Captive portal with remote authentication

You can use UserManager and configure Radius to do it.
by jmaria62
Wed Dec 17, 2014 12:44 pm
Forum: Beginner Basics
Topic: use manager multiple connections simultaneously
Replies: 0
Views: 721

use manager multiple connections simultaneously

Hi, I'm Josep Maria from Spain. I'm configuring an mikrotik user manager to let wifi access in a hotel. I would like to know if it's possible to permit access simultaneously to many devices using the same uss/pass. I'm triying use the Shared users field from the profiles but I think it not works to ...
by jmaria62
Tue Dec 16, 2014 9:42 am
Forum: Beginner Basics
Topic: VPN access into a 'home' network (behind a Mikrotik router)
Replies: 5
Views: 31310

Re: VPN access into a 'home' network (behind a Mikrotik rout

Hi, I used this link recently and it works fine, spanish version.

http://inkalinux.com/foros/showthread.p ... PTP-Client
by jmaria62
Tue Dec 16, 2014 9:37 am
Forum: Beginner Basics
Topic: delete all users usermanager
Replies: 4
Views: 6611

Re: delete all users usermanager

Hi, can you say me how convert the next command in .net code? /tool user-manager user remove [find] I not know how to use the query "[find]" into the vb .net code. For example I try to send this code but it not works mk.Send("/tool/user-manager/user/remove", False) mk.Send("...
by jmaria62
Mon Dec 15, 2014 11:26 am
Forum: Beginner Basics
Topic: delete all users usermanager
Replies: 4
Views: 6611

Re: delete all users usermanager

Hi, I need to synchronize the tables periodically , maybe every day. The code I'm triying to delete all the users is: mk.Send("/tool/user-manager/user/remove [find]", False) mk.Send("=customer=admin", True) and the response from mikrotik is !trap=message=no such command! Any idea...
by jmaria62
Thu Dec 04, 2014 1:08 pm
Forum: Beginner Basics
Topic: user manager .net api
Replies: 1
Views: 800

user manager .net api

Hi, I'm Josep Maria from Spain. I'm triying work with usermanager remotely using .net api. I can add an new user to user manager with this code: mk.Send("/tool/user-manager/user/add", False) mk.Send("=customer=admin", False) mk.Send("=username=s", False) mk.Send("=...
by jmaria62
Mon Dec 01, 2014 2:52 pm
Forum: Beginner Basics
Topic: delete all users usermanager
Replies: 4
Views: 6611

delete all users usermanager

Hi, I need to make a routine in .net to synchronize our user's table with the users into user manager. I think one solution is delete all the users from user manager and after insert one by one. What do you think? It's possible to send one command from .net to delete all the records? Is there anothe...
by jmaria62
Fri Nov 28, 2014 2:58 pm
Forum: Beginner Basics
Topic: .net user manager api
Replies: 4
Views: 2088

Re: .net user manager api

Your answer is perfect to me. I need only add and remove users to the user manager.

Thanks a lot.

Regards.
by jmaria62
Fri Nov 28, 2014 11:27 am
Forum: Beginner Basics
Topic: .net user manager api
Replies: 4
Views: 2088

Re: .net user manager api

Excuse me but if I write in the terminal this commands they work:

[admin@MikroTik] > /tool user-manager user remove
a b c d e f g test numbers
[admin@MikroTik] > /tool user-manager user remove a
[admin@MikroTik] >


Regards
by jmaria62
Wed Nov 26, 2014 2:55 pm
Forum: Beginner Basics
Topic: .net user manager api
Replies: 4
Views: 2088

.net user manager api

Hi, cay you say me why I can add users to user manager using this .net code mk.Send("/tool/user-manager/user/add", False) mk.Send("=customer=admin", False) mk.Send("=user=a", False) mk.Send("=password=a",True) but I can't remove users using this code mk.Send(&...