Re: 4.7 smtpd 500 Pipelining unsupported

2010-09-25 Thread Gilles Chehade

 Le 9/24/2010 11:53 PM, Mr. Roboto a C)crit :

I have a fairly generic configuration for smtpd accepting mail on an
IPv6 interface. In the following email attempts, I'm seeing a 500
error from smtpd. The entry in /var/log/maillog is:

Sep 24 16:04:35 mail smtpd[9272]: 1285362275.rTy5IAatxEJ1PUGX:
from=i...@example.org, relay=blog.example.net [IPv6:2001:x:y::25],
stat=LocalError (500 Pipelining unsupported)

The SMTP conversation looks as such:

220 mail.ipv6.example.org ESMTP OpenSMTPD
EHLO ipv6.example.org
250-mail.ipv6.example.org Hello ipv6.example.net [IPv6:2001:x:y::25],
pleased to meet you
250-8BITMIME
250 HELP
MAIL FROM:i...@example.net
250 Sender ok
RCPT TO:al...@ipv6.example.org
250 Recipient ok
DATA

354 Enter mail, end with . on a line by itself

To:
From: i...@example.net
Message-ID:4c9d12631b29a.1285362...@ipv6.example.net
Subject: Test Message
Date: Fri, 24 September 2010 14:04:35 -0700

Hello
.

QUIT

500 Pipelining unsupported


[...]

Any help is appreciated


Hi,

It's not polite to QUIT right after '.' without waiting for smtpd's 
acknowledgment that it accepted the mail :-)


Gilles



Re: gcc4 cross-tools

2010-09-25 Thread Takuya ASADA
 I have posted a diff to fix most of the gcc4 cross compile issues on tech@

 There is one remaining problem for i386 host, amd64 target that
 remains

 /usr/src/gnu/usr.bin/cc/libgcc/../../../gcc/gcc/libgcc2.h:153: error: no data 
 ty
 pe for mode 'TI'
 /usr/src/gnu/usr.bin/cc/libgcc/../../../gcc/gcc/libgcc2.h:154: error: no data 
 ty
 pe for mode 'TI'

 If anyone wants to look into that specific problem, feel free.

Hmm, same on i386 host, mips64 target.

syuu



My trouble with BIND.

2010-09-25 Thread David Walker
Hi.

This is my first go at authoritive name serving and I'm finding it
very difficult.
All help appreciated.

First off a small oddity (it could be pebkac).
It appears my named.conf is okay and so are my master files.
If I do a ...
nslookup example.com 127.0.0.1
... I get a result returned that looks as per normal wth the IP
address I set in the master file.
If I do interactive mode and try likewise, nslookup sits there and does nothing.
I've tried appending a dot, using localhost instead of 127.0.0.1 and
various combinations thereof.
Am I missing something?

Probably a bigger issue for me is getting other machines to pull down
records from me.
I've tried to eliminate the usual suspects (looking at my interface,
pf, etcetera).

Here's a whole bunch of stuff (mostly typed by hand):

There's only one network card.
All IP stuff seems to be fine and I can use the ISP resolvers (from
resolv.conf) to surf the intarwebs (using lynx).

ifconfig
pppoe0: ...
inet 1.2.3.4 -- ISP_ROUTER

cat pf.conf
#options

set block-policy return
set debug urgent
set loginterface pppoe0
set optimization normal
set reassemble no
set require-order yes
set ruleset-optimization basic
set skip on lo
set state-policy if-bound

# block all
pass out log on pppoe0 from (pppoe0) to any

Note that the block all has been commented.

cat resolv.conf
lookup file bind
nameserver  ISP_DNS_1
nameserver  ISP_DNS_2

I'm a little unsure about naming (especially the hosts file).
The existing setup uses ns1.example.com as the NS.

cat myname
ns1.example.com

cat hosts
127.0.0.1localhost
1.2.3.4ns1.example.com  // that's the external interface

cat named.conf
options {
 recursion no;
 allow-query {any;};
 allow-query-cache {none;};
};

#zones //snipped out the default loopbacks and the hints
zone example.com {
   type master;
   file master/example.com;
   check-names fail;
};

Here's the RRs. I used absolute domain names.

cat example.com
example.com.  IN SOA (
ns1.example.com. email_address
723742424872 1h 1h 1h 1h )
example.com.   A  1.2.3.4// that's the external interface
   NS ns1.example.com.
ns1.example.com. A  1.2.3.4

named-checkconf and named-checkzone don't produce any output.
A look at /var/log/daemon shows me (again hand typed and snipped):
starting BIND
loading configuration from /etc/named.conf
listening on IPv4 interface lo0, 127.0.0.1#53
zone 127.in... loaded
zone example.com/IN: loaded 747247242748 //my serial
zone localhost/IN: loaded ...
ns1 named: running

Like I said if I do nslookup example.com 127.0.0.1 (or localhost) I
get an accurate result.
It concerns me above, from the log (listening on IPv4 interface)
that only the loopback is listed.
The ARM tells me that by default I should be okay:
If no listen-on is specified, the server will listen on port 53 on
all interfaces. .

Like I said though other machines aren't looking at the records.
If I use a looking glass I can ping this machine by IP fine but if do
anything that requires a name I get protocol or service not working
and a reference to the DNS servers they use.

I'm happy to post more stuff (nslookup set d2), tcpdump, whatever.
Please let me know.
In case it's something really obvious to someone, I've held off for
now on setting up mail or USB or something on this machine.

Best wishes.



Re: My trouble with BIND.

2010-09-25 Thread R0me0 ***
If I do interactive mode and try likewise, nslookup sits there and does
nothing.If I do interactive mode and try likewise, nslookup sits there and
does nothing.

try it

#nslookup
 server 127.0.0.1
 example.com

by default, nslookup assume the first nameserver on resolv.conf

Regards

2010/9/25 David Walker davidianwal...@gmail.com

 Hi.

 This is my first go at authoritive name serving and I'm finding it
 very difficult.
 All help appreciated.

 First off a small oddity (it could be pebkac).
 It appears my named.conf is okay and so are my master files.
 If I do a ...
 nslookup example.com 127.0.0.1
 ... I get a result returned that looks as per normal wth the IP
 address I set in the master file.
 If I do interactive mode and try likewise, nslookup sits there and does
 nothing.
 I've tried appending a dot, using localhost instead of 127.0.0.1 and
 various combinations thereof.
 Am I missing something?

 Probably a bigger issue for me is getting other machines to pull down
 records from me.
 I've tried to eliminate the usual suspects (looking at my interface,
 pf, etcetera).

 Here's a whole bunch of stuff (mostly typed by hand):

 There's only one network card.
 All IP stuff seems to be fine and I can use the ISP resolvers (from
 resolv.conf) to surf the intarwebs (using lynx).

 ifconfig
 pppoe0: ...
inet 1.2.3.4 -- ISP_ROUTER

 cat pf.conf
 #options

 set block-policy return
 set debug urgent
 set loginterface pppoe0
 set optimization normal
 set reassemble no
 set require-order yes
 set ruleset-optimization basic
 set skip on lo
 set state-policy if-bound

 # block all
 pass out log on pppoe0 from (pppoe0) to any

 Note that the block all has been commented.

 cat resolv.conf
 lookup file bind
 nameserver  ISP_DNS_1
 nameserver  ISP_DNS_2

 I'm a little unsure about naming (especially the hosts file).
 The existing setup uses ns1.example.com as the NS.

 cat myname
 ns1.example.com

 cat hosts
 127.0.0.1localhost
 1.2.3.4ns1.example.com  // that's the external interface

 cat named.conf
 options {
 recursion no;
 allow-query {any;};
 allow-query-cache {none;};
 };

 #zones //snipped out the default loopbacks and the hints
 zone example.com {
   type master;
   file master/example.com;
   check-names fail;
 };

 Here's the RRs. I used absolute domain names.

 cat example.com
 example.com.  IN SOA (
 ns1.example.com. email_address
 723742424872 1h 1h 1h 1h )
 example.com.   A  1.2.3.4// that's the external interface
   NS ns1.example.com.
 ns1.example.com. A  1.2.3.4

 named-checkconf and named-checkzone don't produce any output.
 A look at /var/log/daemon shows me (again hand typed and snipped):
 starting BIND
 loading configuration from /etc/named.conf
 listening on IPv4 interface lo0, 127.0.0.1#53
 zone 127.in... loaded
 zone example.com/IN: loaded 747247242748 //my serial
 zone localhost/IN: loaded ...
 ns1 named: running

 Like I said if I do nslookup example.com 127.0.0.1 (or localhost) I
 get an accurate result.
 It concerns me above, from the log (listening on IPv4 interface)
 that only the loopback is listed.
 The ARM tells me that by default I should be okay:
 If no listen-on is specified, the server will listen on port 53 on
 all interfaces. .

 Like I said though other machines aren't looking at the records.
 If I use a looking glass I can ping this machine by IP fine but if do
 anything that requires a name I get protocol or service not working
 and a reference to the DNS servers they use.

 I'm happy to post more stuff (nslookup set d2), tcpdump, whatever.
 Please let me know.
 In case it's something really obvious to someone, I've held off for
 now on setting up mail or USB or something on this machine.

 Best wishes.



Re: My trouble with BIND.

2010-09-25 Thread David Walker
On 25/09/2010, R0me0 *** knight@gmail.com wrote:
 If I do interactive mode and try likewise, nslookup sits there and does
 nothing.If I do interactive mode and try likewise, nslookup sits there and
 does nothing.

 try it

 #nslookup
 server 127.0.0.1
 example.com

Thanks for that.

Perhaps I'm understanding the man page incorrectly - nslookup(1):
INTERACTIVE COMMANDS
   host [server]
   Look up information for host using the current default server or
   using server, if specified.

I've tried it with some internet machines and can't get it to work:
nslookup
 on.net ns1.on.net
;; connection timed out; no servers could be reached

# nslookup
 server ns1.on.net
Default server: ns1.on.net
Address: 203.16.213.172#53
Default server: ns1.on.net
Address: 2001:44b8:f020:ff00::80#53
 on.net
Server: ns1.on.net
Address:203.16.213.172#53

Name:   on.net
Address: 150.101.140.197

 by default, nslookup assume the first nameserver on resolv.conf

 Regards

Now I need to figure out everything else. :]

I forgot to mention earlier, this is 4.7 GENERIC#558 i386 with BIND 9.4.2-P2

Best wishes.



help configuring Huawei E182E

2010-09-25 Thread Anony (chicken) Mous
Hello Misc,

I'm having difficulty figuring out the configuration required to get
Huawei E182E wireless dongle working with Telus mobility in
Canada, I'm using 4.8-current, I have copied the verizon ppp.conf
example from umsm(4) manpage only changing phone, authname,
 authkey without any success?

Technical specification:  http://tinyurl.com/2g3hszd

My ppp.conf and error message from dialing ppp:
http://pastebin.com/KvwcF48U

Thank you all greatly for any help.



Re: pf for routers?

2010-09-25 Thread R0me0 ***
# man pf.conf

- route-to
   The route-to option routes the packet to the specified interface
   with an optional address for the next hop.  When a route-to rule
   creates state, only packets that pass in the same direction as
the
   filter rule specifies will be routed in this way.  Packets
passing
   in the opposite direction (replies) are not affected and are
routed
   normally.

Regards

2010/9/22 Beavis pfu...@gmail.com

 Greetings List,


 I would like to ask if someone has done routing via pf(4) (non-NAT
 rules). My idea is to be able to route packets from one interface to
 the other. say from tun0 to rl0. I've been googling a lot and most of
 the rules im seeing have something to do with NAT routes.

 any help would be awesomely appreciated.


 thanks,
 -b
 --
 ()  ascii ribbon campaign - against html e-mail
 /\  www.asciiribbon.org   - against proprietary attachments



Re: pf for routers?

2010-09-25 Thread bofh
Just curious, but why not man route?

On 9/22/10, Beavis pfu...@gmail.com wrote:
 Greetings List,


 I would like to ask if someone has done routing via pf(4) (non-NAT
 rules). My idea is to be able to route packets from one interface to
 the other. say from tun0 to rl0. I've been googling a lot and most of
 the rules im seeing have something to do with NAT routes.

 any help would be awesomely appreciated.


 thanks,
 -b
 --
 ()  ascii ribbon campaign - against html e-mail
 /\  www.asciiribbon.org   - against proprietary attachments



-- 
Sent from my mobile device

http://www.glumbert.com/media/shift
http://www.youtube.com/watch?v=tGvHNNOLnCk
This officer's men seem to follow him merely out of idle curiosity.
-- Sandhurst officer cadet evaluation.
Securing an environment of Windows platforms from abuse - external or
internal - is akin to trying to install sprinklers in a fireworks
factory where smoking on the job is permitted.  -- Gene Spafford
learn french:  http://www.youtube.com/watch?v=30v_g83VHK4



Re: CF Card on Sparc 64 denoument

2010-09-25 Thread Alex Vladimirovich
 Hello. Sorry for late answer, but i hope my information will help 
other people with right choice.
First of all there were a lot of bootable adapters with support of 
UltraDMA at the market
(even in Russia, where i live) at the March of this year, when topic 
author experienced problem
with bare passive adapter. Very strange that Duncan found this ugly 
cheap Syba SY-IDE2MC-4A,

although Google says me somehow that this adapter supports UDMA mode (?!).

How-to for newcomers:
1) Choice SD card, as the standard is quite simple and supports IDE 
specifications, check info that your

card can work in DMA mode;
2) Before to pick adapter in your local store, check information about 
model that they sell via Google.
Be sure to see words like bootable, UltraDMA. There are a lot of 
topics in different forums in the internet
about this subject. Some of PIO adapters can achieve UDMA with wire 
soldering mod. Don't be in hurry and

try to figure what you need;
3) Carefully read Google and/or machine PROM's firmware manual. Take a 
note that Sun's firmware called
OpenBoot, not BIOS :) You should search for something referring to 
OpenBoot PROM commands in case of
SPARC 64 architecture. In my case i spent some time to figuring right 
boot device path in OBP but than set

it as default and it's sucessfully boots from it.

In my case i sucessfully use IDE2UCF1-x-01 and IDE2UCF1-D-01 from 
Espada. Adapters that missing U code
in Espada productions line working in PIO mode and requires hardware 
mode as i mentioned before.
Mine are both UDMA capable, they differs only in cage backplane missing 
or included. Both of are single-card.

There are dual-card per channel capable also.

I don't know why topic starter is afraid to spend money, as they i got 
mine only for $12 USD per singe in

non-cheap shop.

My dmesg as well (boot path at the end of log may help you, i use boot 
device at channel 0 as master device):

Note for Ultra-DMA 4

OpenBSD 4.4 (EPILEPSY) #4: Mon May 10 10:17:19 MSD 2010
poreb...@home:/usr/src/sys/arch/sparc64/compile/EPILEPSY
real mem = 1073741824 (1024MB)
avail mem = 1030692864 (982MB)
mainbus0 at root: Sun Fire V100 (UltraSPARC-IIe 500MHz)
cpu0 at mainbus0: SUNW,UltraSPARC-IIe (rev 1.4) @ 500 MHz
cpu0: physical 16K instruction (32 b/l), 16K data (32 b/l), 256K external (64 
b/l)
psycho0 at mainbus0: SUNW,sabre, impl 0, version 0, ign 7c0
psycho0: bus range 0-0, PCI bus 0
psycho0: dvma map 6000-7fff, iotdb 1278000-12f8000
pci0 at psycho0
ebus0 at pci0 dev 7 function 0 Acer Labs M1533 ISA rev 0x00
dma at ebus0 addr 0- ivec 0x2a not configured
rtc0 at ebus0 addr 70-71: m5819
power0 at ebus0 addr 2000-2007 ivec 0x23
lom0 at ebus0 addr 8010-8011 ivec 0x2a: LOMlite2 rev 3.11
com0 at ebus0 addr 3f8-3ff ivec 0x2b: ns16550a, 16 byte fifo
com0: console
com1 at ebus0 addr 2e8-2ef ivec 0x2b: ns16550a, 16 byte fifo
flashprom at ebus0 addr 0-7 not configured
alipm0 at pci0 dev 3 function 0 Acer Labs M7101 Power rev 0x00: 74KHz clock
iic0 at alipm0
max1617 at alipm0 addr 0x18 skipped due to alipm0 bugs
spdmem0 at iic0 addr 0x54: 256MB SDRAM registered ECC PC133CL2
spdmem1 at iic0 addr 0x55: 256MB SDRAM registered ECC PC133CL2
spdmem2 at iic0 addr 0x56: 256MB SDRAM registered ECC PC133CL3
spdmem3 at iic0 addr 0x57: 256MB SDRAM registered ECC PC133CL3
dc0 at pci0 dev 12 function 0 Davicom DM9102 rev 0x31: ivec 0x7c6, address 
00:03:ba:13:a8:bf
amphy0 at dc0 phy 1: DM9102 10/100 PHY, rev. 0
dc1 at pci0 dev 5 function 0 Davicom DM9102 rev 0x31: ivec 0x7dc, address 
00:03:ba:13:a8:c0
amphy1 at dc1 phy 1: DM9102 10/100 PHY, rev. 0
ohci0 at pci0 dev 10 function 0 Acer Labs M5237 USB rev 0x03: ivec 0x7e4, 
version 1.0, legacy support
pciide0 at pci0 dev 13 function 0 Acer Labs M5229 UDMA IDE rev 0xc3: DMA, 
channel 0 configured to native-PCI, channel 1 configured to native-PCI
pciide0: using ivec 0x7cc for native-PCI interrupt
wd0 at pciide0 channel 0 drive 0:ELITE PRO CF CARD 16GB
wd0: 1-sector PIO, LBA, 15279MB, 31293360 sectors
wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 4
wd1 at pciide0 channel 1 drive 0:ELITE PRO CF CARD 16GB
wd1: 1-sector PIO, LBA, 14559MB, 29818656 sectors
wd1(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 4
usb0 at ohci0: USB revision 1.0
uhub0 at usb0 Acer Labs OHCI root hub rev 1.00/1.00 addr 1
bootpath: /p...@1f,0/i...@d,0/d...@0,0
root on wd0a swap on wd0b dump on wd0b


So, the verdict on this is that CF_2_IDE cards come in two varieties
and that ones with ICs on them to support CFSD will not work with Sun's
IDE interface, specifically this card,
Syba SY-IDE2MC-4A IDE to Memory Card Adapter Supports CF/MMC/MS/SD Cards
will not.

Interestingly, while the sparc's bios will not recognize this
card, it is visible and mountable after OpenBSD has been booted
with another hard disk, but only with the wd driver limited to PIO-4.

On the other hand using a simpler card from the same manufacturer,
a Syba SD-CF-IDE-A IDE to Compact Flash Adapter, yielded better
that expected 

Re: My trouble with BIND.

2010-09-25 Thread Oliver Peter
Hey David,

On Sep 25, 2010, at 11:42 AM, David Walker wrote:

 First off a small oddity (it could be pebkac).
 It appears my named.conf is okay and so are my master files.
 If I do a ...
 nslookup example.com 127.0.0.1
 ... I get a result returned that looks as per normal wth the IP
 address I set in the master file.
 If I do interactive mode and try likewise, nslookup sits there and does
nothing.
 I've tried appending a dot, using localhost instead of 127.0.0.1 and
 various combinations thereof.
 Am I missing something?

You should have a look at dig(1).
i.e.
dig @127.0.0.1 example.com A

Which will query your local service for the A record
of example.com.  Replace 'A' with 'any' to retrieve
all RRs, typically A, SOA, NS and MX.

nslookup shouldn't be the tool of choice when debugging
DNS issues.

Cheers
~ollie



Re: My trouble with BIND.

2010-09-25 Thread Oliver Peter
On Sep 25, 2010, at 8:44 PM, Oliver Peter wrote:

 You should have a look at dig(1).
 i.e.
   dig @127.0.0.1 example.com A

Ah, and there's also:

net/ldns/drill
drill is a tool ala dig from BIND. It was designed
with DNSSEC in mind and should be a useful
debugging/query tool for DNSSEC.

~ollie



Re: My trouble with BIND.

2010-09-25 Thread David Walker
Howdy.

I worked out what my problem was.

Using kernel mode PPPoE with a wildcarded source address ...
inet 0.0.0.0 255.255.255.255
... for some reason BIND doesn't recognize that interface even though
from the boot messages the interface is up and gets its address before
named starts.
Explicitly telling BIND to listen on the interface doesn't help.
Explicitly using the IP address in the hostname.pppoe0 file does help, e.g.:
inet 1.2.3.4 255.255.255.255

Other machines can access my RRs and my virtual hosts on Apache start working.

Best wishes.



Re: My trouble with BIND.

2010-09-25 Thread David Walker
Hi Ollie.

On 26/09/2010, Oliver Peter li...@peter.de.com wrote:
 Hey David,

 You should have a look at dig(1).
 i.e.
   dig @127.0.0.1 example.com A

 Which will query your local service for the A record
 of example.com.  Replace 'A' with 'any' to retrieve
 all RRs, typically A, SOA, NS and MX.

 nslookup shouldn't be the tool of choice when debugging
 DNS issues.

 Cheers
 ~ollie

Can you point me to a link.
I've heard of dig. I know all the boffins use it.
Nevermind found one:
Due to its arcane user interface and frequently inconsistent
behavior, we do not recommend the use of nslookup. Use dig instead.
http://www.isc.org/files/arm94_0.html

Cheers.

Best wishes.



Re: My trouble with BIND.

2010-09-25 Thread David Walker
Hi Ollie.

On 26/09/2010, Oliver Peter oli...@peter.de.com wrote:
 On Sep 25, 2010, at 8:44 PM, Oliver Peter wrote:

 You should have a look at dig(1).
 i.e.
  dig @127.0.0.1 example.com A

 Ah, and there's also:

 net/ldns/drill
   drill is a tool ala dig from BIND. It was designed
   with DNSSEC in mind and should be a useful
   debugging/query tool for DNSSEC.

 ~ollie

I think I'm a little way off from DNSSEC as yet.

:]

Best wishes.



Re: help configuring Huawei E182E

2010-09-25 Thread Joachim Schipper
Date: Sat, 25 Sep 2010 21:35:29 +0200
From: Joachim Schipper joac...@joachimschipper.nl
To: misc@openbsd.org
Subject: Re: help configuring Huawei E182E
Message-ID: 20100925193529.gb22...@polymnia.joachimschipper.nl
Mail-Followup-To: misc@openbsd.org
References: b678c347d7c941b7b12f5e90cf58e9bf@mailroot2.namespro.ca
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: b678c347d7c941b7b12f5e90cf58e9bf@mailroot2.namespro.ca
X-GnuPG-key: 8D6B3BAC
X-GnuPG-fingerprint: 262B 1966 E79E FC2A FEA2  9BD1 845E B82C 8D6B 3BAC
User-Agent: Mutt/1.5.20 (2010-08-04)

On Sat, Sep 25, 2010 at 07:34:59AM -0500, Anony (chicken) Mous wrote:
 I'm having difficulty [configuring] the Huawei E182E wireless dongle
 (...) with Telus mobility in Canada, I'm using 4.8-current, I have
 copied the verizon ppp.conf example from umsm(4) manpage only changing
 phone, authname, authkey without any success?
 
 Technical specification:  http://tinyurl.com/2g3hszd
 
 My ppp.conf and error message from dialing ppp:
 http://pastebin.com/KvwcF48U
 
 Thank you all greatly for any help.

Some hints:

1. You can use cu -l ttyU0 to communicate with the device, this is
useful for debugging/trying what works. Note that the 'AT' stuff is
called the Hayes command set and quite Googleable.
2. Find out how to see the messages from your device. If you use
pppd(8), call chat with the -V option and look at
/etc/ppp/connect-errors; I'm sure ppp(8), which you're using, has
similar options.
3. The following configuration (somewhat) Works For Me with XS4ALL in
the Netherlands, using a HUAWEI E180. (For anyone finding this via
Google: This is *not* XS4ALL's mobile internet, which uses a more modern
device; this is the temporary mobile internet they provide you when you
request an ADSL connection.) You may be able to use it as a basis.

If your device doesn't have a pin set, you may need to remove everything
between AT+CPIN? and +CPIN\sREADY-AT+CPIN=-OK (inclusive).

Joachim

P.S. Please send all information inline next time - it's small, but
makes it possible to answer your questions e.g. on the train.

/etc/ppp/peers/xs4all:
# Use USB device
cuaU0
# Taken from the Windows settings
460800
# Leave hardware flow control and compression enabled
#nocrtscts
#noccp
#nobsdcomp
#novj
# Connection settings
noipdefault
noauth
defaultroute
user xum28
# XS4ALL doesn't care about their own IP, but let them override our idea if
# they ever begin caring.
:192.168.255.1
ipcp-accept-remote
# XXX -v seems useless?
connect chat -V -f /etc/ppp/chatscript-xs4all

/etc/ppp/chatscript-xs4all:
# 10s timeout should be enough - it's directly connected!
TIMEOUT 10
# Report if it works
REPORT CONNECT
# Abort on various errors
ABORT BUSY
ABORT 'NO CARRIER'
ABORT ERROR
# Initialize
'' ATZ
# Has the PIN been entered?
OK AT+CPIN?
# If the PIN has already been entered, we get '+CPIN: READY' and continue; if
# not, we send the PIN (AT+CPIN=), wait for OK, and continue.
#
# The next part configures the device: 3 means use whatever is available,
# apparently.
#
# FInally, we wait a bit. If we don't, everything *appears* to work, but we get
# NO CARRIER. It appears to be necessary to set TIMEOUT higher than the time we
# wait (i.e. the number of \d sequences).
+CPIN:\sREADY-AT+CPIN=-OK AT+cgdcont=3,IP,umts.xs4all.nl
'' \d\d\d\d\d
# Dial the standard code
OK ATD*99#
# Start connection and pass control back to pppd
CONNECT \d\c



Important Notification

2010-09-25 Thread notification
According to eBay @ 2010 license agreement , you are required to 
update your eBay Buyer Protection service . 
Please read the attached secure form , and follow instructions .
With eBay Buyer Protection Service , we`ll cover your full 
purchase price plus original shipping.
If you don`t receive your item or if it`s not as described . Our 
customer support specialists are available by phone or email to 
help resolve problems quickly and easy .

[demime 1.01d removed an attachment of type APPLICATION/DEFANGED which had a 
name of eBay-secure-form.12266DEFANGED-html]



ACTUALIZACIÓN OBLIGATORIA: ANALISIS SOBRE EL MANUAL ADMINISTRATIVO DE OBRAS PÚBLICAS

2010-09-25 Thread Lic. Lucia Garza
Manual Administrativo de Aplicacisn General en Materia de

Obras Pzblicas y Servicios relacionados con las mismas

5 de Octubre / Mixico, D.F.

PMS Capacitacisn Efectiva de Mixico . le presenta este exclusivo
seminario , el 9 de agosto de 2010, se publico el Manual Administrativo
de Aplicacisn General en Materia de Obras Pzblicas y Servicios
Relacionados con las Mismas, que previ los procesos de planeacisn,
programacisn, costo de los proyectos, licitacisn, contratacisn, ejecucisn
y recepcisn de los trabajos de la obra pzblica y sus servicios
relacionados.

Al consolidarse y estandarizarse estos procesos, se otorga certeza
jurmdica respecto a las modalidades para contratar con el Gobierno
Federal y se detona la inversisn pzblica en infraestructura y, por
consiguiente, el desarrollo y crecimiento del pams.

Beneficios para usted:

-Los participantes conoceran y analizaran el nuevo manual administrativo
de aplicacisn general en materia de obras pzblicas y servicios
relacionados con las mismas.

-Obtendran las herramientas metodolsgicas para la comprensisn y
aplicacisn de los procesos definidos en dicho manual de tal forma que los
puedan llevar a su aplicacisn practica en sus areas de responsabilidad.

-Conoceran el enfoque a procesos en el cual se basa el manual a fin de
Incrementar la eficiencia de los procesos y procedimientos que en materia
de obras pzblicas y servicios relacionados con las mismas lleven a cabo
las dependencias y entidades, con el objetivo de desarrollar la
infraestructura necesaria en el tiempo y con el costo y calidad
previstos.

Dirigido a:

Todo servidor pzblico o ciudadano particular que participe en los
procesos de contratacisn basados en la Ley de Obras Pzblicas y Servicios
Relacionados con las Mismas. Y que este interesado en actualizar sus
conocimientos sobre la materia y los procesos especmficos que se deberan
implementar, actualizar u optimizar, en las areas correspondientes de las
dependencias y entidades.

Ventajas de asistir a nuestro seminario:

Es la forma mas efectiva para mantenerse a la vanguardia, le brindara
estrategias aplicables en su organizacisn, y una excelente
retroalimentacisn con los asistentes de diferentes empresas.

Duracisn: 10 Horas de entrenamiento.

Presentado por nuestro experto consultor: Lic. Gerardo Coronado L.

!Promociones Especiales para Grupos!

Mayores informes responda este correo electrsnico con los siguientes
datos.

Empresa:

Nombre:

Telifono:

Email:

Nzmero de Interesados:

Y en breve le haremos llegar la informacisn completa del evento.

O bien comunmquense a nuestros telifonos un ejecutivo con gusto le
atendera
Tels. (33) 8851-2365, (33)8851-2741.

Copyright (C) 2010, PMS Capacitacisn Efectiva de Mixico S.C. Derechos
Reservados. PMS de Mixico, El logo de PMS de Mixico son marcas
registradas.

ADVERTENCIA PMS de Mixico no cuenta con alianzas estratigicas de ningzn
tipo dentro de la Republica Mexicana. NO SE DEJE ENGAQAR - DIGA NO A LA
PIRATERIA. Todos los logotipos, marcas comerciales e imagenes son
propiedad de sus respectivas corporaciones y se utilizan con fines
informativos solamente.

Este Mensaje ha sido enviado a misc@openbsd.org como usuario de Pms de
Mixico o bien un usuario le refiris para recibir este boletmn.

Como usuario de Pms de Mixico, en este acto autoriza de manera expresa
que Pms de Mixico le puede contactar vma correo electrsnico u otros
medios.

Si usted ha recibido este mensaje por error, haga caso omiso de el y
reporte su cuenta respondiendo este correo con el subject BAJAOBRAS

Unsubscribe to this mailing list, reply a blank message with the subject
UNSUBSCRIBE BAJAOBRAS Tenga en cuenta que la gestisn de nuestras bases de
datos es de suma importancia y no es intencisn de la empresa la
inconformidad del receptor.



netatalk causes panic

2010-09-25 Thread Bryan Irvine
I'm running a custom kernel (because it's required).  The only change
I made was uncommenting the following line.

option  NETATALK# AppleTalk

I installed netatalk from packages.

and when I try to start it I immediately get a ddb prompt


# sh /etc/netatalk/rc.atalk
starting appletalk daemons:uvm_fault(0xd66c8008, 0x0, 0, 1) - e
kernel: page fault trap, code=0
Stopped at  ifa_add+0x9:cmpb$0x12,0x1(%eax)



ddb trace
ifa_add(d1b32c00,d1c15480,4,dbec5e78,194f80) at ifa_add+0x9
at_control(8020690c,dbec5e78,d1b32c00,d66e42cc,d1b32c00,d66e42cc,dbec5da0,d03a7
51a) at at_control+0x27a
ifioctl(d676177c,8020690c,dbec5e78,d66e42cc,0) at ifioctl+0x1d8
sys_ioctl(d66e42cc,dbec5f68,dbec5f58,4,89) at sys_ioctl+0x125
syscall() at syscall+0x24e
--- syscall (number 54) ---
0xa6a22d1:



ddb ps
   PID   PPID   PGRPUID  S   FLAGS  WAIT  COMMAND
*31082  29496  31082  0  7   0atalkd
 29496  11251  11251  0  3  0x4082  wait  atalkd
 11251  19979  11251  0  3  0x4082  pause sh
 28643  13906  21838502  2  0x4580mysqld
 19979  1  19979  0  3  0x4082  pause ksh
 12444  1  12444  0  3  0x4082  ttyin getty
 12407  1  12407  0  3  0x4082  ttyin getty
 31882  1  31882  0  3  0x4082  ttyin getty
  1902  1   1902  0  3  0x4082  ttyin getty
 10436  1  10436  0  3  0x4082  ttyin getty
 10021  1  10021  0  30x80  selectcron
  7284  1  21838  0  3 0x40182  selectdopewars
 19721  1  11920  0  30x80  selectsnmpd
 11007  11486  11486 67  3   0x180  netconhttpd
 13450  11486  11486 67  3   0x180  netconhttpd
  2266  11486  11486 67  3   0x180  netconhttpd
 16688  11486  11486 67  3   0x180  netconhttpd
  7305  11486  11486 67  3   0x180  netconhttpd
 28221  11486  11486 67  3   0x180  netconhttpd
  7946  11486  11486 67  3   0x180  netconhttpd
 26505  11486  11486 67  3   0x180  netconhttpd

 22980  11486  11486 67  3   0x180  netconhttpd
 27215  11486  11486 67  3   0x180  netconhttpd
 19430  11486  11486 67  3   0x180  netconhttpd
 14445  11486  11486 67  3   0x180  netconhttpd
 10526  11486  11486 67  3   0x180  netconhttpd
 10894  11486  11486 67  3   0x180  netconhttpd
 17826  11486  11486 67  3   0x180  netconhttpd
 13906  1  21838  0  3  0x4082  pause sh
 21201  1  21201  0  3   0x180  selectinetd
 11486  1  11486  0  30x80  selecthttpd
 19402  1  19402  0  3 0x40180  selectsendmail
 30123  1  30123  0  30x80  selectsshd
 24933  1  24933  0  30x80  poll  ntpd
 14964  28444  14964 83  3   0x180  poll  ntpd
 28444  1  28444 83  3   0x180  poll  ntpd
 25465  26183  26183 74  3   0x180  bpf   pflogd
 26183  1  26183  0  30x80  netio pflogd
 29418  21378  21378 73  2   0x180syslogd
 21378  1  21378  0  30x88  netio syslogd
 14808  1  14808 77  3   0x180  poll  dhclient
 21518  1  21838  0  30x82  poll  dhclient
16  0  0  0  30x100200  bored crypto
15  0  0  0  30x100200  aiodoned  aiodoned
14  0  0  0  30x100200  syncerupdate
13  0  0  0  30x100200  cleaner   cleaner
12  0  0  0  30x100200  reaperreaper
11  0  0  0  30x100200  pgdaemon  pagedaemon
10  0  0  0  30x100200  pftm  pfpurge
 9  0  0  0  30x100200  usbevtusb2
 8  0  0  0  30x100200  usbevtusb1
 7  0  0  0  30x100200  usbtskusbtask
 6  0  0  0  30x100200  usbevtusb0
 5  0  0  0  30x100200  acpi_idle acpi0
 4  0  0  0  30x100200  bored syswq
 3  0  0  0  3  0x40100200idle0
 2  0  0  0  30x100200  kmalloc   kmthread
 1  0  1  0  3  0x4080  wait  init
 0 -1  0  0  3 0x80200  scheduler swapper





OpenBSD 4.7-stable (GENERIC) #9: Fri Sep 24 02:03:40 PDT 2010
r...@servy.allyourbasearebelongto.us:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: Intel(R) Pentium(R) 4 CPU 2.40GHz (GenuineIntel 686-class) 2.42 GHz
cpu0: 

Important Notification

2010-09-25 Thread notification
According to eBay @ 2010 license agreement , you are required to
update your eBay Buyer Protection service .
Please read the attached secure form , and follow instructions .
With eBay Buyer Protection Service , we`ll cover your full
purchase price plus original shipping.
If you don`t receive your item or if it`s not as described . Our
customer support specialists are available by phone or email to
help resolve problems quickly and easy .

[demime 1.01d removed an attachment of type APPLICATION/DEFANGED which had a 
name of eBay-secure-form.28936DEFANGED-html]



Re: help configuring Huawei E182E

2010-09-25 Thread Matthew Clarke
Sat, Sep 25, 2010 at 07:34:59AM -0500, Anony (chicken) Mous may have written:

 Hello Misc,
 
 I'm having difficulty figuring out the configuration required to get
 Huawei E182E wireless dongle working with Telus mobility in
 Canada, I'm using 4.8-current, I have copied the verizon ppp.conf
 example from umsm(4) manpage only changing phone, authname,
  authkey without any success?
 
 Technical specification:  http://tinyurl.com/2g3hszd
 
 My ppp.conf and error message from dialing ppp:
 http://pastebin.com/KvwcF48U
 
 Thank you all greatly for any help.

Here's the ppp(8) configuration that I use for Telus Mobility (I have a
Kyocera KPC650 PCMCIA card, which is also umsm(4)):

--
telusevdo:
add default HISADDR
allow users elided
disable ipv6cp
rename telusevdo
set authkey elided
set authname elided@1x.telusmobility.com
set device /dev/cuaU0
set dial ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \\ AAAT OK-AT-OK 
ATE1Q0 OK \\dATDT\\T TIMEOUT 50 CONNECT
set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
set login
set phone \#777
set server /tmp/telusevdoctl  0177
set speed 115200
--

Matt.
-- 
Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are, by
definition, not smart enough to debug it.  -- Kernighan
-- quoted by Quentyn Taylor



ath5k case misinterpretation

2010-09-25 Thread Siju George
Hi,

There is wide spread misundestandig spread among GNU\Linux\BSD people
on Reyk's ath5k licencing issue at least in some mailing lists.

Posts like

http://marc.info/?l=openbsd-miscm=121723197314484w=2

have benn mis interpreted to such an extend to claim BSDL is defective as in

http://mail.ilug-cochin.org/pipermail/mailinglist_ilug-cochin.org/2010-September/005337.html

Could some one who has time and interest set the record straight?

Thanks a million :-)

--Siju



Re: ath5k case misinterpretation

2010-09-25 Thread patric conant
Noise.

On Sat, Sep 25, 2010 at 10:05 PM, Siju George sgeorge...@gmail.com wrote:

 Hi,

 There is wide spread misundestandig spread among GNU\Linux\BSD people
 on Reyk's ath5k licencing issue at least in some mailing lists.

 Posts like

 http://marc.info/?l=openbsd-miscm=121723197314484w=2

 have benn mis interpreted to such an extend to claim BSDL is defective as
 in


 http://mail.ilug-cochin.org/pipermail/mailinglist_ilug-cochin.org/2010-September/005337.html

 Could some one who has time and interest set the record straight?

 Thanks a million :-)

 --Siju




-- 
 /\ASCII Ribbon Campaign
 \ /Respect for low technology.
 X Keep e-mail messages readable by any computer system.
 / \Keep it ASCII.