PPPoE vlan issue 6.4

2019-02-08 Thread Adam Evans
Hi, i'm trying to set up an OpenBSD router (6.4) on a PcEngines APU2D4 with Intel i210AT nics however I am having difficulties with PPPoE. I can see the discovery PADI packets going out using tcpdump but do not see any PADO response so PPPoE times out and retries sending the PADI packets. More

Re: purpose of bgpd.conf dump "timeout" parameter?

2019-02-08 Thread Adam Thompson
Yes, that clarifies it, thank you. I will attempt to explain that better and provide patch for bgpd.conf.5 next week. May I suggest a future function for bgpctl/bgpd - creating an MRT dump on demand? Even if only able to run in the context of bgpd(8), I think it could be helpful. (Certainly i

Re: How to print nicely formatted man pages?

2019-02-08 Thread Stephen Gregoratto
In my opinion I find the PostScript/PDF output from groff to be better than mandoc's, sorry Ingo :(. The font size and line spacing makes a better print, which makes sense considering that groff is a typesetting suite. The catch is that groff doesn't detect if eqn(1) or tbl(1) needs to be run f

Re: purpose of bgpd.conf dump "timeout" parameter?

2019-02-08 Thread Claudio Jeker
On Fri, Feb 08, 2019 at 03:56:12PM -0600, Adam Thompson wrote: > In bgpd.conf(5), for the "dump" directive there is an optional "timeout" > parameter. What is its purpose? I assume from the examples that it's > denominated in seconds... Yes it is. > my first guess was to time out on attempting

purpose of bgpd.conf dump "timeout" parameter?

2019-02-08 Thread Adam Thompson
In bgpd.conf(5), for the "dump" directive there is an optional "timeout" parameter. What is its purpose? I assume from the examples that it's denominated in seconds... my first guess was to time out on attempting to write to the dump file, but that doesn't seem realistic. It looks like it's

Re: 3g/4g modem access from within chroot

2019-02-08 Thread Kihaguru Gathura
Have removed the group assginment and instead did chown as follows: www# chown www:daemon /var/www/dev/cuaU2 www# chroot -u www /var/www /gathura/modem Status: 200 OK Content-type: text/html Connected to /dev/cuaU2 (speed 115200) AT+CMGF=1 O

Re: Substitute mandoc for tlb command

2019-02-08 Thread Anthony J. Bentley
Артур Истомин writes: > I need t command to accomplish example from "The AWK Programming Language" > book. > Is it possible somehow substitute it with mandoc? Yes, simply substitute mandoc for tbl and the examples in the book will work. Just make sure to render the output in a large terminal to av

Re: 3g/4g modem access from within chroot

2019-02-08 Thread Edgar Pettijohn
On Feb 8, 2019 2:21 PM, Kihaguru Gathura wrote: > > > > > Is there a /var/www/dev/cuaU2 > > Indeed this is present. created it before as follows: > > www# mkdir /var/www/dev > www# cd /var/www/dev > www# sh /dev/MAKEDEV ttyU2 > www# ls > cuaU2 ttyU2 > www# > > > > > On 2/8/19, Edgar Pettijohn w

Re: 3g/4g modem access from within chroot

2019-02-08 Thread Kihaguru Gathura
Finally this works but wish to know any security implications if any. www# usermod -G dialer www www# chroot -u www /var/www /cgi-bin/modem Status: 200 OK Content-type: text/html Connected to /dev/cuaU2 (speed 115200) AT+CMGF=1 OK [EOT] www# Thanks Kihaguru. On 2/8/19, Kihaguru Gathura wrote

Re: 3g/4g modem access from within chroot

2019-02-08 Thread Kihaguru Gathura
> > Is there a /var/www/dev/cuaU2 Indeed this is present. created it before as follows: www# mkdir /var/www/dev www# cd /var/www/dev www# sh /dev/MAKEDEV ttyU2 www# ls cuaU2 ttyU2 www# > On 2/8/19, Edgar Pettijohn wrote: > > On Feb 8, 2019 9:01 AM, Kihaguru Gathura wrote: >> >> Hi, >> >> What

Re: Best way to fix a directory's permissions?

2019-02-08 Thread Mike Coddington
On Fri, Feb 08, 2019 at 01:45:59PM -0600, Edgar Pettijohn wrote: > > mtree(8) > > Never used it but I think it's what you want. I just gave it a shot and it works perfectly. Thanks, Edgar and William! -- Put your Nose to the Grindstone! -- Amalgamated Plastic Surgeons and Tool

Re: Best way to fix a directory's permissions?

2019-02-08 Thread William Ahern
On Fri, Feb 08, 2019 at 12:02:50PM -0600, Mike Coddington wrote: > Last night I screwed up my /tmp directory's permissions. I fixed it by > looking at another machine's permissions and editing the directory with > chmod(1). Is there a tool in OpenBSD which would work better than this? > I'm fortuna

Re: Best way to fix a directory's permissions?

2019-02-08 Thread Edgar Pettijohn
On Feb 8, 2019 12:02 PM, Mike Coddington wrote: > > Last night I screwed up my /tmp directory's permissions. I fixed it by > looking at another machine's permissions and editing the directory with > chmod(1). Is there a tool in OpenBSD which would work better than this? > I'm fortunate enough to

Best way to fix a directory's permissions?

2019-02-08 Thread Mike Coddington
Last night I screwed up my /tmp directory's permissions. I fixed it by looking at another machine's permissions and editing the directory with chmod(1). Is there a tool in OpenBSD which would work better than this? I'm fortunate enough to have more than one machine running OpenBSD, but if I didn't

Re: drm bug on Dell Inspiron 3721 (6.4release and 6.4 current)

2019-02-08 Thread dmitry.sensei
thanks for investigation . With "Legacy BIOS/CSM compatibility is enabled" my dmesg output is dmesg|grep -i drm radeondrm0 at pci1 dev 0 function 0 "ATI Radeon HD 8730M" rev 0x00 drm1 at radeondrm0 radeondrm0: msi inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics 4000" rev 0x09 drm0 at inteldrm

Re: drm bug on Dell Inspiron 3721 (6.4release and 6.4 current)

2019-02-08 Thread Joe Davis
I had a similar issue when attempting to boot on an 2011 iMac with a radeon card. I did track down the location of the bug, but I didn't get around to reporting it. As far as I can tell the problem is this line (243, in -current) in dev/pci/drm/radeon/radeon_bios.c, in the function radeon_read_bi

Re: Substitute mandoc for tlb command

2019-02-08 Thread Tony Boston
> On 8. Feb 2019, at 16:22, Артур Истомин wrote: > > I need t command to accomplish example from "The AWK Programming Language" > book. > Is it possible somehow substitute it with mandoc? > > Thanks! > you are funny -- Tony GPG-FP: 49CC8250 CDCF2183 6209C1AE 625677C1 F7783D5F Threema: DN8P

Re: EU anoncvs rsync mirror not updating

2019-02-08 Thread Stuart Henderson
On 2019-02-08, Mihai Popescu wrote: > A few days ago I intalled a snaphot not in sync base/ports. > Yesterday I was very happy to see ftp.openbsd.org has a new set of > packages compiled, but since that server is far away I waited for EU > servers to mirror the sets. > The very first one to start

Substitute mandoc for tlb command

2019-02-08 Thread Артур Истомин
I need t command to accomplish example from "The AWK Programming Language" book. Is it possible somehow substitute it with mandoc? Thanks!

Re: 3g/4g modem access from within chroot

2019-02-08 Thread Edgar Pettijohn
On Feb 8, 2019 9:01 AM, Kihaguru Gathura wrote: > > Hi, > > What effective way can be used to apply permission to /dev/cuaU2 to > avoid the error below. > > > www# chroot -u www /var/www cgi-bin/modem Is there a /var/www/dev/cuaU2 > Status: 200 OK > Content-type: text/html > > cu: open("/dev/c

Re: Questions about Carp / PF / PFSync

2019-02-08 Thread Charles Amstutz
Charles Amstutz(charl...@binary.net) on 2019.01.30 23:16:17 +: > Hello > > We are running into an issue with a lot of dropped packets where states are > failing to be created. We have noticed that it coincides with a fair amount > of congestion, around 10-15/s according to 'pfctl -si'. >

Re: 3g/4g modem access from within chroot

2019-02-08 Thread Kihaguru Gathura
Hi, What effective way can be used to apply permission to /dev/cuaU2 to avoid the error below. www# chroot -u www /var/www cgi-bin/modem Status: 200 OK Content-type: text/html cu: open("/dev/cuaU2"): Permission denied Note: chown www:daemon /dev/cuaU2 has not worked. chroot is in the root fold

Re: amd64: can't boot 6.4, can boot 6.3

2019-02-08 Thread
>On Fri, Feb 08, 2019 at 02:23:21PM +0300, ¯\_(ツ)_/¯ ¯\_(ツ)_/¯ wrote: >> Hello, >> I can't install 6.4 nor snapshot. >> Boot hangs after: >> wsdisplay0 at efifb0 mux 1: console (std, vt100 emulation), using wskbd0 >> >> Motherboard is MSI B85M-G43. >> Can't provide full dmesg because can't boot :(

Re: EU anoncvs rsync mirror not updating

2019-02-08 Thread Mihai Popescu
A few days ago I intalled a snaphot not in sync base/ports. Yesterday I was very happy to see ftp.openbsd.org has a new set of packages compiled, but since that server is far away I waited for EU servers to mirror the sets. The very first one to start the mirroring was ftp2.eu.openbsd.org, but for

Re: device node for sd1 not present

2019-02-08 Thread
>>On Fri, Feb 08, 2019 at 05:00:16PM +0300, ??\_(???)_/?? ??\_(???)_/?? wrote: >> >> >On Fri, Feb 08, 2019 at 04:42:42PM +0300, ??\_(???)_/?? ??\_(???)_/?? wrote: >> >> Hi, >> >> I need to mount sd1(install media) in install shell, but it only has >> >> device nodes for sd0(hdd). >> >> How do I c

Re: EU anoncvs rsync mirror not updating

2019-02-08 Thread Andreas Kusalananda Kähäri
On Fri, Feb 08, 2019 at 11:14:50AM +0100, Andreas Kusalananda Kähäri wrote: > Hi, > > The mirror status page at [1] says that the rsync mirror at > ftp.eu.openbsd.org::OpenBSD is up to date as usual. This is good > and I can get my snapshots from there with no issues. However, the > rsync://anon

Re: device node for sd1 not present

2019-02-08 Thread
>On Fri, Feb 08, 2019 at 04:42:42PM +0300, ??\_(???)_/?? ??\_(???)_/?? wrote: >> Hi, >> I need to mount sd1(install media) in install shell, but it only has device >> nodes for sd0(hdd). >> How do I create device nodes for sd1 ? >> Also, I can't execute /dev/MAKEDEV("Permission denied"). > ># c

Re: device node for sd1 not present

2019-02-08 Thread Josh Grosse
On Fri, Feb 08, 2019 at 04:42:42PM +0300, ??\_(???)_/?? ??\_(???)_/?? wrote: > Hi, > I need to mount sd1(install media) in install shell, but it only has device > nodes for sd0(hdd). > How do I create device nodes for sd1 ? > Also, I can't execute /dev/MAKEDEV("Permission denied"). # cd /dev &&

device node for sd1 not present

2019-02-08 Thread
Hi, I need to mount sd1(install media) in install shell, but it only has device nodes for sd0(hdd). How do I create device nodes for sd1 ? Also, I can't execute /dev/MAKEDEV("Permission denied").

Re: How to print nicely formatted man pages?

2019-02-08 Thread Ingo Schwarze
Hi Beto, Beto wrote on Fri, Feb 08, 2019 at 07:45:50AM -0500: > man man | col -b > man.txt This is bad advice in the present context. Look at the Subject: line. Anne asked for "nicely formatted" printing. Your solution would be adequate if the question has been about "minimally formatted", thou

Re: How to print nicely formatted man pages?

2019-02-08 Thread Beto
Hi try man man | col -b > man.txt br El jue., 7 de feb. de 2019 a la(s) 11:03, Anne Wainwright ( anothera...@fables.co.za) escribió: > On Thu, Feb 07, 2019 at 09:29:39AM +0200, Anne Wainwright wrote: > > Hi, > > > > I can print out nicely formatted man pages in linux, thus: > > > > $ man -t ls

Fwd: drm bug on Dell Inspiron 3721 (6.4release and 6.4 current) - error: [drm:pid0:radeon_get_bios] *ERROR* Unable to locate a BIOS ROM. drm:pid0:radeondrm_attachhook *ERROR* Fatal error during GPU in

2019-02-08 Thread dmitry.sensei
-- Forwarded message -- From: dmitry.sensei Date: Wednesday, February 6, 2019 Subject: drm bug on Dell Inspiron 3721 (6.4release and 6.4 current) - error: [drm:pid0:radeon_get_bios] *ERROR* Unable to locate a BIOS ROM. drm:pid0:radeondrm_attachhook *ERROR* Fatal error during GPU in

Re: amd64: can't boot 6.4, can boot 6.3

2019-02-08 Thread Solene Rapenne
On Fri, Feb 08, 2019 at 02:23:21PM +0300, ¯\_(ツ)_/¯ ¯\_(ツ)_/¯ wrote: > Hello, > I can't install 6.4 nor snapshot. > Boot hangs after: > wsdisplay0 at efifb0 mux 1: console (std, vt100 emulation), using wskbd0 > > Motherboard is MSI B85M-G43. > Can't provide full dmesg because can't boot :( > If i

Re: missing sdl header and lib files

2019-02-08 Thread Solene Rapenne
On Fri, Feb 08, 2019 at 11:26:15AM +, shadrock uhuru wrote: > hi everyone > > i have added the following packages > > sdl > sdl-mixer > sdl_image > sdl_net > sdl_ttf > sdl2 > sdl2-mixer > sdl2_image > sdl2_net > sdl2_ttf > > the lib and header files are missing > > are there additional pack

Re: amd64: can't boot 6.4, can boot 6.3

2019-02-08 Thread
>Hello, >I can't install 6.4 nor snapshot. >Boot hangs after: >wsdisplay0 at efifb0 mux 1: console (std, vt100 emulation), using wskbd0 > >Motherboard is MSI B85M-G43. >Can't provide full dmesg because can't boot :( Oh, I forgot to add that 6.3 hangs a bit on the same line and outputs this: uhub0:

missing sdl header and lib files

2019-02-08 Thread shadrock uhuru
hi everyone i have added the following packages sdl sdl-mixer sdl_image sdl_net sdl_ttf sdl2 sdl2-mixer sdl2_image sdl2_net sdl2_ttf the lib and header files are missing are there additional packages to add for these. shadrock

amd64: can't boot 6.4, can boot 6.3

2019-02-08 Thread
Hello, I can't install 6.4 nor snapshot. Boot hangs after: wsdisplay0 at efifb0 mux 1: console (std, vt100 emulation), using wskbd0 Motherboard is MSI B85M-G43. Can't provide full dmesg because can't boot :(

Re: How to print nicely formatted man pages?

2019-02-08 Thread Rajneesh N. Shetty
www.dqindia.com/importance-patents-iot-enabled-devices/ Rajneesh N. Shetty On Thu, 7/2/19, Peter N. M. Hansteen wrote: Subject: Re: How to print nicely formatted man pages? To: misc@openbsd.org Received: Thursday, 7 February, 2019, 8:26 PM On T

EU anoncvs rsync mirror not updating

2019-02-08 Thread Andreas Kusalananda Kähäri
Hi, The mirror status page at [1] says that the rsync mirror at ftp.eu.openbsd.org::OpenBSD is up to date as usual. This is good and I can get my snapshots from there with no issues. However, the rsync://anoncvs.eu.openbsd.org/OpenBSD-cvs bit of what I *assume* is the same server is out of date