Re: SSH Streams

2006-10-09 Thread Tzafrir Cohen
On Mon, Oct 09, 2006 at 11:07:10AM -, [EMAIL PROTECTED] wrote: > I seem to remember some kind of application or configuration option where > multiple SSH sessions could be tunneled over 1 already open SSH session. > Basically it wouldn't require a re-authentication each time, it would continue

Re: Time Change Problem

2006-10-09 Thread Amos Shapira
On 10/10/06, Noam Meltzer <[EMAIL PROTECTED]> wrote: Please mind that when doing upgrades, a regular file would probably not get updated, while using symlink will assure you that the newest timezone file will always be used.Please mind that I didn't invent this. I was only reporting what Debian's s

Re: Nfs mounting and unmounting a machine on which a shutdown is performed later on

2006-10-09 Thread guy keren
NFS soft-mounting means data could be lost. you never use this option on a production host that serves important data. instead, you make sure the server it mounted the file-system from, is more reliable then the server mounting the NFS share. this is because, a soft-mount may lose data in case th

Re: Nfs mounting and unmounting a machine on which a shutdown is performed later on

2006-10-09 Thread Shaul karl
Dan Shimshoni <[EMAIL PROTECTED]> writes: > > Hello, In a thread from linux-il from about half a year a go , there was a discussion about nfs mounting to a machine (on which is afterewards there is a shut down). see: > http://www.mail-archive.com/linux-il@cs.huji.ac.il/msg43493.htmlOne I g

Re: Time Change Problem

2006-10-09 Thread Oron Peled
On Monday, 9 בOctober 2006 13:49, Amos Shapira wrote: > On 09/10/06, Ehud Karni <[EMAIL PROTECTED]> wrote: > > Just a very minor correction, the zoneinfo file is not copied, > > it is symlinked, to /etc/localtime. > It probably depends on the distro, on Debian Etch it's a regular file, not a > syml

Re: netif_rx and dev stack - Solved !!!

2006-10-09 Thread Oron Peled
On Monday, 9 בOctober 2006 10:59, Chava Leviatan wrote: > I added a delay at the exit routine, just prior to the thread stop, > so that the last __kfree_skb() called by net_tx-action will take place > prior to the thread stop A delay never "solves" a synchronization problems It only delays (pun i

Re: SSH Streams

2006-10-09 Thread Ilya Konstantinov
You are referring to the "master mode" of OpenSSH. See 'man ssh' about the -M option. (Yes, this has nothing to do with SSH agents, forwarding, tunneling and other things which were offered in this thread.) [EMAIL PROTECTED] wrote: I seem to remember some kind of application or configurati

Re: Time Change Problem

2006-10-09 Thread Noam Meltzer
Please mind that when doing upgrades, a regular file would probably not get updated, while using symlink will assure you that the newest timezone file will always be used.Also, if you need /usr to be available when the zoneinfo access is crucial, and it is not already mounted, you have bigger probl

Re: SSH Streams

2006-10-09 Thread Gal Gur-Arie
I think that this info can help you:http://www.rzg.mpg.de/networking/tunnelling.html  ssh  -l myuserid  -L :work:22  gate  cat -This means: open an ssh connection as user myuserid to host gate and execute the command cat -. While the session is open, redirect all connections to port on the

Re: SSH Streams

2006-10-09 Thread dubrowin . 35432245
I think this is the software I was thinking about: http://zippo.taiyo.co.jp/~gotoh/ssh/connect.html Now that I look at this more closely, it doesn't seem to be as good as I remember. :-( Shlomo --- Ira Abramov <[EMAIL PROTECTED] wrote: Quoting [EMAIL PROTECTED], from the post of Mon

Re: SSH Streams

2006-10-09 Thread Ira Abramov
Quoting [EMAIL PROTECTED], from the post of Mon, 09 Oct: > The problem I'm having is when I need to do something on a remote > server, I can only send a limited number of commands on the remote server, > and any subsequent commands I need (say grepping through 2 files in different > places without

Re: SSH Streams

2006-10-09 Thread dubrowin . 35432245
The whole point is to save the time involved with reauthenticating. The software (not SSH) keeps the tunnel open and allows multiple flows over the same ssh tunnel. The problem I'm having is when I need to do something on a remote server, I can only send a limited number of commands on the r

Re: SSH Streams

2006-10-09 Thread Ira Abramov
Quoting [EMAIL PROTECTED], from the post of Mon, 09 Oct: > No, I'm very familiar with screen. > > > > What I'm looking for essentially connects > to a remote host once, and every subsequent connection request goes down the > existing tunnel instead of requiring reauthentication. if you want ssh

Re: SSH Streams

2006-10-09 Thread Amos Shapira
On 9 Oct 2006 11:35:28 -, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:What I'm looking for essentially connects to a remote host once, and every subsequent connection request goes down theexisting tunnel instead of requiring reauthentication.  ShlomoI suspect your are talking abouttwo separate

Re: SSH Streams

2006-10-09 Thread Gilboa Davara
On Mon, 2006-10-09 at 11:07 +, [EMAIL PROTECTED] wrote: > I seem to remember some kind of application or configuration option where > multiple SSH sessions could be tunneled over 1 already open SSH session. > Basically it wouldn't require a re-authentication each time, it would continue > to a

Re: Time Change Problem

2006-10-09 Thread Amos Shapira
On 09/10/06, Ehud Karni <[EMAIL PROTECTED]> wrote: On Thu, 5 Oct 2006 21:06:10 Oron Peled wrote:>> Specific to RedHat/CentOS/Fedora, they copy the local timezone> file (/usr/share/zoneinfo/Asia/Jerusalem) into /etc/localtimeJust a very minor correction, the zoneinfo file is not copied, it is symlin

Re: SSH Streams

2006-10-09 Thread dubrowin . 35432245
No, I'm very familiar with screen. What I'm looking for essentially connects to a remote host once, and every subsequent connection request goes down the existing tunnel instead of requiring reauthentication. Shlomo --- [EMAIL PROTECTED] wrote: On Mon, Oct 09, 2006 at 11:07:10AM -,

Re: SSH Streams

2006-10-09 Thread Geoffrey S. Mendelson
On Mon, Oct 09, 2006 at 11:07:10AM -, [EMAIL PROTECTED] wrote: > I seem to remember some kind of application or configuration option where > multiple SSH sessions could be tunneled over 1 already open SSH session. > Basically it wouldn't require a re-authentication each time, it would continue

Nfs mounting and unmounting a machine on which a shutdown is performed later on

2006-10-09 Thread Dan Shimshoni
Hello, In a thread from linux-il from about half a year a go , there  was a discussion about nfs mounting to a machine (on which is afterewards there is a shut down). see: http://www.mail-archive.com/linux-il@cs.huji.ac.il/msg43493.htmlOne of the suggestions there was to use umount -f , and one su

SSH Streams

2006-10-09 Thread dubrowin . 35432245
I seem to remember some kind of application or configuration option where multiple SSH sessions could be tunneled over 1 already open SSH session. Basically it wouldn't require a re-authentication each time, it would continue to allow the SSH connection over the existing connection. Does anyone r

Re: Time Change Problem

2006-10-09 Thread Ehud Karni
On Thu, 5 Oct 2006 21:06:10 Oron Peled wrote: > > Specific to RedHat/CentOS/Fedora, they copy the local timezone > file (/usr/share/zoneinfo/Asia/Jerusalem) into /etc/localtime Just a very minor correction, the zoneinfo file is not copied, it is symlinked, to /etc/localtime. Ehud. -- Ehud Karni

Re: netif_rx and dev stack - Solved !!!

2006-10-09 Thread Chava Leviatan
Hi, The crashes were solved. I added a delay at the exit routine, just prior to the thread stop, so that the last __kfree_skb() called by net_tx-action will take place prior to the thread stop Thanks for everyone who tried to help. chava >> Hello, >> >> >> I have a 2.4.18 machine with 2 e