similar to: OpenSSH + GeodeLX + Linux + Cryptodev = Corrupted MAC on input.

Displaying 20 results from an estimated 70 matches similar to: "OpenSSH + GeodeLX + Linux + Cryptodev = Corrupted MAC on input."

2015 Feb 25
2
[openssh with openssl cryptodev engine] sshd killed by seccomp filter
Hello I have a server with an hardware crypto accelator. For giving userspace access to it I use the cryptodev module (http://cryptodev-linux.org/) I have also the cryptodev engine compiled in openssl. When I modprobe the cryptodev module, I cannot login with ssh on the server. The symptom can be found with dmesg: audit: type=1326 audit(1424784807.257:3): auid=4294967295 uid=22 gid=22
2024 Oct 09
1
sshd fails when using cryptodev-linux to compute hmac
Hi Peter, ?? 9.10.24 ?. ? 20:31 ?., Peter Rashleigh ??????: > Hi Damien, > >> I don't know anything about cryptodev-linux, but I assume it's an openssl engine? > Cryptodev-linux is a kernel module that provides access to kernel crypto drivers, especially hardware-accelerated crypto, through the /dev/crypto device. Openssl implements an engine which interfaces to it.
2024 Oct 09
3
sshd fails when using cryptodev-linux to compute hmac
Hi Damien, > I don't know anything about cryptodev-linux, but I assume it's an openssl engine? Cryptodev-linux is a kernel module that provides access to kernel crypto drivers, especially hardware-accelerated crypto, through the /dev/crypto device. Openssl implements an engine which interfaces to it. > If so it's possible sshd's multiprocess model and/or file descriptor
2024 Oct 08
1
sshd fails when using cryptodev-linux to compute hmac
I don't know anything about cryptodev-linux, but I assume it's an openssl engine? If so it's possible sshd's multiprocess model and/or file descriptor handling is confusing it. It's not a configuration we test, so you're mostly on your own to debug it. It's entirely possible there's a bug there; if so, I'd expect it to be something like a fd being closed while
2024 Oct 08
1
sshd fails when using cryptodev-linux to compute hmac
Hi All, I'm having an issue where SSH sessions fail if I enable the cryptodev engine for HMAC. I'd like to confirm if this is a supported configuration and if there are any known bugs. HMAC with the cryptodev engine works fine when using the openssl application directly, so I suspect that something in openssh may be the cause of the issue. I tried this initially with sshd from openssh
2012 Oct 05
5
IPv6 & SSL
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I have a dual stack server with Dovecot 2.1.10 listening on v4 and v6 Dovecot has a Comodo SSL certificate issued via NameCheap that works as expected with IPv4 in 10-ssl.conf I have enabled these configuraction directives: ssl = yes ssl_cert = < /path/to/file.crt ssl_key = < /path/to/file.key ssl_parameters_regenerate = 202 hours If I
2006 Mar 03
0
Fw: 2 real phone numbers on one SIP account
Hallo! I have problem with incoming calls on 2 phone numbers registered on same SIP provider account. I've tried averything and nothing seems to work. No matter what I do asterisk system refuses differ betwen them and both got connected to the same extensions. I've tride with: registration => num1:pass@provider/ext1 registration => num2:pass:num1@provider/extt in sip.conf and
2004 Jul 23
2
marking and shaping outbound passive ftp traffic
Will the following rules work to mark and shape OUTBOUND ftp speed (passive ftp ports 50000-60000) on my linux server? I want to be able to run these commands on the actual computer that is running the ftp server. iptables -t mangle -N MYSHAPER-OUT iptables -t mangle -I POSTROUTING -o eth0 -j MYSHAPER-OUT iptables -t mangle -A MYSHAPER-OUT -p tcp --dport 50000:60000 -j MARK --set-mark 1 tc
2004 Jan 06
1
Traffic going to wrong interface?
I have a samba server with 2 ethernet ports, one of which is a gigabit port. When connecting from a windows client that has a crossover to the gigabit port, and a crossover to the 100Meg port: If I connect via \\gige.ethernet.address\foo , and copying a large file, windows reports outbound traffic on the gige port and return traffic on the 100Meg port. Thus, it seems the samba server sees the
2005 Jan 15
2
SUSE 9.2
My name is Jody and I am in Cape Town South Africa. I have been working on Windoze for about 6 months and have experienced many problems. I have been introduced to Linux (Suse 9.2) when I visited the Science center in the Vacation Period. I have installed Suse on my Dads Laptop and the Laptop is inturn connected to a network by means of a 100meg Switch. On the Network we have a PDC
2011 Nov 18
2
Monitoring progress of fsck.ocfs2
Hello Everyone, I just ran fsck.ocfs2 on /dev/drbd0 which is a one gig partition on a vm with limited resource (100meg of ram). I am worried that the process crashed because it has not responded in the past hour or so? fsck.ocfs2 /dev/drbd0 fsck.ocfs2 1.6.4 [RECOVER_CLUSTER_INFO] The running cluster is using the cman stack with the cluster name ASTCluster, but the filesystem is configured for
2003 Sep 14
1
How to calculate exact bitrate/filesize w/ Vorbis? Plz help
Hi, I'm quite familiar w/ mp3 cbr/abr/vbr encoding, as well as mpeg4 (cbr/vbr,etc). And I can always calc the bit rate for a given file size with: file size * 8000 / length in seconds = kbits/sec Works great w/ mpeg4 + mp3. BUT FOR THE LIFE OF ME: I cannot get oggenc (1.0x version) to give me the file size I want. I calc. it with the above formula, and nothing comes out right. Then I do
2006 Dec 06
1
ADSL traffic shaping to improve latency
Hello. I have a 1024/256kbit ADSL and tried to shape outgoing traffic in order to improve latency. Here is my config. UPLOAD_RATE="256" UPRATE="$[4*$UPLOAD_RATE/5]" (a little smaller) UP70="$[7*$UPRATE/10]kbit" UP30="$[3*$UPRATE/10]kbit" UP20="$[2*$UPRATE/10]kbit" UPRATE="${UPRATE}kbit" IF="eth2" IPTABLES="iptables -t
2008 Jul 10
4
Distributed Setup Suggestions
My company is approx 200 users. We have 10 offices each with 5-30 users each. A few offices work independently, but there has been a lot more inter-office work lately. I am looking for a way to provide fast local access to files stored in the same office as the user, but also acceptable performance for inter-office file transfers. We are currently using Oracle Drive for a central file server, it
2006 Nov 13
2
Rails Camp Scaling Session notes
Here are some notes from the scalability session of last week''s Rails camp. They were entered by another session participant and are posted at: http://www.rubyonrailscamp.com/10%3A15%2Bsession%2B-%2Bscaling The key points from my point of view: - the Ruby VM is sketchy, rather like the Java VM around 1997 - the single threaded nature of Rails dispatch handling means we may incur a
2006 Jul 06
0
big size file uploading problem w/IE
Hi, I''m now trying to develop application for big files exchanges by Webserver and Browser with rails. There is a browser dependent file uploading problem with Rails. Uploading file is issued from .rhtml like this. <%= form_tag({:action => "upload_file"}, {:multipart => "true"}) %> With IE ( 6.02900 ) a 5 meg file was sent but slowly and it took more
2002 Dec 31
0
Re: samba digest, Vol 1 #2021 - 20 msgs
> >> Message: 1 > From: "Pat Schlehuber" <pat@schlehuber.net> > To: <samba@lists.samba.org> > Date: Sun, 29 Dec 2002 11:23:16 -0600 > Subject: [Samba] Slow performance > > I have been fighting this problem for months now. My performance under Samba > and XP has ben umbearable. The scenario is running Samba 2.2.7a under SuSE > 8.0 as a PDC.
2005 Aug 13
1
pfifo_fast as leaf qdisc for htb classes
Thank you Andy! I did''t find why I could''t use the fw match in ingress. Now it works. Now I ran into another problem: When I try to add a pfifo_fast leaf qdisc dor htb classes it seg.-faults. Is pfifo_fast a special qdisc? I can succesfully add other type of qdiscs. I found that a similar problem was reported in february on a MIPS architecture. root@zefir:/usr/src# tc qdisc
2003 Sep 26
2
outbound IAX calls bog down DSL
Evening, I've got * asterisk up and running with nufone account for inbound and outbound calls from the world... everything works quite nicely except that I noticed last night that when I have a call active from * to nufone, web surfing on the network slows to a crawl... additionally, I have a VPN tunnel to another office (using CIPE) and while inter-office (i.e. - SIP to SIP) calls
2007 Jun 14
16
PQ questions
Hi all, First, let me say I''ve been most impressed with how quickly and professionally people on this list ask and answer questions. Next, let me say that with which I need help is properly configuring strict PQ, and gathering certain stats. Specifically: - I need to create a priority queue with four queues (let''s say they are of high, medium, normal, and low priority) - I