Hello,
We would like to have some external users to use an external access to work on specific project. I can imagine how to do that.
But the tricky part is that we don't want all our internal users to rely on the external access of JIRA.
We want all internal users to use the intranet to access JIRA.
Is it possible to open an external access for some specific users only?
Or is it possible to allow only some projects to be displayed when using external access? (example: user may be able to see more projects if uses the intranet access)?
Thank you, any help appreciated :)
Hello,
I'm not sure if this will work or if it's even worth the effort, but I believe it is possible to write custom authenticators for JIRA (https://confluence.atlassian.com/display/DEV/Single+Sign-on+Integration+with+JIRA+and+Confluence).
In this authenticator, you could check the IP address of the request and if it is not internal, only allow certain users to authenticate. IP address you can get through the HttpServletRequest object that is passed to authentication function:
public boolean login(HttpServletRequest request, HttpServletResponse response, String username, String password, boolean cookie) throws AuthenticatorException { request.getRemoteAddr(); ...
I'm not sure if there is an easier way to do this.
Thank you Andris,
I will think about this! As you said it may not be worth the effort
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.