Re: Bridging console port to a telnet session

2007-01-17 Thread Garrett Cooper
On Jan 17, 2007, at 11:00 AM, Kailas Ramasamy wrote: Hi Mike, Thanks a lot. This is what I was looking for. -Kailas On 1/17/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > I read through fork() and exec() man pages

Re: Bridging console port to a telnet session

2007-01-17 Thread Kailas Ramasamy
Hi Mike, Thanks a lot. This is what I was looking for. -Kailas On 1/17/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > I read through fork() and exec() man pages but I couldn't find anything > related to > this. Basical

Re: Bridging console port to a telnet session

2007-01-17 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > I read through fork() and exec() man pages but I couldn't find anything > related to > this. Basically, I want to launch a telnet session from a process and pass > in > /dev/console as stdin and stdout. Well, you don't

Re: Bridging console port to a telnet session

2007-01-17 Thread Kailas Ramasamy
Hi Mike, I read through fork() and exec() man pages but I couldn't find anything related to this. Basically, I want to launch a telnet session from a process and pass in /dev/console as stdin and stdout. Thanks Kailas On 1/16/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Ka

Re: Bridging console port to a telnet session

2007-01-16 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi Mike, > Yes, that what I am planing but I want to do this dynamically. Do you know > how to launch a > telnet session from a process?. How do I pass stdin and stdout to the telnet > from a process?. See the fork() and exec() m

Re: Bridging console port to a telnet session

2007-01-16 Thread Kailas Ramasamy
Hi Mike, Yes, that what I am planing but I want to do this dynamically. Do you know how to launch a telnet session from a process?. How do I pass stdin and stdout to the telnet from a process?. Thanks Kailas On 1/16/07, Mike Meyer <[EMAIL PROTECTED]> wrote: In <[EMAIL PROTECTED]>, Kailas Ramas

Re: Bridging console port to a telnet session

2007-01-16 Thread Andrew Thompson
On Tue, Jan 16, 2007 at 03:03:55PM -0800, Kailas Ramasamy wrote: > Hi, > Within a FreeBSD system, I want to telnet to another system and bridge that > session to the > console port so that when an user connects to the system via console port, > it is automatically > redirected to other system for I

Re: Bridging console port to a telnet session

2007-01-16 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Kailas Ramasamy <[EMAIL PROTECTED]> typed: > Hi, > Within a FreeBSD system, I want to telnet to another system and bridge that > session to the > console port so that when an user connects to the system via console port, > it is automatically > redirected to other system for

Bridging console port to a telnet session

2007-01-16 Thread Kailas Ramasamy
Hi, Within a FreeBSD system, I want to telnet to another system and bridge that session to the console port so that when an user connects to the system via console port, it is automatically redirected to other system for I have already established a telnet session. Your help is greatly appreciate