comp.security.ssh
  Home FAQ Contact Sign in
comp.security.ssh only
 
Advanced search
January 2008
motuwethfrsasuw
 123456 1
78910111213 2
14151617181920 3
21222324252627 4
28293031    5
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.security.ssh Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  EVT '08 Call for Papers         


Author: Lionel Garth Jones
Date: Jan 31, 2008 14:41

---------------------------------------
2008 USENIX/ACCURATE Electronic Voting Technology Workshop (EVT '08)
July 28-29, 2008
San Jose, CA, USA
Sponsored by USENIX: The Advanced Computing Systems Association, and
ACCURATE: A Center for Correct, Usable, Reliable, Auditable, and
Transparent Elections
Refereed paper submissions due: March 28, 2008, 11:59 p.m. PDT
Panel proposals due: May 2, 2008
http://www.usenix.org/evt08/cfpa
-----------------------------------------

The Call for Papers for the 2008 USENIX/ACCURATE Electronic Voting
Technology Workshop is now available.
Show full article (2.85Kb)
no comments
  Slow SVN access over SSH         


Author: Harold Weissman
Date: Jan 31, 2008 09:00

I have two (similar) boxes A and B using the same Internet
connection to access an SVN server S. A accesses S via a VPN - thus, in
order to check out a source tree T from A I do

svn co svn+ssh://S/T

in A.

B, however, accesses S via SSH tunneling (B could possibly use
the VPN but let's just assume that it can't) as follows:

1) In B, in ~/.subversion/config, under the [tunnels] section add

sbox = ssh -p 2022

2) In B do

ssh -fngT -L 2022:S:22 -C M ping -i 30 localhost > /dev/null 2>&1

where M is a box that B can SSH into directly from the Internet, and M
and S are in the same internal LAN, not directly accessible from A
(except through the VPN which, like I said, B can't use.)

3) In B get the tree T with the command

svn co svn+sbox://localhost/T
Show full article (1.40Kb)
no comments
  ssh forwarding request denied         


Author: adirtymindisajoyforever
Date: Jan 30, 2008 05:03

Hi all,

I have an ssh tunnel between two machines: local port 5000 will be
tunneled
to port 1521 on the remote side.

A telnet localhost 5000 results in the following error messages on
the remote machine;

sshd[28421]:[ID800047 FACILITY_AND_PRIORITY] Received request to
connect to host 127.0.0.1 port 1521 , but the request was
denied.

I have the same setup on a number of machines but only this one is
causing trouble.
Any help appreciated.
no comments
  allowing LocalForward but restricting RemoteForward         


Author: phil-news-nospam
Date: Jan 29, 2008 20:52

I can restrict certain SSH users/keys from doing shell commands by putting
something like:

command="false"

on the line with their public key in the authorized_keys file, allowing
them to do only that one command, or to use the -N option to do no command.
That way they can do -L and -R to set up secure TCP paths.

For some users, I'd like to further limit this so they can only do -L and
not do -R at all. I could use:

no-port-forwarding

on the key line in the authorized_keys file, but that would turn off BOTH
-L and -R. But I want to leave -L on.

Perhaps permitopen="host:port" might work for SOME of these users, since
a subset only needs to connect to one specific host:port. But some others
might need to do more than that. I may even want to let them do -D.
I just don't want them to do -R at all.

Any ideas? Something I overlooked?
Show full article (1.16Kb)
no comments
  Re: X11 Forward : entire desktop ?         


Author: Harrie
Date: Jan 29, 2008 18:49

Steph wrote:
> On 192.168.0.1 (Win32) , I've installed an X11 server using cygwin
> On 192.168.0.2 (Debian), I've installed and set up sshd daemon.
>
> On 192.168.0.1, when I use this :
> xhost +192.168.0.2

If you use X11 Forward I don't think it's necessary to use xhost, since
the connection is comming (via a tunnel) from the localhost.
> ssh -Y user@192.168.0.2
> echo $DISPLAY
> ----> answers localhost:10.0
> keyes &
>
> keyes is transfered and displayed on the screen of 192.168.0.1
Show full article (3.27Kb)
no comments
  no password ssh         


Author: reg1ster
Date: Jan 29, 2008 11:15

Greetings

I am trying to get ssh to work without prompting for a password.
I can get this to work but there seems to be a quirk that I wanted to
know if it was a known issue/feature.

If I place my public rsa key into the authorized_keys file of another
user on another server, I can not ssh to that user without being
prompted for a password. However it seems that my user that I am
ssh'ing with also exists on that other server then I am not prompted
for a password. Even though I do not have the password for the same
userid on the other server.

Is this a feature or something ?
3 Comments
  Re: Loggin within PLink         


Author: zethw
Date: Jan 29, 2008 08:15

On Jan 10, 3:13 pm, zethw hotmail.com> wrote:
> Hi all,
>
> I am using Putty to SSH onto a win2k server. Whilst on the server I
> need to run telnet and rlogin from the command prompt/DOS shell. This
> is handled very well by PLink BUT is there any way to impliment
> logging on Plink? I know it works on putty and I can get putty
> logging just fine but not PLink.
>
> I have even tried getting plink to use a saved putty profile that
> contains the settings about logging being on etc - still no log is
> written.
>
> Any help VERY gratefully received. Alternate suggestions for tools to
> replace PLink or Putty that work instead are also welcome :O)
>
> Thanks
>
> Moose
Show full article (1.03Kb)
2 Comments
  SSH-1.99-OpenSSH_4.1 vs. SSH-1.99-OpenSSH_3.8.1.p1 on AIX 5.3         


Author: RG
Date: Jan 27, 2008 20:59

Are there any known issues with SSH-1.99-OpenSSH_4.1, as with version
SSH-1.99-OpenSSH_3.8.1.p1 I don't have to set keep alive parameter?

I am not sure if this is related, I have a ksh script that calls a db2 pl
stored procedure several times when it comes to certain iteration, it ends
up hanging in the middle. I experienced this with an environment that has
SSH-1.99-OpenSSH_4.1 but not with a different environment that has
OpenSSH_3.8.1.p1.

Thanks in advance
no comments
  Re: X11 Forward : entire desktop ?         


Author: Hugo Villeneuve
Date: Jan 27, 2008 20:01

"Steph" _gmail.com> wrote:
> Hi,
>
> On 192.168.0.1 (Win32) , I've installed an X11 server using cygwin
> On 192.168.0.2 (Debian), I've installed and set up sshd daemon.
>
>
> but when I try to launch X Desktop (startx), the Desktop is launched on
> 192.168.0.2... not transfered to 192.168.0.1
>
> I have already transfered X11 Desktop for a long time but I can't find how
> redo it ... What did I forgot ? Even when exporting DISPLAY to
> 192.168.0.1:0.0, X Desktop continues to be displayed on .2, not on .1...
>
> Thanks for you help... and for my fowl memory ...
>
> - Steph

Your X server that came with cygwin most likely as a full session mode
via XDMCP over a direct local connection.
Show full article (1.16Kb)
no comments
  port forwarding         


Author: Helmut Jarausch
Date: Jan 24, 2008 10:00

Hi,

from my home I have (only) access to my office PC via ssh (and I have
root permissions, too).

I'd like to test a webserver behind the firewall.
Can I use ssh in some way to forward the ssh port to port 8080 ?

Many thanks for a hint,

Helmut Jarausch

Lehrstuhl fuer Numerische Mathematik
RWTH - Aachen University
D 52056 Aachen, Germany
1 Comment
 
1 2 3 4