Is there a way to limit who can access an instance on the cloud via an IP range, or by user?
I have a client who need users to be able to log into the system only when they are at their premises
Is there a way to limit who can access an instance on the cloud via an IP range, or by user?
I have a client who need users to be able to log into the system only when they are at their premises
Thanks for the reply, Anyone knows if limitation can be on the user level?
maybe have a logic hook that logs out the user if not in the range.
As mentioned in a call center, they don´t want users to be able to log from home
There is a hook event which triggers after login: https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_10.0/Architecture/Logic_Hooks/User_Hooks/after_login/
You could implement business logic there to check if the user is within the allowed range, and take action if it isn't. Probably need to think about redirecting after you kill the session to a vanilla HTML page which explains the error.
There is a hook event which triggers after login: https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_10.0/Architecture/Logic_Hooks/User_Hooks/after_login/
You could implement business logic there to check if the user is within the allowed range, and take action if it isn't. Probably need to think about redirecting after you kill the session to a vanilla HTML page which explains the error.