Summary:
Creating separate user accounts with limited permissions is a smart way to delegate tasks without giving full access. Mikrotik allows you to define user roles for better security and control.
Default Access Behavior
- By default, only theÂ
admin account exists, with full permissions. - It’s best to avoid sharing theÂ
admin login and instead create unique users with defined roles.
Step-by-Step: Create a New User via WinBox
- Open WinBox and log in usingÂ
admin credentials. - Go to System > Users
- Click the “+” button to add a new user
- Fill out the following:
- Name:Â Desired username (e.g.,Â
techsupport) - Group:Â ChooseÂ
read,Âwrite, orÂfull - Password:Â Enter a secureÂ
password for the user
- Name:Â Desired username (e.g.,Â
- Click Apply and then OK
Group Roles:
read – Can view settings but not make changeswrite – Can make most changes but can’t alter system-wide settingsfull – Same asÂadmin privileges
IMPORTANT: Avoid giving unnecessary full access to staff or clients.
To Create a New User via CLI (Terminal)
- Open Terminal in WinBox or connect via SSH
- Enter the following command:
/user add name=techsupport group=read password=SecurePass123
Replace techsupport with your desired username, and SecurePass123 with a strong password.
To List All Users via CLI
To Remove a User via CLI
Best Practices:
- Create a separate user for each technician or team member
- Assign theÂ
read group to those who only need monitoring access - Regularly review and remove unused accounts under System > Users
- Always use strongÂ
passwords for all users