• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[Gelöst] IP V6 und CUPS

B.Hannes

Member
Hallo Alle,

ich habe ein für mich sehr seltsames Phänomen. Wenn ich IP V6 in den Netzwerkeinstellungen ausschalte, kann ich nicht mehr auf die CUPS Web-Oberfläche zugreifen.
Nun meine Frage: Wie kann ich CUPS umkonfigurieren, daß IP V6 NICHT mehr notwendig ist.

Effekte siehe folgende Meldungen:

Code:
http://localhost:631/
Die von Ihnen aufgerufene Adresse http://localhost:631/ ist zurzeit nicht erreichbar



ps -ef | grep cupsd
Code:
root      3012     1  0 16:36 ?        00:00:00 /usr/sbin/cupsd



more /etc/cups/cupsd.conf
Code:
# Only listen for connections from the local machine.
Listen localhost:631
Listen /var/run/cups/cups.sock






Ausgabe von tail -f /var/log/cups/error_log

nachdem ich CUPS neu gestartet habe.
/etc/init.d/cups restart

Code:
I [22/Feb/2009:16:30:28 +0100] Scheduler shutting down normally.
I [22/Feb/2009:16:30:28 +0100] Saving job cache file "/etc/cups/yes/job.cache"...
I [22/Feb/2009:16:30:28 +0100] Listening to ::1:631 (IPv6)
I [22/Feb/2009:16:30:28 +0100] Listening to /var/run/cups/cups.sock (Domain)
I [22/Feb/2009:16:30:28 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
I [22/Feb/2009:16:30:28 +0100] Using default TempDir of /var/spool/cups/tmp...
I [22/Feb/2009:16:30:28 +0100] Configured for up to 100 clients.
I [22/Feb/2009:16:30:28 +0100] Allowing up to 100 client connections per host.
I [22/Feb/2009:16:30:28 +0100] Full reload is required.
I [22/Feb/2009:16:30:28 +0100] Loaded MIME database from '/etc/cups': 37 types, 40 filters...
I [22/Feb/2009:16:30:28 +0100] Loading job cache file "/etc/cups/yes/job.cache"...
I [22/Feb/2009:16:30:28 +0100] Full reload complete.
I [22/Feb/2009:16:30:28 +0100] Cleaning out old temporary files in "/var/spool/cups/tmp"...
E [22/Feb/2009:16:30:29 +0100] Unable to open listen socket for address ::1:631 - Address family not supported by protocol.
I [22/Feb/2009:16:30:29 +0100] Listening to /var/run/cups/cups.sock on fd 1...
I [22/Feb/2009:16:30:29 +0100] Resuming new connection processing...
 
OP
B

B.Hannes

Member
Hallo,

konnte mein Problem lösen mit dem Beitrag: [gelöst] CUPS - Port wird vom Browser blockiert

in /etc/cups/cupsd.conf.


  • Listen /var/run/cups/cups.sock
    Listen localhost:631
    Listen IP_Adresse_des_Servers:631
eintragen.

Danach klappst auch ohne IP V6
 
Oben