Re: PC Engines APU NIC (RTL8111E) performance

2016-08-04 Thread Darren Tucker
On Wed, Aug 3, 2016 at 8:07 PM, Momtchil Momtchev wrote: > Does anyone with a working knowledge of re(4) have any idea why the PC > Engines APU NICs perform so poorly in OpenBSD? Most likely lack of hardware interrupt moderation in the driver. There's code in re_setup_hw_im() that looks like

Re: ksh, PS1 and PWD

2016-08-04 Thread Craig Skinner
Hi Uwe, On 2016-08-04 Thu 00:19 AM |, Uwe Werler wrote: > > PS1='\h:$(_pwd)\\$ ' > You may have already seen this in ksh(1): PS1 ... \W The basename of the current working directory. $HOME is abbreviated as `~'. e.g: PS1="<\u@\h:\W \j> \\$ " $ sleep 5 & [1] 24386 $ cd /var/unbound $ print $PS

Re: ksh, PS1 and PWD

2016-08-04 Thread Paolo Aglialoro
If you like it coloured, and also would appreciate to know which terminal you're in, here's my way: TTY=$(tty) TTY=${TTY##*/} export PS1="\[\e[32;1m\][\[\e[31;1m\]\u\[\e[32;1m\]@\h:\[\e[36;1m\]$TTY\[\e[32;1m\]:\[\e[34;1m\]\w\[\e[32;1m\]] " I usually put this in /etc/profile so that I have it syst

Re: lyrics.html nit.

2016-08-04 Thread Michal Bozon
this is what i hear: -With twitchy fingers on flashing keys +Twitchy fingers, flashing keys -always claiming "it was just a prank!" +Claiming "it was just a prank!" regards, michal bozon

Re: Install OpenBSD on disks larger than 2TB

2016-08-04 Thread Leo Unglaub
Hey, On 07/29/16 18:13, Noth wrote: OpenBSD can boot off UEFI & GPT since 5.9. Are you booting on MBR or UEFI? yes, thats true and it works fine. The problem here seams to be the raid 1. Booting from an Raid 1 with disks larger than 2 TB seams to be broken. Maybe its not intended to work, bu

Re: Install OpenBSD on disks larger than 2TB

2016-08-04 Thread Marc Peters
Am 08/04/16 um 12:20 schrieb Leo Unglaub: > yes, thats true and it works fine. The problem here seams to be the raid > 1. Booting from an Raid 1 with disks larger than 2 TB seams to be > broken. Maybe its not intended to work, but i am unable to find a hint > about that in the bioctl,bio,softraid m

Best way to hardware AES.

2016-08-04 Thread Luke Small
I'm thinking about getting some intel or sparc system with AES hardware. What would be the cleanest way to access the Open Cryptographic Framework to access the hardware. I'm writing in C. I'd like to do 256 bit aes-ctr or preferably aes-gcm and use ultrasparc T2 and above, slightly older Xeons or

Re: Encrypting carp traffic with ipsec

2016-08-04 Thread C. L. Martinez
On Tue 2.Aug'16 at 7:54:08 +, C. L. Martinez wrote: > On Mon 1.Aug'16 at 7:54:57 +, C. L. Martinez wrote: > > On Fri 29.Jul'16 at 10:55:01 +0300, Kapetanakis Giannis wrote: > > > On 28/07/16 22:47, C. L. Martinez wrote: > > > > Hi all, > > > > > > > > I will try to encrypt all carp tr

Re: PC Engines APU NIC (RTL8111E) performance

2016-08-04 Thread Momtchil Momtchev
On 04/08/16 09:13, Darren Tucker wrote: On Wed, Aug 3, 2016 at 8:07 PM, Momtchil Momtchev wrote: Does anyone with a working knowledge of re(4) have any idea why the PC Engines APU NICs perform so poorly in OpenBSD? Most likely lack of hardware interrupt moderation in the driver. There's c

Re: write all files in /mnt to usb using dd

2016-08-04 Thread Ax0n
I mis-understood your first post, Teng. The .iso image confused me and I thought you were trying to write to optical media. It sounds like you needed to simply mount the USB removable mass storage to /mnt. Oddly enough, I can't find a directly relevant entry for this in the OpenBSD FAQ to link to

How to configure OpenBSD L2TP/IPSEC VPN to work with Windows 10?

2016-08-04 Thread Sebastian Wain
I can't figure out how to make an OpenBSD VPN work. I followed the guide at [1] to set up a VPN, modified the network interface there to tun0 instead of pppoe0, and didn't configure the pf.conf. When I tried to connect from Win10 using the "L2TP/IPsec with pre-shared key" VPN type I see the issues

Re: Weird cursor problem

2016-08-04 Thread Alan Corey
Just to clarify, I see the left-pointing hand, but that's just a symptom, I can't do anything with the mouse like use the pager or any other application. Cursor movement isn't restricted to one window. I get out of it by using the keyboard shortcuts of Ctrl-arrow which normally jumps to another p

Re: How to configure OpenBSD L2TP/IPSEC VPN to work with Windows 10?

2016-08-04 Thread R0me0 ***
ike passive esp transport proto udp from egress to 0.0.0.0/0 port 1701 \ main auth hmac-sha1 enc 3des group modp2048 \ quick auth hmac-sha1 enc 3des psk "YOURSECRET" You are welcome (: 2016-08-04 13:15 GMT-03:00 Sebastian Wain : > I can't figure out how to make an OpenBSD VPN wor

[Job] Security Architect, Edinburgh, Scotland - ?50k+

2016-08-04 Thread Craig Skinner
Hello, This has been repeatedly advertised over the last few weeks;- http://www.JobServe.Co.UK/Eo4Sa I've no connection with it, or the agency, but it might be somebody's cup of tea. Usual British hours are 37.5/week, ~30 days paid holiday & monthly pay.

Re: [Job] Security Architect, Edinburgh, Scotland - £50k+

2016-08-04 Thread Jorge Castillo
At first I though it was spam, then I notice it was addressed to misc. Oh, okay.

Re: PC Engines APU NIC (RTL8111E) performance

2016-08-04 Thread Darren Tucker
On Thu, Aug 04, 2016 at 02:46:44PM +0200, Momtchil Momtchev wrote: [...] > What is the problem with software interrupt moderation? That it has a > fixed timer while the hardware one scales with the RX rate? The hardware moderation can do per-N-packets in addition to a timer. > This shouldn't > ha

Best way to hardware AES.

2016-08-04 Thread Luke Small
I'm thinking about getting some intel or sparc system with AES hardware. What would be the cleanest way to access the Open Cryptographic Framework to access the hardware. I'm writing in C. I'd like to do 256 bit aes-ctr or preferably aes-gcm and use ultrasparc T2 and above, i7 or older Xeons. I'm l