4.9 build problems

2011-10-10 Thread Илья Шипицин
server is 4.9/amd64 source is CVS/4.9 cd /usr/src make build is it ok that system cannot build itself from source ? building shared object objc library ranlib libobjc_pic.a building shared objc library (version 5.0) cc -shared -fpic -o libobjc.so.5.0 `lorder archive.so class.so encoding.so

Re: 4.9 build problems

2011-10-10 Thread Christer Solskogen
On Mon, Oct 10, 2011 at 8:39 AM, PP;Q Q P(P8P?P8QP8P= chipits...@gmail.com wrote: server is 4.9/amd64 source is CVS/4.9 cd /usr/src make build is it ok that system cannot build itself from source ? No. But it's also not okay to not read the documentation on the subject. -- chs,

Re: smtpd and virtuals

2011-10-10 Thread Gilles Chehade
On Sat, Oct 08, 2011 at 02:40:04PM +0300, Henri Kemppainen wrote: [...] There's something odd about virtuals; though the code I'm running is no longer current (5.0-BETA, to be precise). Here's what makemap.8 says: Virtual domains are kept in maps. To create single virtual address,

spamd.black pfctl

2011-10-10 Thread pavel pocheptsov
hello misc. I have spamd before mail server. and it's work nice with liberal setting like this: spamd_flags=-v -l 127.0.0.1 -G 10:4:864 -h mail.server pf.conf: table spamd-white persist table spamd-bypass file /etc/mail/spamd.bypass table spamd-black file /etc/mail/spamd.black match in on

Re: smtpd and virtuals

2011-10-10 Thread Gilles Chehade
On Mon, Oct 10, 2011 at 12:11:28PM +0200, Gilles Chehade wrote: [...] I forgot to mention that this also allows you to very easily disable a virtual domain by simply commenting / uncommenting the domain key Gilles -- Gilles Chehade http://www.poolp.org/

Re: 4.9 build problems

2011-10-10 Thread Stuart Henderson
You polluted your source directory by building without 'make obj'. Simplest is to wipe it, make a fresh checkout, and this time follow section 5.3.5 from http://www.openbsd.org/faq/faq5.html On 2011-10-10, ??? chipits...@gmail.com wrote: server is 4.9/amd64 source is CVS/4.9 cd

Re: 4.9 build problems

2011-10-10 Thread Илья Шипицин
DESTDIR was the reason of mess. unset DESTDIR solved the problem 2011/10/10 Stuart Henderson s...@spacehopper.org: You polluted your source directory by building without 'make obj'. Simplest is to wipe it, make a fresh checkout, and this time follow section 5.3.5 from

Re: The OpenBSD user community needs to shake things up

2011-10-10 Thread Steven
* Loganaden Velvindron logana...@gmail.com [111009 12:45]: Fellow OpenBSD users, I've noticed a disturbing trend: Very few users are testing patches that developers/contributors are posting. You raised some good points. Thanks for the reminder to help out the devs. :-) -- W. Steven

Re: spamd.black pfctl

2011-10-10 Thread Boudewijn Dijkstra
Op Mon, 10 Oct 2011 12:12:23 +0200 schreef pavel pocheptsov lilit-aibo...@mail.ru: hello misc. I have spamd before mail server. and it's work nice with liberal setting like this: spamd_flags=-v -l 127.0.0.1 -G 10:4:864 -h mail.server pf.conf: [...] block in log quick on { $ext_if_a,

Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
Simplest of things but I'm failing miserably. $ sudo cat /etc/hostname.vic2 # External NIC with static public IPv4 address inet 50.50.50.59 255.255.255.0 50.50.50.255 $ sudo cat /etc/hostname.vic3 # Internal NIC used as gateway by two machines on same network inet 10.221.181.10 255.255.255.0

Re: The OpenBSD user community needs to shake things up

2011-10-10 Thread Marc Espie
On Sun, Oct 09, 2011 at 09:10:16PM +, Alexey E. Suslikov wrote: Loganaden Velvindron loganaden at gmail.com writes: If we don't shake things up, things will not change ! Running -current and testing diffs _helps_ OpenBSD development significantly. The problem, IMO, how process is

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Christiano F. Haesbaert
On 10 October 2011 12:38, Stefan Midjich sweh...@gmail.com wrote: Simplest of things but I'm failing miserably. $ sudo cat /etc/hostname.vic2 # External NIC with static public IPv4 address inet 50.50.50.59 255.255.255.0 50.50.50.255 $ sudo cat /etc/hostname.vic3 # Internal NIC used as

New project

2011-10-10 Thread Ludo Smissaert
Hi, A Call Center in the Netherlands starts a new project and likes to host it under OpenBSD / PostgreSQL. I am writing software for it, but could maybe get some help in setting up the infrastructure. If anybody is interested I would love to know this. Please contact me off-list and only if

Re: Help setting up a PF NAT gateway

2011-10-10 Thread pavel pocheptsov
match out on vic2 inet from 10.221.181.0/24 to any nat-to (vic2) round-robin in what reason you paste round-robin? also you need pass in on $local_if from $localnet to any pass out on $ext_if from $localnet to any 10 PP:QQP1QQ 2011, 19:42 PQ Stefan Midjich sweh...@gmail.com:

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Mark (obsd)
Hi Stefan, On Mon, Oct 10, 2011 at 10:38 AM, Stefan Midjich sweh...@gmail.com wrote: Simplest of things but I'm failing miserably. ... With tcpdump I can see packets going to vic3, but no further. Do you definitely have forwarding enabled? # sysctl net.inet.ip.forwarding

Re: smtpd and virtuals

2011-10-10 Thread David Walker
Hi. In manXX.tgz (since 4.8) and also on web-cgi, the smtpd.conf(5) man page references makemap(8) more than once ... ... with explicit instructions to use that man page as a guide when making db maps and/or understanding the format of plain maps. The web-cgi page obviously hyperlinks to the

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Wesley M.
Hi, see my sample, it is well explained. http://mouedine.net/ruleset49.aspx All the best, Wesley MOUEDINE ASSABY www.mouedine.net On Mon, 10 Oct 2011 17:38:26 +0200, Stefan Midjich sweh...@gmail.com wrote: Simplest of things but I'm failing miserably. $ sudo cat /etc/hostname.vic2 #

Re: smtpd and virtuals

2011-10-10 Thread David Walker
Hi Gilles. If my previous is hostile ... sorry. Without the context of the makemap man page in src/usr.sbin/smtpd/ there's no correlation between your first and second mails which creates more confusion. With that man page, however, pennies start to drop ... I spent 4= hours glued to my screen

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
Yes forwarding is enabled. I have followed the Book of PF 2nd Edition so far. 2011/10/10 Mark (obsd) openbsd-l...@nerdish.us: Hi Stefan, On Mon, Oct 10, 2011 at 10:38 AM, Stefan Midjich sweh...@gmail.com wrote: Simplest of things but I'm failing miserably. ... With tcpdump I can see

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
That was from the output of pfctl -vf /etc/pf.conf so it expands the rules and adds all that is implied, like keep state for example. 2011/10/10 pavel pocheptsov lilit-aibo...@mail.ru: match out on vic2 inet from 10.221.181.0/24 to any nat-to (vic2) round-robin in what reason you paste

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
ManagementIF = vic0 PFsyncIF = vic1 LocalIF = lo0 ManagementPorts = { 1022, 22 } UDPManagementPorts = { domain } ICMPTypes = { echorep, echoreq, unreach } set skip on { lo0 vic1 } OutIF = vic2 InIF = vic3 pass quick on vic0 inet proto tcp from any to any port = 1022 flags S/SA keep state label

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
$ sudo pfctl -sr |grep nat-to match in on vic3 inet from 10.221.181.0/24 to any label NATOut nat-to (vic2) round-robin pfctl -vsl shows only evaluated packets for all my rules, which worries me, it never increments the counter of packets gone through any of the nat rules. Only the first rules for

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Peter N. M. Hansteen
Stefan Midjich sweh...@gmail.com writes: $ sudo cat /etc/hostname.vic2 # External NIC with static public IPv4 address inet 50.50.50.59 255.255.255.0 50.50.50.255 $ sudo cat /etc/hostname.vic3 # Internal NIC used as gateway by two machines on same network inet 10.221.181.10 255.255.255.0

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
Not sure what you mean but they're both in switched vlans, two different vlans. Point to Point is a crossover cable right? I'm not sure what it means in English. This is all a virtual environment I use for training so there are no cables as such. 2011/10/10 Peter N. M. Hansteen pe...@bsdly.net:

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Christiano F. Haesbaert
On 10 October 2011 15:05, Stefan Midjich sweh...@gmail.com wrote: That was from the output of pfctl -vf /etc/pf.conf so it expands the rules and adds all that is implied, like keep state for example. I think that is not what you want: match in on vic3 inet from 10.221.181.0/24 to any label

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Peter N. M. Hansteen
Stefan Midjich sweh...@gmail.com writes: Not sure what you mean but they're both in switched vlans, two different vlans. Point to Point is a crossover cable right? I'm not sure what it means in English. This is all a virtual environment I use for training so there are no cables as such. take

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
match out on egress inet from vic3:network nat-to (egress:0) This is the new rule then, as it appears in pfctl -v match out on egress inet from 10.221.181.0/24 to any nat-to (egress:0) round-robin vic2 is only NIC in egress group in ifconfig. nc -vv cvs.openbsd.org 25 from 10.221.181.20 does

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
I have taken away the block all rule, but pfctl -d makes no difference. The gateway itself behaves just like any server connected to multiple vlans. You can reach the world around it, through its default gateway you can reach the internet. The servers connected to its private vlan, vic3, cannot

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Peter N. M. Hansteen
A couple of general comments, keep state is the default, no need to specify from any to any port = - to port does the same thing quick means if we match this, we do no more evaluation for this one. I suspect your quick rules before the nat-to match rules mean that anything that matches the

Re: The OpenBSD user community needs to shake things up

2011-10-10 Thread Alexey E. Suslikov
Marc Espie espie at nerim.net writes: Don't blame the tools. Blame the *people* who don't test. I wonder why jasper@ went to github if mailing lists are good enough. And you didn't respond on dead bug-tracker issue: if people test where is a place to put results? Alexey

Re: smtpd and virtuals

2011-10-10 Thread Gilles Chehade
On Tue, Oct 11, 2011 at 03:14:26AM +1030, David Walker wrote: Hi. Hi, In manXX.tgz (since 4.8) and also on web-cgi, the smtpd.conf(5) man page references makemap(8) more than once ... ... with explicit instructions to use that man page as a guide when making db maps and/or understanding

Re: smtpd and virtuals

2011-10-10 Thread Gilles Chehade
On Tue, Oct 11, 2011 at 04:17:11AM +1030, David Walker wrote: Hi Gilles. Hi, If my previous is hostile ... sorry. [...] I was angry about various things but that's down to me. You've done work here. I haven't. You've outlined it. You've been hostile, you've been angry. We've done

Re: smtpd and virtuals

2011-10-10 Thread David Walker
Hi Henri. On 11/10/2011, Henri Kemppainen ducl...@guu.fi wrote: I agree this isn't ideal. On the other hand, having a system ship with two overlapping incompatible alternatives is a rather exceptional case, and there's no way to automagically please everyone. One could suggest renaming

Re: smtpd and virtuals

2011-10-10 Thread Gilles Chehade
On Mon, Oct 10, 2011 at 10:45:37PM +0300, Henri Kemppainen wrote: I don't know what can be done about users, but I know what the users can do: try figure out what is lacking or misleading, maybe contact the developer(s), and propose a change. Something like this: Index: makemap.8

Re: smtpd and virtuals

2011-10-10 Thread Henri Kemppainen
In manXX.tgz (since 4.8) and also on web-cgi, the smtpd.conf(5) man page references makemap(8) more than once ... ... with explicit instructions to use that man page as a guide when making db maps and/or understanding the format of plain maps. [..] This has been the case for over a year

SATA RAID card suggestions?

2011-10-10 Thread Richard Johnson
I'm looking to possibly use a SATA RAID card instead of softraid(4) on a new amd64 PCIx or PCI express machine build. I'm tired of rebooting into the bios for other machines with mfi(4). So I want to build something manageable via bio(4), bioctl(4), and maybe sensorsd(8). That'll either be

Infracciones de transito pendientes

2011-10-10 Thread Aviso
Lunes 10 de octubre del 2011, Buenos Aires Republica Argentina Estimado contribuyente: Detectamos en nuestro Sistema Integrado de Multas de transito (SIMT) varias infracciones cometidas por su vehiculo. Debido a que usted no se notifico en el tribunal de faltas correspondiente le reenviamos las

Re: SATA RAID card suggestions?

2011-10-10 Thread Ryan Corder
On Mon, Oct 10, 2011 at 02:16:47PM -0600, Richard Johnson wrote: | I'm looking to possibly use a SATA RAID card instead of softraid(4) on a | new amd64 PCIx or PCI express machine build. | | I'm tired of rebooting into the bios for other machines with mfi(4). So I | want to build something

Foro Empresarial 2da Edición. Estrategias Empresariales rumbo al 2012.

2011-10-10 Thread Lic. Cindy Olivas
[IMAGE] Pms de Mixico prestigiada firma de Capacitacisn presenta: Foro Empresarial 2011 2da Edicisn Personal Branding, MKT y Medios Creativos, Planeacisn Un foro donde convergen lmderes de Marketing, Management, P.E., Coaching. Engel Fonseca Liderazgo 2.0, Eframn Mendicuti Personal Branding, Ariel

Re: 4.9 build problems

2011-10-10 Thread Stuart Henderson
On 2011-10-10, ??? chipits...@gmail.com wrote: DESTDIR was the reason of mess. unset DESTDIR solved the problem Ah yes, DESTDIR is not supported for building (and doesn't work on the gcc4 arches). Next time you show your process it helps if you don't miss out important things like

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan N
Hi Stefan, As you mentioned that the IP forwarding is already enabled on your system. Have you configured the IP alias on the network interface for the NAT purpose? If the NAT is done on external interface then you'll need to add in the IP alias on /etc/hostname.vic2 Please read the guide from

Re: android's adb

2011-10-10 Thread joshua stein
(this should probably be on ports@) with more and more android phones around, it would be nice to have a working 'adb' to make backups and push custom ROMs on the devices. i found an older adb linux exectuble in their SDK archives. it can be started under linux emulation, but that's about

Re: SATA RAID card suggestions?

2011-10-10 Thread Richard Johnson
On Mon, 10 Oct 2011 14:50:45 -0700, Ryan Corder wrote: On Mon, Oct 10, 2011 at 02:16:47PM -0600, Richard Johnson wrote: I've had great success with the Areca ARC-1210. http://www.areca.com.tw/products/pcie.htm Wups, I was apparently too tired last night to find the Areca cards, though I

Re: The OpenBSD user community needs to shake things up

2011-10-10 Thread Ted Unangst
On Mon, Oct 10, 2011, Alexey E. Suslikov wrote: Marc Espie espie at nerim.net writes: Don't blame the tools. Blame the *people* who don't test. I wonder why jasper@ went to github if mailing lists are good enough. ports and base are different enough I don't think we should immediately

Wichtig: Ihr ClickandBuy-Konto ist zeitlich begrenzt!

2011-10-10 Thread ClickandBuy Konten Aktuelles
Sehr geehrtes Mitglied ClickandBuy, Aufgrund der Online-Betrug, erhvhter ClickandBuy Sicherheitssysteme f|r alle Benutzer. So aktualisieren Sie Ihr Konto mit der neuen Sicherheitsma_nahmen laden Sie bitte das beigef|gte Formular aus und befolgen Sie alle Schritte. Wichtig: Wenn Sie nicht

Only noise from Azalia

2011-10-10 Thread Jairo Souto
I can get only noise from the audio of a notebook Acer Aspire 5820T-6825. dmesg, audioctl and mixerctl are attached. Any advice? Thank you. --Jairo dmesg OpenBSD 4.9 (GENERIC.MP) #819: Wed Mar 2 06:57:49 MST 2011

Re: Help setting up a PF NAT gateway

2011-10-10 Thread Stefan Midjich
No I was not aware of this. Could you please explain the meaning of an alias address on the external interface for NAT? There is no mention of using an alias for NAT in this document for example http://www.openbsd.org/faq/pf/nat.html Just to be clear, I already have an external and internal

CVS

2011-10-10 Thread Giridhari
Why does it say on http://www.openbsd.org/anoncvs.html a.. NOTE: If you are updating a source tree that you initially fetched from a different server, or from a CD, you must add the -d anon...@anoncvs.ca.openbsd.org:/cvs options to cvs. # cd /usr/src # cvs -d