Re: Forwarding to a proxy on a different system with pf

2013-05-06 Thread Peter Hessler
divert-to is *only* for the localhost. To send this traffic to a different host, you have to use rdr-to. On 2013 May 04 (Sat) at 01:23:06 +1000 (+1000), John Tate wrote: :I have a squid proxy listening in transparent mode on another faster :system, but I can't seem to get packets there with pf.

Re: BCM5720, LACP and CARP serious problem

2013-05-06 Thread Loïc BLOT
Hello, I use the same stack: Carp on vlan on trunk on physical, There is no backtrace its a complète server freeze (im on a serial), i would prefer a ddb but there isn't Loic Blot Le 6 mai 2013 à 06:59, David Gwynne da...@gwynne.id.au a écrit : do you have a real serial console hooked up to

Re: Versioning file system?

2013-05-06 Thread Mike Jackson
ZFS or UFS snapshots, FreeBSD. On 29 Apr 2013, at 19:54, Xianwen Chen xianwen.c...@gmail.com wrote: Hi fellas, I'm looking for a versioning file system or a comparative implementation. The idea is that I want to store file changes for some periods of time. I also want to be able to

snapshots/amd64/SHA256 x*.tgz checksums missing

2013-05-06 Thread MERIGHI Marcus
Hello, my snapshot upgrade procedure just puked at me because it could not find a checksum for xbase53.tgz. This is on amd64, dmesg at the end. Below is the result of me going through all the archs and looking for x*.tgz checksums in the SHA256 files. I do know that this does not make sense for

Re: snapshots/amd64/SHA256 x*.tgz checksums missing

2013-05-06 Thread Abel Abraham Camarillo Ojeda
search archives On Mon, May 6, 2013 at 4:19 AM, MERIGHI Marcus mcmer-open...@tor.at wrote: Hello, my snapshot upgrade procedure just puked at me because it could not find a checksum for xbase53.tgz. This is on amd64, dmesg at the end. Below is the result of me going through all the archs and

Re: BCM5720, LACP and CARP serious problem

2013-05-06 Thread Loïc BLOT
A little more precision, my server have network, but some times he looses also network for 1 second and CARP goes to master on this backup servers and generate instability. I think there is a problem somewhere, but i don't know why. To compare, i have two Dell R320 with BCM5720 and EM, on works

Re: Sturdy and secure mail server

2013-05-06 Thread Ireneusz Szcześniak
Hi, Chris, Matthew, Lee, Ryan, thank you for your advice. Let me explain in more detail what I currently have and what I need. I have three email accounts at different servers (not Gmail only). These three mail servers support SMTP/IMAP/POP3 over SSL/TSL. Currently I have a desktop at work,

Re: snapshots/amd64/SHA256 x*.tgz checksums missing

2013-05-06 Thread MERIGHI Marcus
acam...@verlet.org (Abel Abraham Camarillo Ojeda), 2013.05.06 (Mon) 11:27 (CEST): search archives That's what I call minimalism ;-) I did what you told me to in advance and there's only one hit close enough to care: Alexander Polakov snapshots SHA256 mismatch 2013-05-04 22:00:35

Re: snapshots/amd64/SHA256 x*.tgz checksums missing

2013-05-06 Thread Richard Toohey
On 05/06/13 22:04, MERIGHI Marcus wrote: acam...@verlet.org (Abel Abraham Camarillo Ojeda), 2013.05.06 (Mon) 11:27 (CEST): search archives That's what I call minimalism ;-) I did what you told me to in advance and there's only one hit close enough to care: Alexander Polakov snapshots SHA256

Re: snapshots/amd64/SHA256 x*.tgz checksums missing

2013-05-06 Thread Abel Abraham Camarillo Ojeda
they aren't too old to care. On Mon, May 6, 2013 at 5:04 AM, MERIGHI Marcus mcmer-open...@tor.at wrote: acam...@verlet.org (Abel Abraham Camarillo Ojeda), 2013.05.06 (Mon) 11:27 (CEST): search archives That's what I call minimalism ;-) I did what you told me to in advance and there's only

Re: snapshots/amd64/SHA256 x*.tgz checksums missing

2013-05-06 Thread MERIGHI Marcus
richardtoo...@paradise.net.nz (Richard Toohey), 2013.05.06 (Mon) 12:09 (CEST): On 05/06/13 22:04, MERIGHI Marcus wrote: acam...@verlet.org (Abel Abraham Camarillo Ojeda), 2013.05.06 (Mon) 11:27 (CEST): search archives That's what I call minimalism ;-) I did what you told me to in advance

Re: OpenBSD ignoring RFC-compliant IPv6 neighbor solicitation?

2013-05-06 Thread Janne Johansson
I have now run into this problem also. (which sadly affects anoncvs.eu.openbsd.org). The router has another ip on a loopback interface somewhere which it thinks is it's own main v6 ip, and then it sends it as the source ip of the solictation. This in turn means that my obsd wont respond to the NDP

[NOTICE] BIOS update for Jetway NC9K series motherboard (64bit support)

2013-05-06 Thread Ville Valkonen
Hello Misc! As there are probably other Jetway NC9K series motherboard owners in the list, I'd like to share this information as it might come handy: Jetway added support for EMT64 in the latest BIOS update and therefore it is possible to run amd64 port of OpenBSD. Update adds 64bit support for

Re: [NOTICE] BIOS update for Jetway NC9K series motherboard (64bit support)

2013-05-06 Thread Jay Hart
Someone has a sense of humor: 5. Wait in suspense until the update finished Jay Hello Misc! As there are probably other Jetway NC9K series motherboard owners in the list, I'd like to share this information as it might come handy: Jetway added support for EMT64 in the latest BIOS update and

strange error on openbsd

2013-05-06 Thread Friedrich Locke
Dear list members, I am in need to write a simple program to return the passwd entry for a given uid number. Here you have it: #include sys/types.h #include errno.h #include pwd.h #include stdio.h int main(int argc, char **argv) { struct passwd *p; int e;

Re: strange error on openbsd

2013-05-06 Thread Philip Guenther
On Mon, May 6, 2013 at 6:06 PM, Friedrich Locke friedrich.lo...@gmail.com wrote: I am in need to write a simple program to return the passwd entry for a given uid number. Here you have it: #include sys/types.h #include errno.h #include pwd.h #include stdio.h int main(int argc, char

Re: strange error on openbsd

2013-05-06 Thread Ted Unangst
On Mon, May 06, 2013 at 22:06, Friedrich Locke wrote: e = errno, errno = 0; p = getpwuid(0); if (errno) { fprintf(stdout, errno is: %u\n, errno); sioux@lion$ ./pw errno is: 13 sioux@lion$ Any ideia why openbsd implementation of getpwuid returns error ? That is not how the man page

Re: strange error on openbsd

2013-05-06 Thread noah pugsley
On Mon, May 6, 2013 at 6:31 PM, Ted Unangst t...@tedunangst.com wrote: On Mon, May 06, 2013 at 22:06, Friedrich Locke wrote: e = errno, errno = 0; p = getpwuid(0); if (errno) { fprintf(stdout, errno is: %u\n, errno); sioux@lion$ ./pw errno is: 13 sioux@lion$ Any ideia why

PF Queues not working

2013-05-06 Thread Bentley, Dain
Hello misc, I have an openbsd 5.1 firewall running with PF and four interfaces. One is not active but I have on ext, one int and one dmz. I'm trying to get qos working and I'm having issues. My pf rules load fine but everything seems to be applied to only one queue despite the traffic. Now,

Strange error on OPenBSD

2013-05-06 Thread Friedrich Locke
As Noah Pugsley noted: it should have worked, regardless error checking code is not right. As asked: sioux@scallop$ ls -l /etc/pwd.db /etc/spwd.db -rw-r--r-- 1 root wheel1220608 May 1 12:41 /etc/pwd.db -rw-r- 1 root _shadow 1273856 May 1 12:41 /etc/spwd.db sioux@scallop$ I am

Re: Strange error on OPenBSD

2013-05-06 Thread Philip Guenther
On Mon, May 6, 2013 at 7:51 PM, Friedrich Locke friedrich.lo...@gmail.com wrote: As Noah Pugsley noted: it should have worked, regardless error checking code is not right. As asked: sioux@scallop$ ls -l /etc/pwd.db /etc/spwd.db -rw-r--r-- 1 root wheel1220608 May 1 12:41 /etc/pwd.db

Re: Strange error on OPenBSD

2013-05-06 Thread patrick keshishian
On Mon, May 6, 2013 at 7:51 PM, Friedrich Locke friedrich.lo...@gmail.com wrote: As Noah Pugsley noted: it should have worked, regardless error checking code is not right. As asked: sioux@scallop$ ls -l /etc/pwd.db /etc/spwd.db -rw-r--r-- 1 root wheel1220608 May 1 12:41 /etc/pwd.db