Displaying 20 results from an estimated 800 matches similar to: "F-secure -> Openssh Compatibility (fwd)"
2000 Jun 28
2
F-secure -> Openssh Compatibility
On Tue, 27 Jun 2000, W. Scott Wilburn wrote:
> We have Macintoshes running Fsecure SSH client 1.0.1 which are unable to
> connect to a server running Openssh 2.1.1 on Red Hat 6.2.
>
> I believe that the problem is a bug with Fsecure, since a 30-day trial
> version of 1.0.2 works fine. I'm a bit reluctant to tell all the Mac users
> they have to spend money to upgrade,
1999 Nov 29
2
Food for thought regarding PAM
I'm new to this list, so please forgive me if this has been discussed
before.
It appears that one of the (commendable) design goals of OpenSSH is to
re-use existing open-source libraries wherever possible in order to
simplify the OpenSSH code and hopefully improve security in the process.
As exhibited by the current, non-open SSH, supporting all of the nuances
of authentication and logins
2000 Mar 03
1
FTP tunneling
If people haven't seen it, there's a pretty nice Java SSH client called
MindTerm:
http://www.mindbright.se/mindterm/
One of the things they did is add some hacks to make FTP tunneling over
SSH trivial. This client looks at the data being forwarded over port 21
(ftp control port), and looks for the FTP PORT and PASV commands used to
establish
2002 Oct 04
1
Confirming kerberos for upcoming OpenSSH portable release.
O.K. I know it was too late to make changes for the next release, but
thankfully there werent any changes needed. Kerberos over ssh protocol 1
worked out of the box from CVS today (2002/10/04-14:30)
The krb5 patches we were using (I think from Olaf K) was all in the
code. The only thing I had to patch to get things working was removing
the scard-install from the Makefile.in
The compiled code
2003 Sep 03
2
lme in R and Splus
Good Day,
Included below is some code to generate data and to fit a mixed effects
model to this fake data. The code works as expected when I call the
function "lme" in Splus but not in R.
The error message from calling lme in R is:
"Error in getGroups.data.frame(dataMix, groups) :
Invalid formula for groups"
I installed the nlme package for R around 20 August
2000 Feb 07
0
openssh (fwd)
Some people on the OpenSSH list have expressed an interest in Kerberos
version 5 support. Below is a (non-US) URL recently posted for a patch to
OpenSSH to work with Heimdal, the international K5 implementation. I
haven't checked to see if the patch would work with MIT or MIT-derived K5
libraries.
--
Mike Fisk, RADIANT Team, Network Engineering Group, Los Alamos National Lab
See
2002 Feb 13
3
xtabs
Hi,
In Splus if I call the function crosstabs() the output is a contigency
table; in each cell of the table is printed: N, N/RowTotal,
N/ColTotal, N/Total. N is the number of observations in each cell.
The same call to xtabs() in R will produce the contigency table but the
only entry in each cell is N.
How can I get the same relative frequencies that crosstabs() gives?
Thanks,
mike
--
2007 Sep 25
2
3d barplot in rgl
Is there anyway to plot a matrix using a 3d bar plot. Something like
bar3 in matlab?
The example in demo hist3d does a 3d barplot for binned data, but has
anyone tried something for a simple matrix with spaces betwen bars
and axis labels using matrix dimnames or 1,2,3?
stages<-letters[1:3]
A<-matrix(c(
0.21, 0.21,0.03,
0.55, 0.58, 0.09,
1.30, 1.35, 0.22), nrow=3, byrow=TRUE,
2009 Jun 04
3
WWDC Puppeteer lunch
Reminder for Mac Puppeteers going to WWDC
How about we meet for lunch at noon on Tuesday. Let''s try to get the
table closet to the Odwalla refrigerator, just for reference. We can
get more specific on this list on the 8th after we verify the set up.
I might even get there a little earlier and put down "reserved" tags.
---
Thank you,
Allan Marcus
Solutions Architect
Central
2000 Feb 28
3
SSH & xauth (fwd)
YO All!
Have you guys been following the SSH discussion on Bugtraq lately?
I like their idea the X forwarding should be OFF by default on the
client.
RGDS
GARY
---------------------------------------------------------------------------
Gary E. Miller Rellim 20340 Empire Ave, Suite E-3, Bend, OR 97701
gem at rellim.com Tel:+1(541)382-8588 Fax: +1(541)382-8676
---------- Forwarded message
2020 Sep 08
1
LLVM-HPC2020 Workshop at SC20 - Call for papers - Deadline Extended
Hi, everyone,
The paper submission deadline for this year's LLVM in HPC workshop has
been further extended to September 14th (AoE). We're looking for a few
additional submissions, so if you have anything that could be submitted
as a paper by the beginning of next week, please take advantage of this
opportunity. If you have any questions, please let me know.
SC20 is now a virtual
2000 Jul 20
3
scp over 2 hosts
Hi folks,
I have the that I must copy some through a Plag-Gateway of a Firewall over 2 host. A secure connection via "ssh - t hosta ssh -t hostb" works fine, but does this work with scp too? Icould not realize it either with scp (1.2.27 of ssh.com) or scp from openssh. Do you have any ideas?
Thanks
Stephan
2007 Feb 06
2
abbreviate dataframe for Sweave output
I wanted to print the first and last rows of some dataframes in Sweave
using dots in columns to separate the two parts. Head and tail almost
work, but I have problems with factors and row names.
z<-data.frame(id=letters[1:26], x=sample(1:26,26))
rbind(head(z,3), ".", tail(z,1))
id x
1 a 18
2 b 8
3 c 14
4 <NA> .
26 z 10
Warning message:
invalid
2008 Jan 24
2
[LLVMdev] LTO ?
Hi folks,
I've got an idea for something I may be able to do as a Link-Time-
Optimization pass,
but I can't seem to find how LTO gets used. My crude approach has
been to compile
LLVM for debugging, and then run gdb on llvm-ld with -O5 and two .bc
files, trying to
catch LTO in action. I've also scanned the compiled tools, and none
of them appear
to use the symbol
2006 Jan 23
1
Sample rows in data frame by subsets
Hi,
I need to resample rows in a data frame by subsets
L3 <- LETTERS[1:3]
d <- data.frame(cbind(x=1, y=1:10), fac=sample(L3, 10, repl=TRUE))
x y fac
1 1 1 A
2 1 2 A
3 1 3 A
4 1 4 A
5 1 5 C
6 1 6 C
7 1 7 B
8 1 8 A
9 1 9 C
10 1 10 A
I have seen this used to sample rows with replacement
d[sample(nrow(d), replace=T), ]
x y fac
7 1 7 B
2
2005 Dec 06
2
Constructing a transition matrix
Hi,
I would like to construct a transition matrix from a data frame with
annual transitions of marked plants.
plant<-c(1:6)
class<-c("seed","seed", "seed", "veg", "rep", "rep")
fate<-c("dead", "veg","veg","rep", "rep", "veg")
trans<-data.frame(plant, class, fate)
2002 May 28
0
random Forests
Hi,
I have a data set with 1000 observations and 260 predictors. The
predictor variables are all ordinal. There are 2 classes labeled as, F
and T with class proportions of 0.44 and 0.56, respectively.
In a call to the function randomForest() with mytry=1 and nodesize=1 and
ntree=100 the resulting classifier puts all observations in class T.
When I change nodesize to nodesize=5 I get the
2002 Mar 21
0
tree
Hi,
I have a dataframe, y, with 1000 rows and 266 columns. The first column
of y is a 2 level factor response; columns 2:266 are each ordinal
variables that can take on one of the values 1, 2, or 3.
I'm trying to fit a model with the calls:
(A) y.tree <- tree(pref~.,data=y,mindev=0,minsize=2)
and
(B) y.tree <- tree(pref~.,data=y,split='gini')
pref is the name of the factor
2001 Dec 10
10
hang on exit bug under Linux
>From what I understand, the problem is due to people's disagreement about what the "correct" behavior should be. I'm pretty sure that the following is the correct behavior from running rsh and ssh often (both fsecure and openssh).
Lets say you have a stupid script that does
while 1
do
sleep 1
done
Called foreverSleep on your remote host:
rsh remotehost
2007 Nov 14
1
reading tables from url
I'm trying to read some web tables directly into R. These are both
genome sequencing projects (eukaryotes and metagenomes) from NCBI and
look very similar; however, only the first one works.
http://www.ncbi.nlm.nih.gov/genomes/leuks.cgi
http://www.ncbi.nlm.nih.gov/genomes/lenvs.cgi
I added ?dump=selected to the end of the url string to get a tab-
delimited file (which is what happens