Your message dated Wed, 22 Aug 2001 21:07:59 +0200 (CEST)
with message-id <[EMAIL PROTECTED]>
and subject line These bugs can be closed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Darren Benham
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 13 Dec 1999 09:51:17 +0000
Received: (qmail 18026 invoked from network); 13 Dec 1999 09:51:16 -0000
Received: from www.solsoft.fr (195.68.105.100)
  by master.debian.org with SMTP; 13 Dec 1999 09:51:16 -0000
Received: from keep-your-net-secure-with-Net-Partitioner.solsoft.fr by 
www.solsoft.fr (8.9.1/8.9.1) with ESMTP id KAA03079 for <[EMAIL PROTECTED]>; 
Mon, 13 Dec 1999 10:51:10 +0100 (CET)
Received: from bigruth.solsoft.fr ([EMAIL PROTECTED] [172.22.1.5])
        by keep-your-net-secure-with-Net-Partitioner.solsoft.fr (8.9.3/8.9.3) 
with ESMTP id KAA03275
        for <[EMAIL PROTECTED]>; Mon, 13 Dec 1999 10:50:42 +0100
Received: by bigruth.solsoft.fr (Postfix, from userid 1006)
        id F1EA22B01C; Mon, 13 Dec 1999 10:50:41 +0100 (CET)
From: <[EMAIL PROTECTED]>
Subject: ssh2: X11 forward not working
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.7
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 13 Dec 1999 10:50:41 +0100 (CET)
Sender: [EMAIL PROTECTED]

Package: ssh2
Version: 2.0.13-4
Severity: normal

the X11 forwarding dosn't work when connection to an other ssh2 deamon
(the DISPLAY envirnement variable is not set, and ther is no redirection
of port 6010).

here it is the verbose output of the ssh2 connection.

1.bigruth.sicard.~>ssh -v +x miniruth
Development-time debugging not compiled in.
To enable, configure with --enable-debug and recompile.
debug: hostname is 'miniruth'.
debug: Unable to open /home/sicard/.ssh2/ssh2_config
Development-time debugging not compiled in.
To enable, configure with --enable-debug and recompile.
debug: connecting to miniruth...
debug: entering event loop
debug: ssh_client_wrap: creating transport protocol
debug: ssh_client_wrap: creating userauth protocol
debug: Remote version: SSH-1.99-2.0.13 (non-commercial)
debug: Host key found from the database.
debug: Unable to open /home/sicard/.ssh2/identification
sicard's password: 
debug: Ssh2/ssh2.c:304/client_authenticated: client_authenticated
Last login: Mon Dec 13 1999 09:58:34 +0100
Linux miniruth 2.2.13 #9 dim oct 31 10:21:20 CET 1999 i686 unknown

Copyright (C) 1993-1999 Software in the Public Interest, and others

Most of the programs included with the Debian GNU system are
freely redistributable; the exact distribution terms for each program
should be described in the individual files in /usr/share/doc/*/copyright
or /usr/doc/*/copyright.

Debian GNU comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
You have mail.
1.miniruth.sicard.~>



        Franck

-- System Information
Debian Release: potato
Kernel Version: Linux bigruth 2.2.13 #3 SMP Wed Oct 27 11:09:21 CEST 1999 i686 
unknown

Versions of the packages ssh2 depends on:
ii  libc6           2.1.2-10       GNU C Library: Shared libraries and timezone
ii  libncurses4     4.2-3.4        Shared libraries for terminal handling
ii  zlib1g          1.1.3-5        compression library - runtime
        ^^^ (Provides virtual package libz1)

--- Begin /etc/ssh2/ssh2_config (modified conffile)
*:
        Port                            22
        ForwardX11                      yes
        Ciphers                         AnyStdCipher 
        IdentityFile                    identification
        AuthorizationFile               authorization
        RandomSeedFile                  random_seed
        VerboseMode                     no
        #PasswordPrompt                 "[EMAIL PROTECTED]'s password: "
        PasswordPrompt                  "%U's password: "
        #LocalForward                   "110:pop3.ssh.fi:110"
        #RemoteForward                  "3000:foobar:22"
        Ssh1AgentCompatibility          none
        #Ssh1AgentCompatibility         traditional
        #Ssh1AgentCompatibility         ssh2
        #SshSignerPath                  ssh-signer2
        NoDelay                         no
        KeepAlive                       yes
        
#

--- End /etc/ssh2/ssh2_config

--- Begin /etc/ssh2/sshd2_config (modified conffile)
*:
        Port                            22
        ListenAddress                   0.0.0.0
        Ciphers                         AnyStd
        IdentityFile                    identification
        AuthorizationFile               authorization
        HostKeyFile                     hostkey
        PublicHostKeyFile               hostkey.pub
        RandomSeedFile                  random_seed
        ForwardAgent                    yes
        ForwardX11                      yes
        PasswordGuesses                 3
        MaxConnections                  0 
        PermitRootLogin                 yes
        AllowedAuthentications          publickey,password
        ForcePTTYAllocation             no
        VerboseMode                     no
        PrintMotd                       yes
        CheckMail                       yes
        UserConfigDirectory             "%D/.ssh2"
        SyslogFacility                  AUTH
        Ssh1Compatibility               yes
        UserKnownHosts                  yes
        subsystem-sftp                  sftp-server

--- End /etc/ssh2/sshd2_config

--- Begin /etc/init.d/ssh2 (modified conffile)
#! /bin/sh
#
#
#
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/sshd2
NAME=sshd2
PORT=22
DESC="Secure Shell server v2"
test -f $DAEMON || exit 0
set -e
case "$1" in
  start)
        echo -n "Starting $DESC: "
        start-stop-daemon --start --quiet --pidfile 
/var/run/${NAME}_${PORT}.pid \
                --exec $DAEMON
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
        start-stop-daemon --stop --quiet --oknodo \
                --pidfile /var/run/${NAME}_${PORT}.pid --exec $DAEMON
        echo "$NAME."
        ;;
  reload|force-reload)
        echo "Reloading $DESC configuration files."
        start-stop-daemon --stop --signal 1 --quiet --pidfile \
                /var/run/${NAME}_${PORT}.pid --exec $DAEMON
        ;;
  restart)
        echo -n "Restarting $DESC: "
        start-stop-daemon --stop --quiet --oknodo --pidfile \
                /var/run/${NAME}_${PORT}.pid --exec $DAEMON
        sleep 1
        start-stop-daemon --start --quiet --pidfile \
                /var/run/${NAME}_${PORT}.pid --exec $DAEMON
        echo "$NAME."
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
        exit 1
        ;;
esac
exit 0

--- End /etc/init.d/ssh2
---------------------------------------
Received: (at 52610-done) by bugs.debian.org; 22 Aug 2001 19:08:13 +0000
>From [EMAIL PROTECTED] Wed Aug 22 14:08:13 2001
Return-path: <[EMAIL PROTECTED]>
Received: from hermes.fachschaften.tu-muenchen.de [129.187.176.19] 
        by master.debian.org with smtp (Exim 3.12 1 (Debian))
        id 15ZdMK-0002VV-00; Wed, 22 Aug 2001 14:08:13 -0500
Received: (qmail 17460 invoked from network); 22 Aug 2001 19:08:03 -0000
Received: from mimas.fachschaften.tu-muenchen.de (HELO mimas) (129.187.176.26)
  by hermes.fachschaften.tu-muenchen.de with SMTP; 22 Aug 2001 19:08:03 -0000
Date: Wed, 22 Aug 2001 21:07:59 +0200 (CEST)
From: Adrian Bunk <[EMAIL PROTECTED]>
X-X-Sender:  <[EMAIL PROTECTED]>
To:  <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>, 
     <[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]>
Subject: These bugs can be closed
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Delivered-To: [EMAIL PROTECTED]


These bugs in packages maintained by Debian QA were already closed (and
fixed packages are already in unstable) but only marked as fixed.

cu
Adrian

-- 

Get my GPG key: finger [EMAIL PROTECTED] | gpg --import

Fingerprint: B29C E71E FE19 6755 5C8A  84D4 99FC EA98 4F12 B400

Reply via email to