User Manager/Hotspot Example: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
== Introduction ==  
== Introduction ==  
To make this setup, you should have running Hotspot server on the router.  
To make this setup, you should have running Hotspot server on the router.  
Let's consider configuration steps for HotSpot and User Manager routers, in order to use User Manager service for HotSpot users.
Let's consider configuration steps for HotSpot and User Manager routers, in order to use User Manager for HotSpot users.


== User Manager configuration ==
== User Manager configuration ==
* First, you need to [[Upgrading RouterOS | install]] User Manager [http://www.mikrotik.com/download.html package];
* First, you need to [[Upgrading RouterOS | install]] User Manager [http://www.mikrotik.com/download.html package];
* Create User Manager [[User Manager/Getting started #Create first subscriber | subscriber]];
* Create User Manager [[User Manager/Getting started #Create first subscriber | subscriber]];
* Add HotSpot router information,
* Add HotSpot router information to router list,


   / tool user-manager router add subscriber=MikroTik ip-address=x.x.x.x shared-secret=123456
   / tool user-manager router add subscriber=MikroTik ip-address=x.x.x.x shared-secret=123456


'x.x.x.x' is the address of the HotSpot router, 'shared-secret' should match on User Manager and HotSpot router.
'x.x.x.x' is the address of the HotSpot router, 'shared-secret' should match on both User Manager and HotSpot routers.
* Add user information,
* Add HotSpot user information, it is equal to 'ip hotspot user' when local HotSpot is used for clients


   / tool user-manager user add username=demo password=demo subscriber=MikroTik
   / tool user-manager user add username=demo password=demo subscriber=MikroTik


We discuss only basic configuration example, detailed information about [[User_Manager/Users | 'user']] menu configuration.
We discuss only basic configuration example, detailed information about [[User_Manager/Users | 'user']] menu configuration.
*You can use User Manager [[#Use_web_interface | web interface]] after first subscriber created.


== HotSpot configuration ==
== HotSpot configuration ==
Line 27: Line 28:
   / radius add service=hotspot address=y.y.y.y secret=123456
   / radius add service=hotspot address=y.y.y.y secret=123456


'Secret' is equal to User Manager router to excange information between them.
'Secret' is equal to User Manager router to exchange information between them.
'y.y.y.y' is the User Manager router address.
'y.y.y.y' is the User Manager router address.
* Note, first local HotSpot database is consulted, then User Manager database.

Revision as of 10:11, 17 October 2006

Introduction

To make this setup, you should have running Hotspot server on the router. Let's consider configuration steps for HotSpot and User Manager routers, in order to use User Manager for HotSpot users.

User Manager configuration

 / tool user-manager router add subscriber=MikroTik ip-address=x.x.x.x shared-secret=123456

'x.x.x.x' is the address of the HotSpot router, 'shared-secret' should match on both User Manager and HotSpot routers.

  • Add HotSpot user information, it is equal to 'ip hotspot user' when local HotSpot is used for clients
 / tool user-manager user add username=demo password=demo subscriber=MikroTik

We discuss only basic configuration example, detailed information about 'user' menu configuration.

  • You can use User Manager web interface after first subscriber created.

HotSpot configuration

  • Set HotSpot to use User Manager for HotSpot server users,
 / ip hotspot profile set hsprof1 use-radius=yes
  • Add radius client to consult User Manager for HotSpot service. 'address=127.0.0.1' points RADIUS client to use local router as RADIUS server, 'secret' is shared secret used to access the RADIUS server.
 / radius add service=hotspot address=y.y.y.y secret=123456

'Secret' is equal to User Manager router to exchange information between them. 'y.y.y.y' is the User Manager router address.

  • Note, first local HotSpot database is consulted, then User Manager database.