Hi, I m using ssh to make tunnels i would like to know if it is technically possible to modify ssh serveur to modify http header (to put in header a new line containing IP of client using tunnel) Help would be much appreciate Thanks ___________________________________________________________________________ D?couvrez une nouvelle fa?on d'obtenir des r?ponses ? toutes vos questions ! Profitez des connaissances, des opinions et des exp?riences des internautes sur Yahoo! Questions/R?ponses http://fr.answers.yahoo.com
On Fri, 2 Feb 2007, cyrilparis wrote:> Hi, > > I m using ssh to make tunnels > i would like to know if it is technically possible to modify ssh serveur to > modify http header (to put in header a new line containing IP of client using > tunnel) >Of course it's possible, but don't expect OpenSSH developers integrating such a change into OpenSSH. Cause of this is data stream modification not being the appropriate work of both SSH client and server. The appropriate place for such data stream modification would be some program or script at the head of the tunnel passing the modified data to SSH tunnel. -- Sincerely Your, Dan.
On Fri, Feb 02, 2007 at 08:57:26AM +0000, cyrilparis wrote:> Hi, > > I m using ssh to make tunnels > i would like to know if it is technically possible to modify ssh > serveur to modify http header (to put in header a new line > containing IP of client using tunnel) > > Help would be much appreciateI'm not sure what you want to accomplish, but perhaps the ProxyCommand option can be used for it? //Peter