similar to: All SSH Version

Displaying 20 results from an estimated 1000 matches similar to: "All SSH Version"

2005 Mar 02
1
(Ssh / sft /scp password problems, agent runs fine) root
Hi :-) I forgott... user -> root hangs root -> root hangs user -> user runs fine fbeckman: ssh fbeckman at devil3 uname -a Password: SunOS devil3 5.8 Generic_117350-02 sun4u sparc SUNW,Ultra-Enterprise Runs fine fbeckman: ssh root at devil3 uname -a Password: SunOS devil3 5.8 Generic_117350-02 sun4u sparc SUNW,Ultra-Enterprise HANGS Frank
2002 Jun 11
1
SSH / PAM Problem
Hallo da mein English nicht so gut ist und bei der ?bersetzung auch noch Missverst?ndnisse auftretten k?nnten, hier das Orginal :-) Das Problem ist, dass bei der Kombination openssh pam und ldap, die Verbindung zum Ldapserver so lange offen gehalten wird bis die ssh Session geschlossen wird. Das ist nur bei SSH so ! Alle andere Dienste sprechen den Server an und schliessen nach Best?ttigung des
2003 Oct 15
2
[Bug 744] Login Problems
http://bugzilla.mindrot.org/show_bug.cgi?id=744 Summary: Login Problems Product: Portable OpenSSH Version: 3.7p1 Platform: Sparc OS/Version: All Status: NEW Severity: normal Priority: P2 Component: scp AssignedTo: openssh-bugs at mindrot.org ReportedBy: Frank.Beckmann at vodafone.com
2005 Mar 02
0
Ssh / sft /scp password problems, agent runs fine
Hi :-) When i use scp or sftp with password login, it dont com back fbeckman at zvadm6:/home/fbeckman $ scp /etc/hosts root at devil3:/var/tmp/ Password: hosts 100% 283KB 283.4KB/s 00:00 .... <sleep> ^CKilled by signal 2. fbeckman at zvadm6:/home/fbeckman $ Only Ctrl C helps Exsample 2: ssh devil3
2005 Mar 03
3
ssh hang problem under solaris 8
Hi :-) i have try a hang on exit patch that i found in the web for an old openssh version, but it dosent help :-( in a german gdb howto i found a tip that the backtrace output can help to analyse the problem.... is it a solaris problem ? Greetings Frank sshd: #0 0xff19d618 in _poll () from /usr/lib/libc.so.1 #1 0xff14d53c in select () from /usr/lib/libc.so.1 #2 0x000339a0 in
2003 Nov 06
5
[Bug 755] PermitEmptyPasswords ignored
http://bugzilla.mindrot.org/show_bug.cgi?id=755 Summary: PermitEmptyPasswords ignored Product: Portable OpenSSH Version: -current Platform: UltraSparc OS/Version: Solaris Status: NEW Severity: critical Priority: P2 Component: sshd AssignedTo: openssh-bugs at mindrot.org ReportedBy:
2002 Oct 16
2
SSH Bug 3.5p1 Expired Passwords
Hello in the new Openssh 3.5p1 is the sam Bug as in the 3.4p1 :-( When a User try to login with a expired Passwort, SSH denys the Acces to the System fbeckman at zvadmxz:/home/fbeckman # ssh -v fbeckman at xy OpenSSH_3.1p1, SSH protocols 1.5/2.0, OpenSSL 0x0090605f debug1: Reading configuration data /etc/ssh_config debug1: Rhosts Authentication disabled, originating port will not be trusted.
2009 Aug 18
2
(no subject)
Dear all, I have a problem with the function read.xls from the gdata package, error message see below. Two examples: First, I try to read my data, which does not work; Secondly, I tried the example code/data with the Iris data, which worked Any idea? Thanks, Lars > path<-"I:/subProjects/bh/HPGD/" > > setwd(path) > > xls <- "Platten_Liste_090421.xls"
2003 Sep 04
3
Cant locate my X100P
Hello After having installed my X100P, /proc/pci and /proc/interrupts dosent locate them. In my PCI list is it the Communication controller: Tiger Jet Network Inc ? then is dosent have a IRQ listed in /proc/pci.. All help appreciated Thanks and Regards Ajit ===========================/proc/pci================================== PCI devices found: Bus 0, device 0, function 0: Host
2007 Apr 17
1
Runing R in a bash script
Hello! I am having issues trying to plot to a ong (or jpg) when the R-code in a bash script is executed from cron. I can generate a pdf file, but when I try to write to a png, the file is created, but nothing is written. If I execute the bash script from my console, everything works file. Any ideas? In my cron I have SHELL=/bin/bash - otherwise /bin/shell is used and the folowing enery, so
2011 Mar 20
4
How to run dos cmd under wine
I neade to run a script under Wine but the script requires a cmd dos so atm dosent works (i neade to connect an ftp and upload some files) is thear any emulate that i can install on wine so that i have that posibility? Thank's Helen 8)
2011 Mar 17
1
Printing: Request to make return connection to client optional samba 3.5.x
Hi We have a network of Samba print-stations. There are complains from users of slow printing, which can be tracked to the return-connection which samba-server makes to print-client for dynamic update of printer-status. Since samba-servers are on different subnets than print-clients, the return-connection from samba to windows-client always fails in windows-firewall, but the tries to build up
2000 Nov 29
0
Bug Openssh v2.3.0
Hello together, we have very often a problem using OpenSSH v2.3.0 on Solaris 2.6. The daemon hangs up and it is not possible to login in. The -v option for ssh displays the following: # ssh -v zvadm1 SSH Version OpenSSH_2.3.0p1, protocol versions 1.5/2.0. Compiled with SSL (0x0090600f). debug: Reading configuration data /etc/ssh_config debug: Seeded RNG with 34 bytes from programs debug: Seeded
2013 Jan 26
0
Processed: switching email address
Processing commands for control at bugs.debian.org: > # bugs with submitter debian at abeckmann.de > submitter 479445 ! Bug #479445 [gnuplot] gnuplot: wrong line numbers for missing files reported during replot Changed Bug submitter to 'Andreas Beckmann <anbe at debian.org>' from 'Andreas Beckmann <debian at abeckmann.de>' > submitter 681568 ! Bug #681568
2006 Nov 29
3
Polycom 601 Second Incoming Call
Hi List, I have a Polycom 601 that when the user is on the phone they only hear one beep and the CID of the second incoming call is not shown. Is there a way to have the CID show up for the second call ? And a way to configure the phone to beep more often if there is another call coming in. The problem is that if the receptionist is on the phone and looking up something on the PC she some times
2011 May 26
3
change function scope?
I'm still getting used to R's scoping. I've run into the following situation value=0 thefunction <- function() print( value ) somefunction <- function() { value=99; thefunction() } somefunction() now, I understand that somefunction() returns 0 because thefunction() was defined with value=0 in its parent envrionment, it dosent look at all in the environment of somefunction. My
2008 Apr 17
1
imap voicemail
Hello. I'm trying to use gmail's imap feature w/ asterisk imap voicemail. I compiled c-client with the following settings: make lr5 IP6=4 and asterisk with: ./configure --with-imap=/usr/src/imap-2007a/ However if i enable any if the imap settings in voicemail.conf, asterisk starts acting funny and dosent allow any calls imapserver=imap.gmail.com imapport=993 mapfolder=Voicemail Where
2010 Feb 09
2
[LLVMdev] Help regarding Flow of function calls in llvm
No, this is not what I am looking for. I am looking for something like may be a debugger so that I can trace the function calls in source of llvm. llvm-db dosent work it says "debugger not implemented" when i try to use it. Can I use gdb or something like that with llvm. What I basically want is to know that when I run some Alias Analysis then from where the functions of file
1999 Jul 12
0
lmb can't sync browse list with dmb, find_domain_master_name_query_fail
Hello. Browsing accross subnets fails because "route2-3" can't sync its local browse list with the domain master browser "classix", which is also the WINS server. Everything else is fine. There is 1 and only 1 WINS server (classix) and no NT server. The error message in nmb log of route2-3 is: ==================================
2007 Jan 18
3
proposal: new DisableBanner client side option
hi all, we had quite a few requests recently so that SunSSH allowed to hush a banner on client side when in command-mode only. The argument usually is that the banner is mandatory due to legal reasons so first time login users should see it but that it causes problems when ssh is used from scripts after that. '-q' often seems not an option. RFC 4252 permits hushing banner in section