Displaying 20 results from an estimated 700 matches similar to: "Intermittent port forwarding problems openssh 2.9.2p and up"
2001 Nov 13
1
Intermittent port forwarding problems openssh 2.9.2p and up
Hi,
I have configured ssh for port forwarding local 8080 to out company
web proxy server.
# ssh -L 8080:proxy:8080 myname at ssh-host
I've tried the configuration by using
# telnet localhost 8080
and it works fine. But whenever I try to use it with any http browser,
it just fails.
I investigated the problem with Ethereal and I've noticed that packets
travel on loopback interface,
2011 Oct 27
2
[LLVMdev] Resolving sizeof's; target triples; type optimizations
Thanks for the answers.
> See http://llvm.org/docs/FAQ.html#platformindependent . If you're
> dealing with C code, it isn't too hard to add a new target to clang;
> send an email to cfe-dev if you need help with that. The "target
> datalayout" information is purely a hint to the optimizers.
My experience this far has been mainly with using llvm-gcc and llvmc,
2012 Aug 29
0
[LLVMdev] Correct usage of isysroot argument
I'm do looking for the features the isysroot gives. I have
"/myownheaders/usr/include" and "/myownheaders/usr/local/include"
folders (they contain the actual header files).
Again, the strange that gcc seem to be working with it.
In the mean time I've found this
(http://lists.cs.uiuc.edu/pipermail/llvmbugs/2011-December/021136.html),
isn't it related?
> From:
2002 Nov 06
2
scp output redirection doesn't work...
> OpenSSH_3.4p1, SSH protocols 1.5/2.0, OpenSSL 0x0090607f
> AIX 4.3.3.0 Maintenance Level 10.
>
> I have run a test on my boxes and found the following:
>
> > scp test <remote_machine>:~/test
> test 100% |*****************************| 16000
> 00:00
> >
>
> scp works fine, but when I tried to redirect stdio/stderr to files they
>
2010 Jul 07
0
scp forces original access permissions when owner lacks write access
Hello,
I am not sure if this is a bug or a feature...
When I use scp to copy a file to a filesystem which forces or masks
permissions on new files (in my case a samba share) the resulting
permissions depend on whether the owner had write access in the original
permissions. If the owner did have write access then the copied file ends up
with the permissions specified by the filesystem. If the
2001 Jun 15
2
openssh 2.9p1: data loss when stdout sent to a pipe
We recently tried upgrading openssh from 2.5.2p2 to 2.9p1
and discovered that it no longer worked to feed the output from a remote
command into a pipe, unless the output was short and the pipe was very
fast at processing its input.
Example 1: ssh remote_machine some_command | less
(where "some_command" generates a lot of output) now fails after
the first screenful, with a
2020 Nov 12
3
run firefox via an ssh tunnel
If the point is to access a specific web site only the remote machine can get to, you can also do it with port forwarding:
ssh -L 8000:ip_of_web_site_to_access_from_remote:443 remote_machine
and then locally run any browser, and access
https://localhost:443
(assuming it's https. If it's plain http, use "http" and 80). Note that you'll be breaking some aspects of https
2002 Aug 25
1
"busy hang" on e2fsck (on a ext3 partition)
(There really doesn't seem to be a dedicated e2fsprogs list, so this was
the next-best place I could find. I don't place much faith in the
sourceforge forums..)
The filesystem in question is a 480 gig ext3 partition, on a hardware
RAID5 controller. It's approximately 90% full, with something
like 115K files. Kernel 2.4.20-pre4, on a Duron 900.
As I type this, e2fsck has used up
2000 Jul 31
0
[patch] smbmount fixes for samba-2.0.7, testers wanted!
Hello all
This patch tries to remove a few bugs from smbmount. It would be nice to
get some testing+feedback on this from others using smbmount and possibly
get these things fixed for the next release of samba.
It does the following:
* Change lib/debug.c to allow changing your mind on being interactive.
A second call to setup_logging should now replace the effects of a
previous call. (hmm,
2011 Oct 27
0
[LLVMdev] Resolving sizeof's; target triples; type optimizations
Hello
> In doing this, I'm essentially overriding any "target triple" existing in
> the IR, breaking up the process into a multi-stage operation (llvm-gcc, opt
> and llc running independently) and picking whatever target I want, right?
No. This won't work since, as indicated in the FAQ entry IR derived
from C/C++ is not target neutral, so you cannot 'just'
2004 Sep 20
1
SSH - tool
Hello ,
In my new project we start to use the following commands : ssh , scp and sftp .
Server: hp-ux
Environment : ksh
Ssh version : 2
I have a few question about the ssh definition :
1. Description:
When we connect to user via script ( batch mode ) by using the command "ssh -l remote_user remote_host" - this session is stuck ( wait input from user - password).
2020 Nov 12
0
run firefox via an ssh tunnel
On Thu, Nov 12, 2020 at 12:56:15PM +0000, Bernstein, Noam CIV USN NRL (6393) Washington DC (USA) via CentOS wrote:
>
> If the point is to access a specific web site only the remote
> machine can get to, you can also do it with port forwarding:
> ssh -L 8000:ip_of_web_site_to_access_from_remote:443 remote_machine
> and then locally run any browser, and access
>
2018 Sep 12
0
eventlog functionality
On 2018-09-12 09:44 AM, Jeremy Allison via samba wrote:
> On Wed, Sep 12, 2018 at 09:30:19AM -0700, Ray Klassen via samba wrote:
>>
>> and from the what the hell department. I did it. Comparing
>>
>> https://docs.microsoft.com/en-us/windows/desktop/api/lmshare/ns-lmshare-_session_info_1
>>
>>
>> and
>>
>>
2002 Feb 27
1
Possible big/small endian problem Samba 2.2.2 and 2.2.3a
Hi
We are running Samba on an IBM zSeries mainframe on Linux kernel 2.2.16 and
are running
into problems when using winbindd and security=domain. We are doing a proof
of concept using
opensource and I really hope we can pull it off!
Before I raise a bug report, I would appreciate it if someone can tell me if
this is a known
problem. I have not found anything on it yet.
We have winbindd set up
2006 Nov 04
0
populating select boxes, view or controller?
Over the past few days I''ve seen a number of examples posted here
where people are populating their select boxes in the view; that is:
<% options = Model.find(:all, ...).map{|m| [m.name, m.id]} -%>
<%= select(:object, :attribute, options, ... %>
Is this the preferred way of doing this? I''ve generally done this in
my controller, where I can catch exceptions and
2002 Nov 01
0
[LLVMdev] totally lost
shouldn't the malloc() be something like malloc(sizeof(int)*size)?
You're allocating 5 bytes, which is probably not the size of an int in
llvm (it's definitely not the size of an int in sparc), and later
you're trying to access c[1], which starts at byte 4 but is out of
bounds.
On Fri, 1 Nov 2002, Xiaodong Li wrote:
> Dear LLVM:
>
> I wrote a small testcase and I can
2003 Aug 07
1
I'm confused about W2K rpcclient "getdriver" response
Hi,
I'm trying to query a W2K PDC for printer driver information in order to
install those same drivers on a SAMBA 2.2.7 server. I executed an
enumdrivers ms-rpc call to get the list of drivers, but the getdriver
command fails for all but a couple of the drivers. I've included a
representative instance below:
> cmd = getdriver "HP LaserJet 4050 Series PCL"
> Error
2004 Feb 16
0
Problems with trust account passowrds ???
Hi,
I'm getting near a thousand error messages a day on only one of my two samba
servers that both participate in the same domain:
[2004/02/16 09:17:52, 0]
rpc_client/cli_trust.c:change_trust_account_password(248)
2004/02/16 09:17:52 : change_trust_account_password: Failed to change
password for domain ITS.
The server getting the errors is version 2.2.7a-security-rollup-fix running
on
2004 Nov 23
0
upgrading print server from 2.2.8a to 3.0.8
Hello. I'm having a bit of trouble with my upgrade. I installed 3.0.8
over a copy of the 2.2.8a directory, and when I went to start it up, got
errors about accessing the secrets.tdb. I was able to use tdbdump to
access it and created one in the new format using tdbtool, but then it's
also unable to access other old-format tdb files, most notably ntdrivers
and ntprinters. The only
2004 Nov 24
1
upgrading print server from 2.2.8a to 3.0.8 - more info
Here's what I sent yesterday, more info follows:
> Hello. I'm having a bit of trouble with my upgrade. I installed 3.0.8
> over a copy of the 2.2.8a directory, and when I went to start it up, got
> errors about accessing the secrets.tdb. I was able to use tdbdump to
> access it and created one in the new format using tdbtool, but then it's
> also unable to access