Re: Need advice on “tcp proxy”

2024-03-02 Thread Kasak
ng up something > like wireguard, but in a pinch if the target and host already have ssh. > > https://wiki.archlinux.org/title/VPN_over_SSH > No, ssh tunnels is no-go for me. Remote hosts are windows, and they are mostly “wild” hosts. > > >> On Sun, 3 Mar 2024 at 07:26, Kas

Re: Need advice on “tcp proxy”

2024-03-02 Thread Kasak
> 2 марта 2024 г., в 21:05, Stuart Henderson > написал(а): > > On 2024-03-02, Kasak wrote: >> Hello misc! There is a good manual on OpenBSD faq about redirection and >> reflection, here it is: https://www.openbsd.org/faq/pf/rdr.html#tcpproxy >> >>

Re: Need advice on “tcp proxy”

2024-03-02 Thread Kasak
> 2 марта 2024 г., в 19:17, Kapetanakis Giannis > написал(а): > > On 02/03/2024 16:50, Kasak wrote: >> >>>> 2 марта 2024 г., в 15:21, Kapetanakis Giannis >>>> написал(а): >>> >>> On 02/03/2024 12:46, Kasak wrote: >>>

Need advice on “tcp proxy”

2024-03-02 Thread Kasak
Hello misc! There is a good manual on OpenBSD faq about redirection and reflection, here it is: https://www.openbsd.org/faq/pf/rdr.html#tcpproxy I’m using nginx as tcp and udp proxy, but maybe there is another software, more suitable for this task? I need to redirect and reflect near 15 tcp

smtpd and honeypot (rspamd)

2023-10-23 Thread kasak
Hello misc! I'm trying to make honeypot with smtpd and rspamd here is some cut from my smtpd.conf: table honeypot file:/etc/mail/traps action "trap" mda "/usr/local/bin/rspamc -f 1 -w 10 fuzzy_add" match !from src for rcpt-to action "trap" the table contains some spoiled adresses from my

Re: sed and tab

2023-08-22 Thread kasak
22.08.2023 15:34, Stuart Henderson пишет: On 2023-08-22, kasak wrote: Hello misc! I'm in trouble with sed! I need to insert tab in some places, but no luck :( in linux it works: [kasak@kasakoff ~]$ echo 'one two three' | sed s/two/\\ttwo/ one     two three in OpenBSD it just add t

sed and tab

2023-08-22 Thread kasak
Hello misc! I'm in trouble with sed! I need to insert tab in some places, but no luck :( in linux it works: [kasak@kasakoff ~]$ echo 'one two three' | sed s/two/\\ttwo/ one     two three in OpenBSD it just add t: kasak@OpenBSD:~$ echo 'one two three' | sed s/two/\\ttwo/ one ttwo three

Universal Media Server on OpenBSD

2023-02-10 Thread kasak
Hello misc! If somebody interested, i've successfully launched UMS on OpenBSD 7.2. Here it is: pkg_add mediainfo mplayer ffmpeg jdk%17 useradd -L daemon -s /sbin/nologin -d /var/ums -m -s /var/empty _ums ftp

Re: do i need to move to veb?

2023-01-23 Thread kasak
23.01.2023 18:52, Hrvoje Popovski пишет: On 23.1.2023. 16:24, kasak wrote: 22.01.2023 14:49, David Gwynne пишет: On Sat, Jan 21, 2023 at 03:41:56PM +0300, kasak wrote: Hello misc! I'm using bridge for integrating remote clients to my network with this simple config: $ cat /etc

Re: do i need to move to veb?

2023-01-23 Thread kasak
22.01.2023 14:49, David Gwynne пишет: On Sat, Jan 21, 2023 at 03:41:56PM +0300, kasak wrote: Hello misc! I'm using bridge for integrating remote clients to my network with this simple config: $ cat /etc/hostname.bridge0 add vether0 add em1 add tap1 up I see in this commit that veb

do i need to move to veb?

2023-01-21 Thread kasak
Hello misc! I'm using bridge for integrating remote clients to my network with this simple config: $ cat /etc/hostname.bridge0 add vether0 add em1 add tap1 up I see in this commit that veb is supposed to replace bridge https://marc.info/?l=openbsd-cvs=161405102019493=2 Does it make sense

samba maps nodoby as a home share

2022-10-26 Thread kasak
hello misc! Just want to share you some interesting samba behavior after update to 7.2 Samba now creates a share named "nobody" when it should not! The config is very simple: [global]     map to guest = Bad User     server min protocol = NT1 [homes]     comment = Home Directories

Thanks all devs for 7.2!

2022-10-21 Thread kasak
Thank you all for great work! OpenBSD is the best as it was! I have some advice for those who will updating this time. During pkg_add -u there was some problems with samba. It conflicts with ldb which is also installed. If you experience conflict with this port, just delete ldb and install

Re: kernel fault after 7.1

2022-05-17 Thread kasak
18.05.2022 02:28, Stuart Henderson пишет: On 2022/05/18 01:40, Vitaliy Makkoveev wrote: On 18 May 2022, at 01:18, Stuart Henderson wrote: On 2022-05-17, kasak wrote: Can I somehow revert kernel to 7.1-release, to make syspatch working? Boot bsd.rd and do an 'upgrade' install to 7.1 again

Re: kernel fault after 7.1

2022-05-17 Thread kasak
23.04.2022 15:47, Stuart Henderson пишет: On 2022-04-23, kasak wrote: hello everybody. after upgrading to 7.1 my router started to panic very often :(( about twice a day. Please report to b...@openbsd.org, with the information from your mail, plus dmesg, and an outline of how the machine

Re: SAMBA 4.15 share and compatibility with older Macs

2022-05-03 Thread Kasak
> 3 мая 2022 г., в 18:39, Riccardo Mottola > написал(а): > > Hi, > > I have a samba share which is accessible to both windows (7, 10) and > Mac, including old Macs (10.5-10.7) which use samba. > Unix accesses through NFS. > > MacOS uses an old version of Samba, I always had issues. I

Re: rspamd and pyzor

2022-05-03 Thread kasak
03.05.2022 16:48, Stuart Henderson пишет: On 2022-05-03, kasak wrote: rspamd manual assume, that we should use this construction: ExecStart=/bin/sh -c '/usr/bin/razor-check && /usr/bin/echo -n "spam" || /usr/bin/echo -n "ham"' The razor-check manual confirm th

Re: rspamd and pyzor

2022-05-03 Thread kasak
03.05.2022 11:38, Stuart Henderson пишет: On 2022-05-02, kasak wrote: Hello misc! I have some information for rspamd users, and one question. As you may know, rspamd not using pyzor by directly calling pyzor binary. Instead, they say, you need to create special systemd socket, and call

Re: rspamd and pyzor

2022-05-03 Thread Kasak
> 3 мая 2022 г., в 09:08, Michael Hekeler написал(а): > > Am 02.05.22 19:06 schrieb kasak: >> Hello misc! >> >> I have some information for rspamd users, and one question. >> >> As you may know, rspamd not using pyzor by directly calling pyzor bin

rspamd and pyzor

2022-05-02 Thread kasak
Hello misc! I have some information for rspamd users, and one question. As you may know, rspamd not using pyzor by directly calling pyzor binary. Instead, they say, you need to create special systemd socket, and call pyzor through it. It is described on rspamd manuals:

kernel fault after 7.1

2022-04-22 Thread kasak
hello everybody. after upgrading to 7.1 my router started to panic very often :(( about twice a day. This is the information from the screen: kernel: protection fault trap, code=0 Stopped at    ipsp_ids_gc+0xb4    cmpl $0,0x64(%r14) ddb{0}> show panic the kernel did not panic ddb{0}> trace

Re: sysupgrade fails due to "CHECK AND RESET DATE" ?

2022-04-07 Thread Kasak
> 7 апр. 2022 г., в 17:13, Jan Stary написал(а): > >  >> >> It seems that problem is not having any display device during sysupgrade >> process. > > I don't think sysupgrade has any requirements regarding a display device: > headless machines get sysupgraded regularly Yes. I have some

Re: sysupgrade fails due to "CHECK AND RESET DATE" ?

2022-04-05 Thread kasak
19.10.2021 10:14, kasak пишет: 18.10.2021 23:18, kasak пишет: Hello everyone! I have one mini router, made from gigabyte GB-SBCAP4200 barebone It has nothing special. Just base openbsd, without any additional packages and modifications. for some reason, sysupgrade does not upgrade

Re: rspamd and empty "mail from" header

2022-02-18 Thread kasak
18.02.2022 14:26, Claus Assmann пишет: On Fri, Feb 18, 2022, kasak wrote: But, is this correct behavior of "mail from" header? Maybe the header What is a ``"mail from" header''? Do you mean the mail header From: or are you referring to the SMTP MAIL command MAIL

rspamd and empty "mail from" header

2022-02-18 Thread kasak
Hello misc! I have mailed this message at m...@opensmtpd.org at first, but nobody answered, maybe someone help here? I have a question about opensmtpd and rspamd. I'm using opensmtp and rspamd as a relay server with spam checking. The spam check is done with help of opensmtpd-filter-rspamd. The

Need help for fixing ruby gem for diaspora

2021-12-08 Thread kasak
hello misc! I'm now trying to deploy diaspora on openbsd. I was almost sucessfull, the only problem is: i can't build 'eye' gem, what requires 'kostya-sigar' gem, and 'kostya-sigar' is failing to build. At first i created an issue on github https://github.com/kostya/sigar/issues/12 but

Re: proper way to grow softraid partition

2021-10-31 Thread kasak
29.10.2021 15:33, Nick Holland пишет: On 10/27/21 1:11 PM, kasak wrote: Hello misc! I want to replace my two 2TB hdd, joined in raid1. I have two 4TB drives, and I want to replace smaller drives with them. it wouldn't be a problem, if i had some spare sata ports, but in my pc i have only

Re: proper way to grow softraid partition

2021-10-27 Thread kasak
27.10.2021 20:41, cho...@jtan.com пишет: It's easier by far not to muck about trying to resize partitions. If you can mount each drive (old and new) in an operating system that isn't using them then that's your best bet and that's not so hard to arrange. Mount the old partition structure in

proper way to grow softraid partition

2021-10-27 Thread kasak
Hello misc! I want to replace my two 2TB hdd, joined in raid1. I have two 4TB drives, and I want to replace smaller drives with them. it wouldn't be a problem, if i had some spare sata ports, but in my pc i have only one left. So, I can attach only one of this 4 tb drives at the same time.

Re: sysupgrade fails due to "CHECK AND RESET DATE" ?

2021-10-19 Thread kasak
18.10.2021 23:18, kasak пишет: Hello everyone! I have one mini router, made from gigabyte GB-SBCAP4200 barebone It has nothing special. Just base openbsd, without any additional packages and modifications. for some reason, sysupgrade does not upgrade this system. It successfully boot new

Re: sysupgrade fails due to "CHECK AND RESET DATE" ?

2021-10-19 Thread kasak
19.10.2021 09:41, Otto Moerbeek пишет: On Tue, Oct 19, 2021 at 09:30:47AM +0300, kasak wrote: 19.10.2021 08:45, Otto Moerbeek пишет: On Mon, Oct 18, 2021 at 11:18:20PM +0300, kasak wrote: Hello everyone! I have one mini router, made from gigabyte GB-SBCAP4200 barebone It has nothing

Re: sysupgrade fails due to "CHECK AND RESET DATE" ?

2021-10-19 Thread kasak
19.10.2021 08:45, Otto Moerbeek пишет: On Mon, Oct 18, 2021 at 11:18:20PM +0300, kasak wrote: Hello everyone! I have one mini router, made from gigabyte GB-SBCAP4200 barebone It has nothing special. Just base openbsd, without any additional packages and modifications. for some reason

sysupgrade fails due to "CHECK AND RESET DATE" ?

2021-10-18 Thread kasak
Hello everyone! I have one mini router, made from gigabyte GB-SBCAP4200 barebone It has nothing special. Just base openbsd, without any additional packages and modifications. for some reason, sysupgrade does not upgrade this system. It successfully boot new kernel, but do not process the

Re: ssh with keyboard-interactive failing

2021-10-18 Thread kasak
17.10.2021 15:07, Stuart Henderson пишет: On 2021-10-17, kasak wrote: 17.10.2021 13:48, Stuart Henderson пишет: On 2021-10-17, kasak wrote: Hello everybody! I somehow broke authorization with password in 7.0 All this started after update to 7.0. I have installed default /etc/ssh

Re: ssh with keyboard-interactive failing

2021-10-17 Thread kasak
17.10.2021 13:48, Stuart Henderson пишет: On 2021-10-17, kasak wrote: Hello everybody! I somehow broke authorization with password in 7.0 All this started after update to 7.0. I have installed default /etc/ssh/sshd_config with sysmerge. After this, i just wanted to disable password auth

ssh with keyboard-interactive failing

2021-10-17 Thread kasak
22. debug1: Connection established. debug1: identity file /home/kasak/.ssh/id_rsa type -1 debug1: identity file /home/kasak/.ssh/id_rsa-cert type -1 debug1: identity file /home/kasak/.ssh/id_dsa type -1 debug1: identity file /home/kasak/.ssh/id_dsa-cert type -1 debug1: identity file /home/kasak

Re: Bridging OpenVPN and LAN

2021-09-05 Thread Kasak
> 5 сент. 2021 г., в 21:53, Andrei написал(а): > >  >> On 05.09.2021., at 15:58, kasak wrote: >> I've should correct myself in last message. You actually may try to proxy >> dhcp answers to vpn, adding option >> >> server-bridge >> >&g

Re: Bridging OpenVPN and LAN

2021-09-05 Thread kasak
05.09.2021 16:31, Andrei пишет: Hello, I am trying to setup an OpenVPN server on OpenBSD 6.9 that's bridged to my LAN. The topology looks like this: 10.70.0.1 (gateway) - 10.70.0.118 (server, on em1). I've set-up the em1 interface as DHCP and it get's the expected address. Next up I

Re: Bridging OpenVPN and LAN

2021-09-05 Thread kasak
05.09.2021 16:31, Andrei пишет: Hello, I am trying to setup an OpenVPN server on OpenBSD 6.9 that's bridged to my LAN. The topology looks like this: 10.70.0.1 (gateway) - 10.70.0.118 (server, on em1). I've set-up the em1 interface as DHCP and it get's the expected address. Next up I

cannot perform sysupgrade "CHECK AND RESET THE DATE"

2021-05-03 Thread kasak
  3 19:08:47 panki reboot: rebooted by kasak May  3 19:08:48 panki syslogd[80591]: exiting on signal 15 May  3 19:10:04 panki syslogd[16012]: start May  3 19:10:04 panki /bsd: syncing disks... done May  3 19:10:04 panki /bsd: rebooting... May  3 19:10:04 panki /bsd: OpenBSD 6.9 (RAMDISK_CD) #456

Re: Samba server issue with Windows file properties

2021-04-07 Thread kasak
hello. You should look the option "store dos attributes" quote: When this parameter is set it will override the parameters map hidden, map system, map archive and map readonly and they will behave as if they were set to off. this option is by default ENABLED in samba 4.9. And when it is

Re: pf filtering on bridge totally blown my mind

2020-11-27 Thread kasak
27.11.2020 13:04, kasak пишет: 27.11.2020 12:58, Zé Loff пишет: On Fri, Nov 27, 2020 at 12:05:49PM +0300, kasak wrote: Mine configuration requires to use a brigde: I have files: cat /etc/hostname.bridge0 add vether0 add em1 add tap1 up files hostname.em1 and tap1 just contain &qu

Re: pf filtering on bridge totally blown my mind

2020-11-27 Thread kasak
27.11.2020 12:58, Zé Loff пишет: On Fri, Nov 27, 2020 at 12:05:49PM +0300, kasak wrote: Mine configuration requires to use a brigde: I have files: cat /etc/hostname.bridge0 add vether0 add em1 add tap1 up files hostname.em1 and tap1 just contain "up" and file hostname.vethe

pf filtering on bridge totally blown my mind

2020-11-27 Thread kasak
n bridge0 inet proto udp from ! 172.16.0.5 to any port = 123 rdr-to 127.0.0.1 But this rule just not working, and i cannot fix it. I've tryed to change "bridge0" to "em0", it doen't change anything. pflog doesn't log anything too. This is from the client: [kasak@kas

Re: samba macos epic fail

2020-11-23 Thread kasak
23.11.2020 00:45, Lyndon Nerenberg пишет: Somebody please tell me what the hell I am doing wrong here. OpenBSD 6.8, samba 4.9.18 via pkg_add, MacOS 10.15.7 fully patched. My main goal is to get Time Machine backups running, but I keep getting all sorts of inscrutable errors about file

Re: A new race condition in OpenVPN and Unbound services

2020-11-21 Thread Kasak
> 21 нояб. 2020 г., в 07:24, Predrag Punosevac > написал(а): > >  > Hi Misc, > > Has anybody else noticed a new race condition causing Unbound to fail > due to the fact that OpenVPN interface is not available. > > Since a few releases ago I have this in my rc.conf.local to start >

Re: help me to create hostname.wg

2020-10-30 Thread kasak
30.10.2020 19:18, Josh Grosse пишет: On Fri, Oct 30, 2020 at 07:05:51PM +0300, kasak wrote: hello misc. I'm trying to create wg interface, but have no luck. Here is my /etc/hostname.wg0: $ cat /etc/hostname.wg0 inet 10.0.0.1/24 wgkey wgpeer wgaip 10.0.0.2 after running doas sh /etc

help me to create hostname.wg

2020-10-30 Thread kasak
hello misc. I'm trying to create wg interface, but have no luck. Here is my /etc/hostname.wg0: $ cat /etc/hostname.wg0 inet 10.0.0.1/24 wgkey wgpeer wgaip 10.0.0.2 after running doas sh /etc/netstart wg0 i have: $ ifconfig wg0 wg0: flags=80c3 mtu 1420     index 6 priority 0 llprio 3    

Re: l2ip + ipsec question

2020-07-21 Thread kasak
21.07.2020 11:43, Stuart Henderson пишет: most endpoints cope wigh slightly less terrible crypto, you can try something like ike passive esp transport \ proto udp from my.external.ip to any port 1701 \ main auth "hmac-sha1" enc "aes-256" group modp2048 \ quick auth

l2ip + ipsec question

2020-07-20 Thread kasak
Hello misc. Recently, i needed to setup l2tp-ipsec for some ip phones to reach my network. so, the l2tp part is not trouble at all with npppd, but, the ipsec part is harder to understand. after reading ipsec and ipsec.conf man, i tryed to add just one line: ike passive from my.ga.te.ip to

Re: dynamic dns updates for clients in my home network?

2020-04-25 Thread kasak
OpenBSD dhcpd and unbound does not support dynamic dns. The easyest way is to install isc-dhcp-server and isc-bind  from packages. There are pretty much howtos for this setup. 25.04.2020 22:00, bofh пишет: Hi, I searched through the archives and saw a couple of discussions about using Dnsmasq

Re: Samba on obsd

2020-03-25 Thread kasak
25.03.2020 02:06, Lars Bonnesen пишет: Hi. I am having a project on setting up Samba to work as a replacement for MS AD. I would prefer to do it on OpenBSD, but how is the implementation of Samba on OpenBSD? Is it enhanced in a way that will cause any known problems that would not be on

Re: SSL_ERROR_DECODE_ERROR_ALERT in Fedora 30 Firefox when connecting to some OpenBSD servers

2019-06-06 Thread kasak
Stuart Henderson писал 2019-06-05 17:10: On 2019-06-05, Frank Groeneveld wrote: On Wed, Jun 5, 2019, at 08:07, Frank Groeneveld wrote: After updating to Firefox 67.0 on Fedora 30 it seems some OpenBSD servers cannot be reached over HTTPS anymore. The error produced is

Re: Software caused connection abort (53) squid 4.6 on OpenBSD 6.5

2019-05-23 Thread Kasak
Have you seen this https://github.com/squid-cache/squid/pull/404 ? > 23 мая 2019 г., в 18:12, Marcus MERIGHI написал(а): > > Hello, > > same here. > > I guess bugs@ or ports@ would be better. > > w...@wootsie.com (w...@wootsie.com), 2019.05.23 (Thu) 14:36 (CEST): >> I have been running into

Re: need docs about udp buffer size

2019-05-16 Thread kasak
16.05.2019 16:51, Claudio Jeker пишет: On Thu, May 16, 2019 at 12:18:53PM +0300, kasak wrote: Hello! I have a litle problem with my unbound: unbound: notice: sendto failed: No buffer space available I think, I should increase net.inet.udp.sendspace, but I don't really understand what size do

need docs about udp buffer size

2019-05-16 Thread kasak
Hello! I have a litle problem with my unbound: unbound: notice: sendto failed: No buffer space available I think, I should increase net.inet.udp.sendspace, but I don't really understand what size do i need. Is there any information about calculating needed buffer space?

Re: ulpt vs kernel relinking

2019-05-11 Thread kasak
10.05.2019 8:37, Thuban пишет: Hi, I have a printer that require ulpt to be disabled as mentionned in /usr/local/share/doc/pkg-readmes/cups. And it works. # config -fe /bsd disable ulpt quit After a reboot, I can notice : reorder_kernel: kernel relinking

Re: boot problems, nvme?

2019-02-01 Thread kasak
01.02.2019 14:00, Kapetanakis Giannis пишет: On 31/01/2019 15:57, kasak wrote: 31.01.2019 15:18, Kapetanakis Giannis пишет: Hi, I've just installed current as well 6.4 on a new pc and I have problems booting it. Although I can boot bsd.rd and install system fine I cannot boot the normal

Re: boot problems, nvme?

2019-01-31 Thread kasak
31.01.2019 15:18, Kapetanakis Giannis пишет: Hi, I've just installed current as well 6.4 on a new pc and I have problems booting it. Although I can boot bsd.rd and install system fine I cannot boot the normal kernel. Boot hungs after wskbd0 at pckbd0: console keyboard, using wsdisplay1 In

Re: pcppi boot hang

2018-10-29 Thread kasak
if not. On Oct 29, 2018, at 3:47 AM, kasak wrote: hello everybody! i have ASUS Z170-K board with i7-6700 CPU. It has a problem, it hangs on boot when probing pcppi0. Every time when i have to reboot i enter UKC and disable pcppi, only after that i can boot. Is there any workaround to this ?

pcppi boot hang

2018-10-29 Thread kasak
hello everybody! i have ASUS Z170-K board with i7-6700 CPU. It has a problem, it hangs on boot when probing pcppi0. Every time when i have to reboot i enter UKC and disable pcppi, only after that i can boot. Is there any workaround to this ?

please, help me on new smtpd.conf

2018-10-19 Thread kasak
Hello. I have just updated to 6.4 and afraid of making mistakes on mail server. Please look at my conf: pki kasakoff.net cert "/etc/ssl/kasakoff.net.fullchain.pem" pki kasakoff.net key "/etc/ssl/private/kasakoff.net.key" listen on lo0 listen on lo port 10028 tag DKIM listen on egress inet4

Re: Not able to boot from softraid :(

2018-07-24 Thread kasak
, 2018 at 03:13:10PM +0300, kasak wrote: 24.07.2018 14:30, kasak пишет: 24.07.2018 14:18, Otto Moerbeek пишет: On Tue, Jul 24, 2018 at 02:07:15PM +0300, kasak wrote: 24.07.2018 10:24, kasak пишет: Hello everybody. I'm trying to install OpenBSD 6.3 on softraid. My configuration is simple:

Re: Not able to boot from softraid :(

2018-07-24 Thread kasak
24.07.2018 14:30, kasak пишет: 24.07.2018 14:18, Otto Moerbeek пишет: On Tue, Jul 24, 2018 at 02:07:15PM +0300, kasak wrote: 24.07.2018 10:24, kasak пишет: Hello everybody. I'm trying to install OpenBSD 6.3 on softraid. My configuration is simple: Asus z170-k motherboard, with i7

Re: Not able to boot from softraid :(

2018-07-24 Thread kasak
24.07.2018 14:18, Otto Moerbeek пишет: On Tue, Jul 24, 2018 at 02:07:15PM +0300, kasak wrote: 24.07.2018 10:24, kasak пишет: Hello everybody. I'm trying to install OpenBSD 6.3 on softraid. My configuration is simple: Asus z170-k motherboard, with i7-6700 cpu, and 16 gb ram. no external

Re: Not able to boot from softraid :(

2018-07-24 Thread kasak
24.07.2018 10:24, kasak пишет: Hello everybody. I'm trying to install OpenBSD 6.3 on softraid. My configuration is simple: Asus z170-k motherboard, with i7-6700 cpu, and 16 gb ram. no external vga or other cards, just this. I have 2 similar 750 gb disks. I have succesfully booted

Re: Not able to boot from softraid :(

2018-07-24 Thread kasak
24.07.2018 10:32, Indunil Jayasooriya пишет: This may help you. http://www.bsdnow.tv/tutorials/raid On Tue, Jul 24, 2018 at 12:54 PM, kasak wrote: Hello everybody. I'm trying to install OpenBSD 6.3 on softraid. My configuration is simple: Asus z170-k motherboard, with i7-6700 cpu

Not able to boot from softraid :(

2018-07-24 Thread kasak
Hello everybody. I'm trying to install OpenBSD 6.3 on softraid. My configuration is simple: Asus z170-k motherboard, with i7-6700 cpu, and 16 gb ram. no external vga or other cards, just this. I have 2 similar 750 gb disks. I have succesfully booted bsd.rd in uefi mode, then with shell i

Re: samba at snapshots

2018-07-11 Thread kasak
11.07.2018 18:04, Tuyosi T пишет: hi all . it is supprising openbsd snapshots runs samba . and windows 10 accesses "OpenSamba" . but this may contain some errors . then please point them . 1)/etc/samba/smb.conf [global] workgroup = WORKGROUP server string = SAMBA SERVER Version %v netbios

Re: 6.3 amd64 in VirtualBox - keyboard

2018-04-05 Thread kasak
05.04.2018 01:55, Will Backman пишет: Anyone else seeing an unresponsive keyboard with 6.3 release amd64 when running in VirtualBox? bsd.rd installer works. After install, cannot log in because keyboard won't accept input. 6.2 works fine. Installed current (as of 4/4) and keyboard works. I

Re: IPMI still requires Java! I'm screwed.

2017-12-21 Thread kasak
> 21 дек. 2017 г., в 12:16, Maxim Bourmistrov <m...@alumni.chalmers.se> > написал(а): > > > Even X10 can be upgraded to get in html5. > >> 21 dec. 2017 kl. 06:50 skrev kasak <ka...@kasakoff.net>: >> >> >>> 21 дек. 2017 г.

Re: IPMI still requires Java! I'm screwed.

2017-12-20 Thread kasak
> 21 дек. 2017 г., в 0:03, Chris Bennett > написал(а): > > I found a new server that uses IPMI and offers using it > to setup your own custom OS. So I bought in. > > Damn thing requires Java. > They offered me some pretty worthless advice on using > Java. >

something wrong with softraid

2017-12-20 Thread kasak
please help, I just noticed this strange thing: $ df -h Filesystem Size    Used   Avail Capacity  Mounted on /dev/sd0a 1005M   1004M  -49.6M   105%    / /dev/sd0k 26.0G    2.3G   22.4G 9%    /home /dev/sd0d  3.9G    138K    3.7G 0%    /tmp /dev/sd0f  2.0G    795M   

Re: Hot Spare in Softraid?

2017-08-13 Thread kasak
12.08.2017 22:02, Federico Giannici пишет: On 08/12/17 20:48, noah pugsley wrote: On Sat, Aug 12, 2017 at 10:55 AM, Federico Giannici wrote: Is it possible to set a "Hot Spare" chunk for a RAID1 Softraid? From the "bioctl" man page seems that this functionality is

is it possible to speed up network to 1 Gb ?

2017-03-01 Thread kasak
Hello everybody. I know that speed does not matter this days, and security matter. But i want an advice, i have xeon computer with fresh disks, they work pretty fast, and also i have 1 gbit switch and 1gbit intel nic on both side, here is iperf test: $ doas iperf -s

Re: can't make to work rdr-to rule

2017-02-20 Thread kasak
> On 2017-02-20, kasak<ka...@kasakoff.net> wrote: > > hello everybody! > > > > Recently i saw this trick on > >http://www.tedunangst.com/flak/post/turn-your-network-inside-out-with-one-pfconf-trick > > > > I decided it was a great idea,

can't make to work rdr-to rule

2017-02-20 Thread kasak
hello everybody! Recently i saw this trick on http://www.tedunangst.com/flak/post/turn-your-network-inside-out-with-one-pfconf-trick I decided it was a great idea, and tried to add this rule to my firewall, but it doesn't work. Look, I placed this line immediately after nat-to rule

Re: need help with ipv6

2016-07-30 Thread kasak
> On 2016-07-29, kasak <ka...@kasakoff.net> wrote: > > Hello everybody. I have a strange issue with ipv6 on my router. I have a > > HE.net tunnel on gif0: > > > > here is my hostname.gif0: > > > > $ cat /etc/hostname.gif0 > > tunnel 91.210.228.4 2

need help with ipv6

2016-07-29 Thread kasak
Hello everybody. I have a strange issue with ipv6 on my router. I have a HE.net tunnel on gif0: here is my hostname.gif0: $ cat /etc/hostname.gif0 tunnel 91.210.228.4 216.66.86.114 inet6 alias 2001:470:6c:12d::2 128 dest 2001:470:6c:12d::1 !route -n add -inet6 default 2001:470:6c:12d::1 my

Re: Cannot understand iked

2016-05-04 Thread kasak
04.05.2016 10:25, Andreas Karlsson пишет: On 05/03/2016 10:23 PM, kasak wrote: Hello everybody. I hope somebody can help me with iked. I have 2 gates, both can ping each other. One has this iked.conf: ikev2 from 212.233.112.10 to 192.168.1.0/24 \ from 192.168.2.0/23 to 192.168.1.0/24 \ local

Cannot understand iked

2016-05-04 Thread kasak
Hello everybody. I hope somebody can help me with iked. I have 2 gates, both can ping each other. One has this iked.conf: ikev2 from 212.233.112.10 to 192.168.1.0/24 \ from 192.168.2.0/23 to 192.168.1.0/24 \ local 212.233.112.10 srcid 212.233.112.10 Another has: ikev2 active \ from