similar to: openssh porting

Displaying 20 results from an estimated 700 matches similar to: "openssh porting"

2008 May 22
2
ssh porting
I am swetha doing final btech.i want to do project regarding ssh.I want to port this openssh open source code to vxworks-6.4.Is it possible to port it to vxworks-6.4?why becoz there is no support for ssh in vxworks-6.4.And also i got key files /etc/ssh/ in linux.how can i got such type of files in vxworks-6.4.Please give me a suggestion regardind this. Thank you swetha.
2002 Apr 18
1
xxx_kex possible memory leak?
Howdy, I'm working on porting the portable version of OpenSSH to the Nucleus RTOS. So far I've had a great deal of success. However, I've run into a possible memory leak, and I'm not sure whether I need to write my own cleanup function for it or not. The xxx_kex global (defined in sshd.c) seems to not get freed. I've had difficulty finding a cleanup routine for it. I've
2008 May 20
2
ssh implementation
hello, This is sridevi from ceeyes software technologies.I have a plan to implement this ssh opensource code and to port into vxworks-6.4.But there is no ssh support for vxworks-6.4.Is it possible to port the opensource code into vxworks-6.4.And also i noticed that key files in /etc/ssh/.How can i get those related files in vxworks-6.4.Give me a suggestion regarding this. Thank you, sridevi
2002 Jun 28
2
auto login and logout
I am a test engineer, testing SSH server implementation of SSH into one of our switches. How can I automate the login and logout of an SSH client from the command line? I have in a script file the following, but I get prompted for the password. How can I automate the password and the exit. ssh2 -l $1 $2 (ssh2 -l <username> <host ip>) Theresa C. Karpowicz Software
2013 Jun 04
7
[Bug 2116] New: SSH to Nortel/Avaya switch fails
https://bugzilla.mindrot.org/show_bug.cgi?id=2116 Bug ID: 2116 Summary: SSH to Nortel/Avaya switch fails Product: Portable OpenSSH Version: 6.2p1 Hardware: All OS: All Status: NEW Severity: major Priority: P5 Component: ssh Assignee: unassigned-bugs at mindrot.org
2007 Oct 16
6
RailsStory runner - empty response
I generated a new rails app then installed rspec and rspec_on_rails from trunk. I then created a sample story: require File.dirname(__FILE__) + "/helper" Story "View Home Page", %{ As a user I want to view my home page So that I can get a birds eye view of the system }, :type => RailsStory do Scenario "Publisher with no videos" do When
2002 Jan 18
1
OpenSsh to Vxworks
Hello Group, I'm not registered in this mailing list, however it will be great if someone can help me with these questions: I have "OpenSsl" up and running on Vxworks. How difficult will it be to port OpenSsh "server" part on to Vxworks ?. Should I take the portable version or the regular version ?. Just compiling LIBSSH_OBJ, SSH_OBJ, SSHD_OBJ, LIBCOMPAT will serve my
2006 Feb 08
3
FW: [0AB-0B7CC3DA-E2A7] RE: I appear to be attacking others
Im assuming, that because I never filled out a support ticket with these people that someone else has done so using my email address. Anyone else experiencing anything like this? Or is this normal from the CentOS mailing list? The topic in the email is a topic ive responded to on the list, but have not visited any website to fill in any support requests... If someone is using my email address
2004 Aug 10
1
ADS membership with Samba 3.0.4
Hi, We are in the process of evaluating the possibility of porting Samba 3.0.4 to VxWorks. Features wise we don't see any problems. But our main concern is on the security. Since we do not have the concept of Users and Groups on VxWorks, we cannot have any authentications as such. So, the other possibility is to pass on the authentication to another Server on the network, typically a AD
2015 May 02
10
[Bug 2392] New: unable to ssh with umac has algorithm. error:Disconnecting packet:corrupted MAC on input.
https://bugzilla.mindrot.org/show_bug.cgi?id=2392 Bug ID: 2392 Summary: unable to ssh with umac has algorithm. error:Disconnecting packet:corrupted MAC on input. Product: Portable OpenSSH Version: 5.0p1 Hardware: PPC OS: Linux Status: NEW Severity: critical Priority: P5
2005 Apr 01
11
I want to blog!
This isn''t Rails or Ruby related, but I just need some advice and thought I''d ask the bright individuals here. I want to start my own blog but I''m not sure where to begin. I don''t want to get a blogger account because I want to have my own domain. Blogger also doesn''t have many features. My hosting service is 1AND1 so it supports php, cgi and mysql.
2006 Dec 14
5
Is there a way to make backgroundrb 0.2.1 fail silently on win32?
After upgrading to backgroundrb 0.2.x, Rails barfs lstat errors left and right when using the console or webrick or mongrel on win32. We run our site on a Linux server, so I''m not trying to get backgroundrb to work on a win32 machine. I just want to quietly stop loading itself if it detects that it''s on a win32 machine so that the rest of Rails can continue to load. Most of
2003 Feb 07
1
problem for printing with smbclient
Hello I'am french and I have a big problem with a great feature of smbclient, I can't print anymore postscript document directly to my network printer(postscript compatible) We have recently change of server, we used a old linux distribution ( suse 5 or 6) with samba 1.9 and we had no problem with it exemple : [warrior:/]> cat /tmp/aaa.ps | smbclient
2007 Oct 11
1
Boot problem with x86 VxWorks on a XEN HVM
Hi, i managed to boot a VxWorks 6.5 Kernel on QEMU without kqemu acceleration. The bootloader and the precompiled Kernel, both belong to the Pentium 3 BSP, which was delivered with the evaluation version of windriver workbench 2.6 for "intel". Now I tried to boot the same VxWorks bootloader and Kernel inside a XEN HVM. I see a message from the bootloader "V1.6+++..." and the
2007 Dec 12
3
undefined method: controller_name
With rspec 1.0.8 I have a spec in the directory: spec/units/controllers/application_controller_spec.rb require File.dirname(__FILE__) + ''/../../spec_helper'' class DummyController < ApplicationController def index raise "Prevent index from rendering" end end describe ApplicationController, "Handling errors in production", :behaviour_type =>
2005 Jul 27
1
call failed: 499 Not acceptable here
Hi, Please help me through to overcome this error. I have my asterisk server and a xlite client in 172.16. network. I opened up port 5060 in my enterasys wireless router for my asterisk server and also opened port 8000 and 8001 for my xlite client. When i tried calling a remote system which successfully connected to my asterisk server i'm getting the error as " call failed: 499 Not
2007 Nov 08
5
Running specs in reverse
There is an option "--reverse" to run examples in the reverse order which is good for detecting inter-dependencies between examples. Is it feasible for rspec to automatically switch between "forward" and "reverse" order each time a spec is run? My goal is to detect inter-dependencies sooner than later... Thanks Alvin.
2007 Oct 16
5
RailsStory - lessons learned
After trying RailsStory for a few days, I have learned: 1. Rails testing support does not serve up static pages 2. RailsStory masks errors generated by the app under test 3. The masked errors are available in log/test 4. I should read log/test more often See http://pastie.caboo.se/107876 for an example for points 2 and 3 The welcome controller fails when the HTTP_USER_AGENT is missing.
2005 Aug 30
1
ssh develpers list
Hi, I am software developer working on adding ssh server support to an existing embedded device which is based on the VxWorks operating system.(very different than windows/lynix/unix). I am adding support for remote login to our products command line interface and external file transfers(sftp). Prior to this project I had no experience with SSH. I have been using the O'Reilly SSH The Secure
2011 Nov 05
2
Doing dist on separate objects in a text file
So I have a text file that looks like this: "Label" "X" "Y" "Slice" 1 "Field_1_R3D_D3D_PRJ_w617.tif" 348 506 1 2 "Field_1_R3D_D3D_PRJ_w617.tif" 359 505 1 3 "Field_1_R3D_D3D_PRJ_w617.tif" 356 524 1 4 "Field_1_R3D_D3D_PRJ_w617.tif" 2 0 1 5 "Field_1_R3D_D3D_PRJ_w617.tif" 412 872 1 6