Displaying 20 results from an estimated 10000 matches similar to: "ssh-agent2?"
2000 Oct 08
1
OpenSSH-2.2.0 problem with ssh.com ssh-agent2
The OpenSSH and ssh.com agents use a completely different set of messages for
dealing with DSA keys, so I don't expect the OpenSSH client to be able to get
DSA keys from ssh-agent2. However, if I'm running "ssh-agent2 -1", I expect
OpenSSH to be able to use RSA keys stored in ssh-agent2's agent1 compatibility
box. And it does. However, there's a problem. If I'm
2000 Jun 09
1
ssh-agent support of ssh2
Folks,
Any idea of when ssh2 support will be available within ssh-agent and
ssh-add?
Many thanks,
--------------------------------------------------------
Doug Manton, AT&T EMEA Firewall and Security Solutions
douglas.manton at uk.ibm.com
--------------------------------------------------------
"If privacy is outlawed, only outlaws will have privacy"
2006 Jun 21
1
Calling same queue member all the time
Hello,
I'm trying to setup a queue where call goes from agent to agent in strictly
set order.
I have queue (roundrobin):
Agent1 penalty 1
Agent2 penalty 2
Agent3 penalty 3
When I call to this queue Agent1 rings. If this agent does not take the
call, after set timeout same Agent1 is dialed again.
The call never goes to Agent2 (only when Agent1
2005 Jan 06
2
3 site asterisk installation question
Good Day list,
I have a friend who is interested in implementing an asterisk
implementation at his offices.
The configuration would consist of the following
Site A ---- Asterisk Box With 12 incoming lines and 15 phones
Extensions 101-115
Site B ---- Asterisk Box With 4 incoming lines and 7 phones
Extensions 201-207
Site C ---- Asterisk Box With 4 incoming lines and 6 phones
2000 Jun 02
6
scp creating root files
Folks,
I noticed that whenever I scp'ed a file to my test server (running OpenSSH
2.1.0p2, and then tested with p3) it was created owned by root.
/home/me $ ls -al .profile
-rwx------ 1 me group 1056 Jan 18 1999 .profile
/home/me $ scp .profile me at server:test
me at server's password:
.profile 100%
2004 Dec 30
1
Queues strategy
Seeing as the "leastrecent" strategy does not work for us (it will
*always* call the leastrecent agent, even if that agent is busy, and
will not move to the next agent) I thought I'd try the roundrobin strategy.
This seemed to work - however, I had my supervisor telling me today that
a certain agent seemed to be getting most of the calls - and when I
checked, out of 50 inbound
2011 Oct 07
2
[LLVMdev] [cfe-dev] Release: Two Weeks 'Til 3.0 Branch
On Oct 7, 2011, at 1:29 AM, John Wiegley wrote:
>>>>>> Duncan Sands <baldrick at free.fr> writes:
>
>> If we had a larger set of volunteers that could help qualify releases AND
>> buildbots to continuously test the new release criteria, then we are willing
>> to expand this criteria. We haven't had a lot of volunteers step up in this
>> area
2010 May 29
4
ARGH... once again samba causes "permission" errors.
I've been doing unix sys. admin for nearly 20 years and yet EVERY single
time I have to setup samba I have configuration problems.
Before we start let's clear up some common misunderstandings: I have
googled for the answer. I have spent the last six hours doing so and trying
various "suggestions". Most of these suggestions point to solutions
involving chown or chmod. These are
1998 Jun 02
0
SAMBA digest 1706
>
> ------------------------------
>
> Date: Tue, 02 Jun 1998 17:28:41 +0000
> From: Jeff Wiegley <jeff@la.usweb.com>
> To: samba@samba.anu.edu.au
> Subject: ARGH!! why does my samba server lose domain master elections??
> Message-ID: <35743649.5CF3502F@la.usweb.com>
>
> Subject pretty much says it all.
>
> (And *please* don't point me
2011 Oct 07
0
[LLVMdev] [cfe-dev] Release: Two Weeks 'Til 3.0 Branch
>>>>> Duncan Sands <baldrick at free.fr> writes:
> If we had a larger set of volunteers that could help qualify releases AND
> buildbots to continuously test the new release criteria, then we are willing
> to expand this criteria. We haven't had a lot of volunteers step up in this
> area though.
Just to note, BoostPro has already expressed a willing to run
2019 May 29
0
Making a package CITATION file from BibTeX
On Thu, 30 May 2019, Dr Gregory Jefferis wrote:
> Dear Colleagues,
>
> I would like to provide a CITATION file for my package nat.nblast [1].
>
> I have the correct citation in BibTeX format [2]. How can I convert this
> BibTeX to the format needed by R for a package CITATION file (I have a
> lot of other packages needing citations ...).
(1) You can use read.bib() from the
2004 May 29
3
Odd behaviour with "asterisk -rx"
Hello,
I was planning to use the output of asterisk -rx "show queues" in a
script when I noticed that sometimes asterisk only outputs the first
line of the response. e.g:
debian:/# asterisk -rx "zap show channels"
Chan Extension Context Language MusicOnHold
debian:/# asterisk -rx "zap show channels"
Chan Extension Context Language
2001 Jan 23
5
sshd hanging after multiple successive logons
Folks,
I use OpenSSH to poll a number of remote servers once every five minutes
and obtain a number of attributes. This is done using ssh as "sexec":
ssh stats at remotehost getstats
This returns the output of the getstats program which is parsed, etc...
The problem is that after so many connections, the parent sshd hangs and
does not accept any more connections. I have
2012 Mar 02
1
seeing feedback when R CMD check pkg runs unit tests.
good day here,
I'm maintaining a couple of R modules, both on r-forge.
tests for these modules are written making use of unit testing, and I
make use of the svUnit module, part of SciViews-R.
I also make use of examples in the .Rd files.
my question regards 'R CMD check pkg'.
if an _example_ is not run correctly, I get clear feedback on the
command line where I run 'R CMD
2000 Aug 10
3
Control-c not work under openssh?
>This issue has actually cropped up again recently in my testing. When I
>do use Solaris login (UseLogin yes), a ton of the important environment
>variables (like TERM, etc) don't get passed. Is that normal behavior?
Looking at the source os session.c it is obvious that when you use login
the environment is not passed:
execl(LOGIN_PROGRAM, "login",
2018 Nov 28
0
named arguments discouraged in `[.data.frame` and `[<-.data.frame`
They can get bitten in the last two lines of this example, where the 'x'
argument is not first:
> d <- data.frame(C1=c(r1=11,r2=21,r3=31), C2=c(12,22,32))
> d[1,1:2]
C1 C2
r1 11 12
> `[`(d,j=1:2,i=1)
C1 C2
r1 11 12
Warning message:
In `[.data.frame`(d, j = 1:2, i = 1) :
named arguments other than 'drop' are discouraged
> `[`(j=1:2,d,i=1)
Error in (1:2)[d, i =
2008 Apr 27
2
[Bug 15736] New: Account request
http://bugs.freedesktop.org/show_bug.cgi?id=15736
Summary: Account request
Product: xorg
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy: younes.m at
2001 Jan 16
1
AIX <--> Solaris X11 Forwarding Problem
I have an X11 application installed on a Solaris 5.7 server. ?The server
runs the OpenSSH 2.3.0p1 daemon. ?I then SSH to this server from OpenSSH
2.3.0p1 under AIX with X11 forwarding enabled. ?I can run X utilities, such
as xclock and xterm, without any problems. ?However, the X11 application I
require (a Privacy Manager GUI) creates an empty window frame.
If I telnet from the AIX server to the
2001 Jun 04
1
Not an OpenSSH Feature Request
I am not going to put my 2 cents in about added features. I just
appreciate the reams of technical support the OpenBSD developers offers us
for the code they give us for free. $400 for an F-Secure license? I have
my OpenSSH T-shirt!
My request will add zero bytes to the OpenSSH code base, not even in the
contribs directory.
Could the subject lines on the mailing list begin with something like
2001 May 09
2
running sshd under AIX 4.3.3 ?
Hi,
If anyone has managed to get sshd to run as a subsystem in the System
Resource Controller under AIX 4.3.3 (a la mkssys), then please let me know
how you did it...
I can mkssys and startsrc it, but it dies immediately, leaving a child sshd
running with another PID than startsrc reported, and lssrc reports sshd
inoperative.
Is sshd a process that should stay in foreground, not forking? Or does