ALT Linux sysadmins discussion
 help / color / mirror / Atom feed
From: "Владимир Саломатин" <salomatin.ru@mail.ru>
To: ALT Linux sysadmin discuss <sysadmins@lists.altlinux.org>
Subject: Re: [Sysadmins] помогите поднять Print server
Date: Mon, 14 Dec 2009 09:03:10 +0300
Message-ID: <E1NK41W-0003fy-00.salomatin-ru-mail-ru@f230.mail.ru> (raw)
In-Reply-To: <1260717435.9271.13.camel@mikes-ws.shuvaloffs.net>

> Вроде как опубликован. В CUPS-е на сервере соответствующие чекбоксы
> ("Разрешить совместный доступ к принтерам, подключенным к этой системе",
> "Анонсировать веб-интерфейс") выбраны.
> 
> # control cups
> server
> 
> 631 порт открыт. Но при этом на клиенте: Linux CUPS - не видит (нажатие
> на "Найти новый принтер" ни к чему не приводит, приходится добавлять
> руками; WinXP - виден, но висит состояние "Нет доступа", хотя
> пользователь виндовый на сервере прописан.
> Принтер: Samsung ML-2010 (USB)
> Из под линукса печатает через раз. 


Попробуйте в  конфигах /etc/cups/mime.types и /etc/cups/mime.convs  раскомментировать строчку application/octet-stream

Также привожу свой  /etc/cups/cupsd.conf  

Port 631      ##добавляем   . Это все равно что сделать # control cups server

# Only listen for connections from the local machine.
Listen localhost:631
Listen /var/run/cups/cups.sock

# Show shared printers on the local network.
Browsing On
BrowseOrder allow,deny
BrowseAllow all                 ##добавляем это
BrowseAddress @LOCAL     ##добавляем это

# Default authentication type, when authentication is required...
DefaultAuthType Basic

# Restrict access to the server...
<Location />
 Order allow,deny
 Allow all                ##добавляем это
</Location>

Правильнее разрешить не все, как в этом случае, а только нашей подсети

# Restrict access to the server...
<Location />
 Order Deny,Allow
 Deny From All
 Allow From 127.0.0.1
 Allow From 192.168.0.*
.
</Location>

# для того чтобы графически установить принтер на сервер 
(в ALT Linux 4.1 Desktop это можно не делать, там работает своя графика)
 с любого компа локальной сети 


# Restrict access to the admin pages...
<Location /admin>
  Encryption Required
  Order allow,deny
  Allow all                                     ##добавляем это, но после установки принтера уберем

</Location>

Далее по тексту




      reply	other threads:[~2009-12-14  6:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-07 10:24 Михаил Шувалов
2009-12-13 14:26 ` George V. Kouryachy
2009-12-13 15:17   ` Михаил Шувалов
2009-12-14  6:03     ` Владимир Саломатин [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1NK41W-0003fy-00.salomatin-ru-mail-ru@f230.mail.ru \
    --to=salomatin.ru@mail.ru \
    --cc=sysadmins@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux sysadmins discussion

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sysadmins/0 sysadmins/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sysadmins sysadmins/ http://lore.altlinux.org/sysadmins \
		sysadmins@lists.altlinux.org sysadmins@lists.altlinux.ru sysadmins@lists.altlinux.com
	public-inbox-index sysadmins

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sysadmins


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git