data5248

Commodore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2014-08-05
20:57
826 views
Password protect iPrint web page
Is there a way to require a e-dir user name and password on the iPrint Printer List Web Page.
3 Replies
smflood

Fleet Admiral
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2014-08-06
11:01
On 05/08/2014 21:06, data5248 wrote:
> Is there a way to require a e-dir user name and password on the iPrint
> Printer List Web Page.
Is this iPrint on OES or NetWare? Which version?
By "iPrint Printer List Web Page" do you mean <server>/ipp?
Are you looking for people to log in using their own eDirectory
credentials to access the web page or a generic username and password?
HTH.
--
Simon
Novell Knowledge Partner
------------------------------------------------------------------------
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below. Thanks.
------------------------------------------------------------------------
> Is there a way to require a e-dir user name and password on the iPrint
> Printer List Web Page.
Is this iPrint on OES or NetWare? Which version?
By "iPrint Printer List Web Page" do you mean <server>/ipp?
Are you looking for people to log in using their own eDirectory
credentials to access the web page or a generic username and password?
HTH.
--
Simon
Novell Knowledge Partner
------------------------------------------------------------------------
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below. Thanks.
------------------------------------------------------------------------
data5248

Commodore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2014-08-06
16:55
smflood;2327972 wrote:
On 05/08/2014 21:06, data5248 wrote:
> Is there a way to require a e-dir user name and password on the iPrint
> Printer List Web Page.
Is this iPrint on OES or NetWare? Which version?
OES 11 SP2
By "iPrint Printer List Web Page" do you mean <server>/ipp?
yes, <server>/ipp
Are you looking for people to log in using their own eDirectory
credentials to access the web page or a generic username and password?
Their own eDirectory
HTH.
--
Simon
Novell Knowledge Partner
------------------------------------------------------
------------------------------------------------------------------------kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below. Thanks.
------------------------------------------------------------------------
Is this iPrint on OES or NetWare? Which version?
OES 11 SP2
By "iPrint Printer List Web Page" do you mean <server>/ipp?
yes, <server>/ipp
Are you looking for people to log in using their own eDirectory
credentials to access the web page or a generic username and password?
Their own eDirectory
smflood

Fleet Admiral
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2014-08-07
15:57
On 06/08/2014 16:56, data5248 wrote:
> -*_OES_11_SP2_*-
> -_YES,_<SERVER>/IPP_-
> _-*Their_own_eDirectory*-_
Okay you should be able to edit
/etc/opt/novell/iprint/httpd/conf/iprint_g.conf and change the
"<LocationMatch /(ids|ipp)>" section.
I'd actually suggest changing the "<LocationMatch /(ids|ipp)>" line to
"<LocationMatch /ids>" so /ids remains as was and then adding a new
section as follows
--begin--
<LocationMatch /ipp>
Order deny,allow
Allow from all
Require valid-user
AuthType Basic
AuthBasicProvider ldapdn
AuthName "<treename>"
AuthLDAPDNURL "ldaps://<server>:636/<context>???(object
Class=user)"
AuthLDAPDNRemoteUserIsDN on
AuthzLDAPDNAuthoritative Off
AuthLDAPDNAllowDNAuth on
</LocationMatch>
---end---
Replace <treename>, <server>, and <context> accordingly.
This is based on the "<IfModule mod_ipp.c" section in
/etc/opt/novell/iprint/httpd/conf/iprint_ssl.conf file.
Note the above may involve username and password being transmitted in
clear across the wire (if <server> isn't the same server as iPrint)
whereas iprint_ssl.conf uses SSL (for /ipps).
HTH.
--
Simon
Novell Knowledge Partner
------------------------------------------------------------------------
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below. Thanks.
------------------------------------------------------------------------
> -*_OES_11_SP2_*-
> -_YES,_<SERVER>/IPP_-
> _-*Their_own_eDirectory*-_
Okay you should be able to edit
/etc/opt/novell/iprint/httpd/conf/iprint_g.conf and change the
"<LocationMatch /(ids|ipp)>" section.
I'd actually suggest changing the "<LocationMatch /(ids|ipp)>" line to
"<LocationMatch /ids>" so /ids remains as was and then adding a new
section as follows
--begin--
<LocationMatch /ipp>
Order deny,allow
Allow from all
Require valid-user
AuthType Basic
AuthBasicProvider ldapdn
AuthName "<treename>"
AuthLDAPDNURL "ldaps://<server>:636/<context>???(object
Class=user)"
AuthLDAPDNRemoteUserIsDN on
AuthzLDAPDNAuthoritative Off
AuthLDAPDNAllowDNAuth on
</LocationMatch>
---end---
Replace <treename>, <server>, and <context> accordingly.
This is based on the "<IfModule mod_ipp.c" section in
/etc/opt/novell/iprint/httpd/conf/iprint_ssl.conf file.
Note the above may involve username and password being transmitted in
clear across the wire (if <server> isn't the same server as iPrint)
whereas iprint_ssl.conf uses SSL (for /ipps).
HTH.
--
Simon
Novell Knowledge Partner
------------------------------------------------------------------------
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below. Thanks.
------------------------------------------------------------------------