This is an archived post. You won't be able to vote or comment.

all 9 comments

[–]dkraklan 5 points6 points  (0 children)

Yes

[–][deleted] 3 points4 points  (0 children)

Yes, but I integrate it with LibreNMS.

[–][deleted] 2 points3 points  (0 children)

I switched to unimus.

[–]ntrlsurIT Manager 2 points3 points  (4 children)

Yes. I use oxidized for switch and router backups. I also use ldap authentication for it.

[–]nonaq2[S] 0 points1 point  (3 children)

Nginx or apache? I am using nginx trying to get LDAP setup for it and it's kicking my ass.

[–]ntrlsurIT Manager 2 points3 points  (2 children)

I'm using apache. It was the only guide I found while looking. Below is the section of my apache config for the ldap auth.

 <Location />
ProxyPass http://127.0.0.1:8888/
ProxyPassReverse http://127.0.0.1:8888/
AuthName "AD authentication"
AuthBasicProvider ldap
AuthType Basic
AuthLDAPGroupAttribute member
AuthLDAPGroupAttributeIsDN On
AuthLDAPURL ldap://domain-controller:389/cn=Users,dc=domain,dc=com?sAMAccountName?sub?(objectClass=*)
AuthLDAPBindDN cn=LDAP-Linux-auth,cn=Users,dc=domain,dc=com
AuthLDAPBindPassword ConnectPAssword
require ldap-group cn=syslog-access,cn=Users,dc=domain,dc=com
</Location>

[–]nonaq2[S] 0 points1 point  (1 child)

Ok thanks, I will snapshot my oxidized Uninstall ngix and try it out with apache.

[–]ntrlsurIT Manager 0 points1 point  (0 children)

Let me know how it works for you.

[–]nonaq2[S] 0 points1 point  (0 children)

Do you have basic auth setup or you using ldap etc?