Re: Encrypted data partition

2016-12-14 Thread ds

On 12/14/2016 10:34 AM, Jan Betlach wrote:

Hello,

I'd like to have an encrypted Ext2 data partition, which can be shared
between OpenBSD and Linux. LUKS probably does not work in OpenBSD. Maybe
something like EncFS is the way to go?

Thank you

Jan




Rot 13 or caesar cipher should do the job just fine
why go all complex with luks/encfs? you're trading in complexity for 
convenience. why not write a slim kernel module to suit your needs? 
heck, if you stick to ansi c, you could even write it portable (use 
posix for best results!)


/s



Re: route outside subnet

2016-08-26 Thread ds
i've tried the following: route add -inet6 x/64 $thegateway
but that fails because i can't reach the gateway (i'm not on
the /56)



route outside subnet

2016-08-26 Thread ds
i'm trying to do the following:

i have a /64 ipv6 address block. the gateway is on a /56. so i can't
reach the gateway by default. how can i tell route to reach the gateway?



Re: DigitalOcean and OpenBSD

2016-08-25 Thread ds
On Wed, 24 Aug 2016 10:40:38 -0300
"R0me0 ***"  wrote:

> Hello everybody !
> 
> Please,
> 
> Anyone  already had a disk corruption running OpenBSD @ DigitalOcean
> with disk encryption ?
> 
> I had this issue for the third time running OpenBSD 5.9 stable branch
> and a simple "reboot" == No O/S
> 
> 
> Thanks in advance,
> 

if you're installing OpenBSD on a random VPS, i usually do this: boot
up their ubuntu linux rescue image, and: 

  apt-get update; apt-get -y install qemu 

download your OpenBSD iso and do this:

qemu-system-x86_64 -nographic -curses -smp 4  -m 2G  -drive
file=/dev/sda,cache=none,if=virtio  -boot d -cdrom $THEISO

(assuming /dev/sda is your drive)