Re: Load balancing and fail-over

2012-05-18 Thread Indunil Jayasooriya
 Now, the interesting thing is this ( Taken from openbsd website)


 #  keep https traffic on a single connection; some web applications,
 #  especially secure ones, don't allow it to change mid-session
 pass in on $int_if proto tcp from $lan_net to port https \
 route-to ($ext_if1 $ext_gw1)


 When both links are UP and WAN1 is UP https traffic will go via WAN1
 When, WAN1 goes down, https should go via WAN2

   I think If I add another variable to /etc/pf.conf, I will be able to
 achieve it too.


 ONEWAYHTTPS=1.1.1.1@em0


 pass in on $int_if proto tcp from $lan_net to port https \
 route-to { $ONEWAYHTTPS }


 and use this below while WAN1 goes DOWN

 pfctl -D ONEWAYHTTPS=2.2.2.2@em1 -f /etc/pf.conf


 Is it allringt ?


No, It is NOT OK ( I think it messes up )


So, I myself found a method. it would be easier with an anchor.

http://www.openbsd.org/faq/pf/anchors.html

The above URL shows the power of PF with anchors. I just tried it. It
worked. Pls see below . ( I feel really sorry to disturb you.) ,


In /etc/pf.conf


GATEWAYS=1.1.1.1@em0 2.2.2.2@em1

##BEGIN - Loadbalancingwithfailover

pass in on $int_if from $lan_net route-to { $GATEWAYS }

anchor onewayhttps {
   pass in on em2 proto tcp from 192.168.0.0/24 to port https route-to
2.2.2.2@em1
}

##END



and ,


my script is now like this.


#Checking WAN1
ping -q -c 3 -i 2 -w 3 -I 1.1.1.5 173.194.38.191  /dev/null 21
VARWAN1=$(echo $?)

#Checking WAN2
ping -q -c 3 -i 2 -w 3 -I 2.2.2.5 173.194.38.184  /dev/null 21
VARWAN2=$(echo $?)

if [ ${VARWAN1} = 0 ]  [ ${VARWAN2} = 0 ]; then
echo Both links are UP
route add -mpath default 1.1.1.1
route add -mpath default 2.2.2.2
pfctl -D GATEWAYS=1.1.1.1@em0 2.2.2.2@em1 -f /etc/pf.conf

elif [ ${VARWAN1} != 0 ]  [ ${VARWAN2} != 0 ]; then
echo Both links are DOWN 
route add -mpath default 1.1.1.1
route add -mpath default 2.2.2.2
pfctl -D GATEWAYS=1.1.1.1@em0 2.2.2.2@em1 -f /etc/pf.conf

elif [ ${VARWAN1} != 0 ] ; then
echo WAN1 is DOWN
route add -mpath default 2.2.2.2
route delete -mpath default 1.1.1.1
pfctl -D GATEWAYS=2.2.2.2@em1 -f /etc/pf.conf

elif [ ${VARWAN2} != 0 ] ; then
echo WAN2 is DOWN
route add -mpath default 1.1.1.1
route delete -mpath default 2.2.2.2
pfctl -D GATEWAYS=1.1.1.1@em0 -f /etc/pf.conf
echo pass in on em2 proto tcp from 192.168.0.0/24 to port https
route-to 1.1.1.1@em0 | pfctl -a onewayhttps -f -
fi


I think I am NOW all right. Anyway,  I will have to test it in 2 or 3 days
time. Then, I will let you know everything.

Stuart , Thanks a LOT for your compassion towards me. I worked hard. I am
very happy. Any way, I will have to test its behaviour.


Hope to hear from you.








-- 
Thank you
Indunil Jayasooriya



Re: hung at pf_find_state

2012-05-18 Thread Kapetanakis Giannis

I had another hung today:

uvm_fault(0xd0a0fa40, 0xefffa000, 0, 1) - d
kernel: page fault trap, code=0
Stopped at  pf_find_state+0x54: movl0x38(%eax),%edx
ddb{0} ddb{0} ddb{0} ddb{0} ddb{0} 
pf_find_state(d434f800,f554dad8,2,d9ac9

600,d865a822) at pf_find_state+0x54
pf_test_state_udp(f554db54,f554db44,2,2,d434f800) at pf_test_state_udp+0xbc
pf_test(2,2,d455e400,f554dca4,0) at pf_test+0xc28
ip_output(d9ac9600,0,0,1,f554dd20) at ip_output+0x767
mrt_ioctl(d9f67400,0,3b9aca00,2,d09da720) at mrt_ioctl+0x1b6
mrt_ioctl(40,f554de3c,2c,1770,0) at mrt_ioctl+0xa4a
ip_mrouter_set(d9ce3bb8,68,f554def0,68,f554def0) at ip_mrouter_set+0x7c9
sosetopt(d9ce3bb8,0,68,d9ac9100,246) at sosetopt+0x50
sys_setsockopt(d9ea18b8,f554df64,f554df84,d0646194,1) at sys_setsockopt+0xc4
syscall() at syscall+0x12c
--- syscall (number 7) ---
0x2:

Somehow pimd is causing this hung in an unpredictable manner.
http://freecode.com/projects/pimd

Giannis

On 01/05/12 13:15, Kapetanakis Giannis wrote:

Hi,

I had this hung today with snapshot from
OpenBSD 5.1-current (GENERIC.MP) #252: Tue Apr 24 15:58:54 MDT 2012

ddb{1}
pf_find_state(d4248200,f554dad8,2,d9fff400,d88ef822) at 
pf_find_state+0x54


ddb{1} trace
pf_find_state(d4248200,f554dad8,2,d9fff400,d88ef822) at 
pf_find_state+0x54
pf_test_state_udp(f554db54,f554db44,2,2,d4248200) at 
pf_test_state_udp+0xbc

pf_test(2,2,d455e400,f554dca4,0) at pf_test+0xc28
ip_output(d9fff400,0,0,1,f554dd20) at ip_output+0x767
mrt_ioctl(d8b0b500,0,3b9aca00,2,d0a3c060) at mrt_ioctl+0x1b6
mrt_ioctl(40,f554de3c,2c,d0408f7f,40) at mrt_ioctl+0xa4a
ip_mrouter_set(d9cddcc8,68,f554def0,68,f554def0) at ip_mrouter_set+0x7c9
sosetopt(d9cddcc8,0,68,d9fffe00,246) at sosetopt+0x50
sys_setsockopt(d9e8d8b8,f554df64,f554df84,1e,d4125000) at 
sys_setsockopt+0xc4

syscall() at syscall+0x12c
--- syscall (number 7) ---
0x2:

ddb{1} show panic
the kernel did not panic

ddb{1} ps
   PID   PPID   PGRPUID  S   FLAGS  WAIT  COMMAND
 20801   1880  11768  0  7   0wc
 26100   1880  11768  0  7   0grep
 31706   1880  11768  0  7   0pfctl
  1880   8627  11768  0  30x88  pause sh
 23250  28647  12413  0  30x80  nanosleep sleep
 28647  12413  12413  0  30x88  pause sh
  8627  11768  11768  0  30x80  piperdperl
 11768  25474  11768  0  30x88  pause sh
 12413  11644  12413  0  30x88  pause sh
 11644   3090   3090  0  30x80  piperdcron
 25474   3090   3090  0  30x80  piperdcron
 14442   6623   6623507  30x80  kqreadpickup
 24334  1  24334  0  30x80  ttyin getty
 22308  1  22308  0  30x80  ttyin getty
  5437  1   5437  0  30x80  ttyin getty
  1409  1   1409  0  30x80  ttyin getty
 15113  1  15113  0  30x80  ttyin getty
 18035  1  18035  0  30x80  ttyin getty
  3090  1   3090  0  30x80  selectcron
*19926  1  14409  0  7   0pimd
 30611  1  15150  0  30x80  selectsnmpd
 17231   6623   6623507  30x80  kqreadqmgr
  6623  1   6623  0  30x80  kqreadmaster
  4997  1   4997 99  30x80  poll  sndiod
  6608  1   6608  0  30x80  kqreadifstated
   412  1412  0  30x80  selectsshd
  1300  31233   8215 83  30x80  poll  ntpd
 31233   8215   8215 83  30x80  poll  ntpd
  8215  1   8215  0  30x80  poll  ntpd
 22780   5910   5910 70  30x80  selectnamed
  5910  1   5910  0  30x80  netio named
 12425  16091  16091 74  30x80  bpf   pflogd
 16091  1  16091  0  30x80  netio pflogd
  6692  29264  29264 73  20x80syslogd
 29264  1  29264  0  30x80  netio syslogd
17  0  0  0  30x100200  aiodoned  aiodoned
16  0  0  0  30x100200  syncerupdate
15  0  0  0  30x100200  cleaner   cleaner
14  0  0  0  30x100200  reaperreaper
13  0  0  0  30x100200  pgdaemon  pagedaemon
12  0  0  0  30x100200  bored crypto
11  0  0  0  30x100200  pftm  pfpurge
10  0  0  0  30x100200  usbtskusbtask
 9  0  0  0  30x100200  usbatsk   usbatsk
 8  0  0  0  30x100200  acpi0 acpi0
 7  0  0  0  3  0x40100200idle3
 6  0  0  0  3  0x40100200idle2
 5  0  

Re: carp mixed states

2012-05-18 Thread Rafal Bisingier
Hi

On Fri, 18 may 2012 at 02:38 CEST
shadrock shadr...@ntlworld.com wrote:

 still looking for an answer to the following question
  hi all
  have configured two firewalls with carp
  i have connectivity to the internet and the firewalls failover properly.
  when i check the carp states of each firewall the slave reports that its
  wan connection is in the master state the same as the master firewall
  while the slave carp lan connection is in the backup state.
  is this normal or should both carps be in backup for the slave ?
  shadrock
 
 
  master firewall
  /etc/hostname.carp1
  inet 10.5.5.1 255.255.255.0 10.5.5.255 vhid 1 carpdev em1 pass pass1
 
  /etc/hostname.carp2
  inet 192.168.5.1 255.255.255.0 192.168.5.255 vhid 2 carpdev em0 pass pass2
 
  /etc/hostname.em0
  inet 192.168.5.2 255.255.255.0
 
  /etc/hostname.em1
  inet 10.5.5.2 255.255.255.0 NONE
 
  /etc/hostname.bge0
  inet 172.16.0.2 255.255.255.0 NONE
 
  /etc/hostname.pfsync0
  up syncdev bge0
 
 
  ifconfig -a
 
  lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST  mtu 33196
priority: 0
groups: lo
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5
inet 127.0.0.1 netmask 0xff00
  bge0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
lladdr 00:18:8b:60:7b:06
priority: 0
media: Ethernet autoselect (1000baseT
  full-duplex,master,rxpause,txpause)
status: active
inet 172.16.0.2 netmask 0xff00 broadcast 172.16.0.255
inet6 fe80::218:8bff:fe60:7b06%bge0 prefixlen 64 scopeid 0x1
  em0: flags=8b43UP,BROADCAST,RUNNING,PROMISC,ALLMULTI,SIMPLEX,MULTICAST
  mtu 1500
lladdr 00:04:23:df:6b:a4
priority: 0
groups: egress
media: Ethernet autoselect (100baseTX full-duplex,rxpause,txpause)
status: active
inet 192.168.5.2 netmask 0xff00 broadcast 192.168.5.255
inet6 fe80::204:23ff:fedf:6ba4%em0 prefixlen 64 scopeid 0x2
  em1: flags=8b43UP,BROADCAST,RUNNING,PROMISC,ALLMULTI,SIMPLEX,MULTICAST
  mtu 1500
lladdr 00:04:23:df:6b:a5
priority: 0
media: Ethernet autoselect (1000baseT full-duplex,rxpause,txpause)
status: active
inet 10.5.5.2 netmask 0xff00 broadcast 10.5.5.255
inet6 fe80::204:23ff:fedf:6ba5%em1 prefixlen 64 scopeid 0x3
  enc0: flags=41UP,RUNNING
priority: 0
groups: enc
status: active
  pfsync0: flags=41UP,RUNNING  mtu 1500
priority: 0
pfsync: syncdev: bge0 maxupd: 128 defer: off
groups: carp pfsync
  pflog0: flags=141UP,RUNNING,PROMISC  mtu 33196
priority: 0
groups: pflog
  carp1: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
lladdr 00:00:5e:00:01:01
priority: 0
carp: MASTER carpdev em1 vhid 1 advbase 1 advskew 0
groups: carp
status: master
inet6 fe80::200:5eff:fe00:101%carp1 prefixlen 64 scopeid 0x6
inet 10.5.5.1 netmask 0xff00 broadcast 10.5.5.255
  carp2: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
lladdr 00:00:5e:00:01:02
priority: 0
carp: MASTER carpdev em0 vhid 2 advbase 1 advskew 0
groups: carp
status: master
inet6 fe80::200:5eff:fe00:102%carp2 prefixlen 64 scopeid 0x7
inet 192.168.5.1 netmask 0xff00 broadcast 192.168.5.255
 
 
  slave firewall
 
  /etc/hostname.carp1
  inet 10.5.5.1 255.255.255.0 10.5.5.255 vhid 1 carpdev em1 advskew 100
  pass pass1
 
  /etc/hostname.carp2
  inet 192.168.5.1 255.255.255.0 192.168.5.255 vhid 2 carpdev em0 advskew
  100 pass pass2
 
  /etc/hostname.em0
  inet 192.168.5.3 255.255.255.0
 
  /etc/hostname.em1
  inet 10.5.5.3 255.255.255.0 NONE
 
  /etc/hostname.bge0
  inet 172.16.0.3 255.255.255.0 NONE
 
  /etc/hostname.pfsync0
  up syncdev bge0
 
 
  ifconfig -a
 
  lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST  mtu 33196
priority: 0
groups: lo
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5
inet 127.0.0.1 netmask 0xff00
  bge0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
lladdr 00:18:8b:6c:4e:85
priority: 0
media: Ethernet autoselect (1000baseT full-duplex,rxpause,txpause)
status: active
inet 172.16.0.3 netmask 0xff00 broadcast 172.16.0.255
inet6 fe80::218:8bff:fe6c:4e85%bge0 prefixlen 64 scopeid 0x1
  em0: flags=8b43UP,BROADCAST,RUNNING,PROMISC,ALLMULTI,SIMPLEX,MULTICAST
  mtu 1500
lladdr 00:04:23:e3:c7:92
priority: 0
groups: egress
media: Ethernet autoselect (100baseTX full-duplex,rxpause,txpause)
status: active
inet 192.168.5.3 netmask 0xff00 

Re: carp mixed states

2012-05-18 Thread Camiel Dobbelaar
They should both be backup.

Check if you have keep state (no-sync) on your carp pf rule.  If not
add it, and flush the state tables.

Other hints to debug carp setups:
- netstat -s -p carp
- ifconfig -g carp
- sysctl net.inet.carp.log=4  (check /var/log/messages)

--
Cam

On 18-5-2012 3:38, shadrock wrote:
 hi
 still looking for an answer to the following question
 hi all
 have configured two firewalls with carp
 i have connectivity to the internet and the firewalls failover properly.
 when i check the carp states of each firewall the slave reports that its
 wan connection is in the master state the same as the master firewall
 while the slave carp lan connection is in the backup state.
 is this normal or should both carps be in backup for the slave ?
 shadrock


 master firewall
 /etc/hostname.carp1
 inet 10.5.5.1 255.255.255.0 10.5.5.255 vhid 1 carpdev em1 pass pass1

 /etc/hostname.carp2
 inet 192.168.5.1 255.255.255.0 192.168.5.255 vhid 2 carpdev em0 pass
 pass2

 /etc/hostname.em0
 inet 192.168.5.2 255.255.255.0

 /etc/hostname.em1
 inet 10.5.5.2 255.255.255.0 NONE

 /etc/hostname.bge0
 inet 172.16.0.2 255.255.255.0 NONE

 /etc/hostname.pfsync0
 up syncdev bge0


 ifconfig -a

 lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST  mtu 33196
   priority: 0
   groups: lo
   inet6 ::1 prefixlen 128
   inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5
   inet 127.0.0.1 netmask 0xff00
 bge0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
   lladdr 00:18:8b:60:7b:06
   priority: 0
   media: Ethernet autoselect (1000baseT
 full-duplex,master,rxpause,txpause)
   status: active
   inet 172.16.0.2 netmask 0xff00 broadcast 172.16.0.255
   inet6 fe80::218:8bff:fe60:7b06%bge0 prefixlen 64 scopeid 0x1
 em0: flags=8b43UP,BROADCAST,RUNNING,PROMISC,ALLMULTI,SIMPLEX,MULTICAST
 mtu 1500
   lladdr 00:04:23:df:6b:a4
   priority: 0
   groups: egress
   media: Ethernet autoselect (100baseTX
 full-duplex,rxpause,txpause)
   status: active
   inet 192.168.5.2 netmask 0xff00 broadcast 192.168.5.255
   inet6 fe80::204:23ff:fedf:6ba4%em0 prefixlen 64 scopeid 0x2
 em1: flags=8b43UP,BROADCAST,RUNNING,PROMISC,ALLMULTI,SIMPLEX,MULTICAST
 mtu 1500
   lladdr 00:04:23:df:6b:a5
   priority: 0
   media: Ethernet autoselect (1000baseT
 full-duplex,rxpause,txpause)
   status: active
   inet 10.5.5.2 netmask 0xff00 broadcast 10.5.5.255
   inet6 fe80::204:23ff:fedf:6ba5%em1 prefixlen 64 scopeid 0x3
 enc0: flags=41UP,RUNNING
   priority: 0
   groups: enc
   status: active
 pfsync0: flags=41UP,RUNNING  mtu 1500
   priority: 0
   pfsync: syncdev: bge0 maxupd: 128 defer: off
   groups: carp pfsync
 pflog0: flags=141UP,RUNNING,PROMISC  mtu 33196
   priority: 0
   groups: pflog
 carp1: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
   lladdr 00:00:5e:00:01:01
   priority: 0
   carp: MASTER carpdev em1 vhid 1 advbase 1 advskew 0
   groups: carp
   status: master
   inet6 fe80::200:5eff:fe00:101%carp1 prefixlen 64 scopeid 0x6
   inet 10.5.5.1 netmask 0xff00 broadcast 10.5.5.255
 carp2: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
   lladdr 00:00:5e:00:01:02
   priority: 0
   carp: MASTER carpdev em0 vhid 2 advbase 1 advskew 0
   groups: carp
   status: master
   inet6 fe80::200:5eff:fe00:102%carp2 prefixlen 64 scopeid 0x7
   inet 192.168.5.1 netmask 0xff00 broadcast 192.168.5.255


 slave firewall

 /etc/hostname.carp1
 inet 10.5.5.1 255.255.255.0 10.5.5.255 vhid 1 carpdev em1 advskew 100
 pass pass1

 /etc/hostname.carp2
 inet 192.168.5.1 255.255.255.0 192.168.5.255 vhid 2 carpdev em0 advskew
 100 pass pass2

 /etc/hostname.em0
 inet 192.168.5.3 255.255.255.0

 /etc/hostname.em1
 inet 10.5.5.3 255.255.255.0 NONE

 /etc/hostname.bge0
 inet 172.16.0.3 255.255.255.0 NONE

 /etc/hostname.pfsync0
 up syncdev bge0


 ifconfig -a

 lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST  mtu 33196
   priority: 0
   groups: lo
   inet6 ::1 prefixlen 128
   inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5
   inet 127.0.0.1 netmask 0xff00
 bge0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST  mtu 1500
   lladdr 00:18:8b:6c:4e:85
   priority: 0
   media: Ethernet autoselect (1000baseT
 full-duplex,rxpause,txpause)
   status: active
   inet 172.16.0.3 netmask 0xff00 broadcast 172.16.0.255
   inet6 fe80::218:8bff:fe6c:4e85%bge0 prefixlen 64 scopeid 0x1
 em0: flags=8b43UP,BROADCAST,RUNNING,PROMISC,ALLMULTI,SIMPLEX,MULTICAST
 mtu 1500
   lladdr 00:04:23:e3:c7:92
   priority: 0
   groups: egress
   media: Ethernet autoselect (100baseTX
 

Re: Load balancing and fail-over

2012-05-18 Thread Stuart Henderson
On 2012-05-17, Indunil Jayasooriya induni...@gmail.com wrote:
 why you not try the relayd way ?
 look at
 http://gouloum.fr/doc/multilink.html

 the part with relayd





   I found that URL  yesterday, I will have to learn it. I just try to
 do it with a shell script.


This can be useful as long as 

1) you don't need to use NAT to send correctly-addressed traffic out
the various lines

2) you can get away with just checking that the next-hop router pings ok.
if your usual failure mode involves a line failing but the router staying up,
things will still fail

however for a lot of standard cases this isn't going to work well



disable password check using /etc/login.conf file

2012-05-18 Thread Wesley MOUEDINE ASSABY
Hi,

i'm trying to disable password check. I already read man page of login.conf
(5) and passwd (1).
What i have done :

- add a new class insane in /etc/login.conf :

insane:\
:minpasswordlen=1:\
:passwordcheck=/usr/bin/true:\
:passwordtries=1:

- add a new user with this class

The length control is ok, tries is also ok, but the password check is still
here.
Any idea to disable it ?

Cheers,

Wesley.



libreoffice-3.4.5.2-no_java-no_lang compiling error

2012-05-18 Thread Dimitry T
Can i do something about this error?

Error starting rsc2 compiler
gmake[1]: Leaving directory
`/usr/ports/pobj/libreoffice-3.4.5.2-no_java-no_lang/libreoffice-bootstrap-3.
4.5.2/svx'
Running processes: 0
*** Error code 2

Stop in /usr/ports/editors/libreoffice (line 2444 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/editors/libreoffice (line 1671 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/editors/libreoffice (line 2217 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/editors/libreoffice (line 2197 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/editors/libreoffice (line 1692 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/editors/libreoffice (line 2197 of
/usr/ports/infrastructure/mk/bsd.port.mk).



Re: Watchdog timeout reset in 5.1 on intel nic:s

2012-05-18 Thread Per-Olov Sjöholm
On 17 maj 2012, at 12:53, Garry Dolley wrote:

 On Thu, May 17, 2012 at 03:19:07AM -0700, Garry Dolley wrote:
 On Fri, May 11, 2012 at 09:13:30AM -0400, Simon Perreault wrote:
 On 2012-05-11 04:15, Garry Dolley wrote:
 I now have an amd64 test VM set up, where I installed stock 5.0.

 I ran a lot of traffic over em0 without any timeouts.

 That's expected. 5.0 has been running without issue for me for a long
time.

 I also have been trying several -current kernels.

 As of:

   OpenBSD 5.1-current (GENERIC) #205: Wed Mar 28 21:40:45 MDT 2012

 I don't see any em0 timeouts.

 I will continue to try newer ones and report back here...

 Why not just test 5.1? Problems have been reported against 5.1, not
 -current.

 I now have a stock 5.1 test VM set up.

  OpenBSD 5.1 (GENERIC) #181: Sun Feb 12 09:35:53 MST 2012
  dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC

 I don't see any timeouts.  I grabbed the ports tree via curl several
 times and have been slaving away at it over SSH.  I don't notice
 anything wrong.

 So, perhaps this issue does not appear in stock 5.1, but in a newer
 kernel.  I'll try something newer soon...

 I have tried the following newer kernels:

 bsd.20120330
 bsd.20120419
 bsd.20120427
 bsd.20120516

 I still can't reproduce the problem.

 I have disabled mpbios on all these kernels, forgot to mention that.

 I will leave this be for now; will pick it up again if any new
 information should arise.

 --
 Garry Dolley
 ARP Networks, Inc. | http://www.arpnetworks.com | (818) 206-0181
 Data center, VPS, and IP Transit solutions
 Member Los Angeles County REACT, Unit 336 | WQGK336
 Blog http://scie.nti.st



I have a running 4.9 release + patches ( i.e 4.9 stable) working perfect. When
Updated to 5.1 release + patches I have real problems with watchdog timeout
resets on my intel nic:s. Same hardware, but just different OpenBSD version.

I have tried a bunch of kernels from Stuart Henderson (Broken after 4.9.).
I have also recompiled the 5.1 stable kernel with most  versions of the
if_em.c driver. I have compiled and tried the following...
(note that the userland was 5.1 stable with all kernel tests)

bsd-5.1-stable
bsd-5.1-stable_plus_if_em.c-1.249
bsd-5.1-stable_plus_if_em.c-1.250
bsd-5.1-stable_plus_if_em.c-1.251
bsd-5.1-stable_plus_if_em.c-1.252
bsd-5.1-stable_plus_if_em.c-1.253
bsd-5.1-stable_plus_if_em.c-1.254
bsd-5.1-stable_plus_if_em.c-1.263

Watchdog timeout resets on all versions.

NOTE that the Watchdog timeout reset appears in version 1.249 of if_em.c as
well. And that version is default in 4.9 stable which works fantastic. So if I
haven't done anything totally wrong it must be related to something else in
the kernel. So my nic hardware and the kvm bios is the same. And an
if_em.c version that works in 4.9 is tried. 


I can see above that you got rid of the problem by testing the same version as
me.. But you use AMD and I use i386.
Also... I have a firewall with 2 nic:s. Often ONE nic works but the other
gives watchdog timeout resets and wont work.

Any clues?


Tnx

Per-Olov



El curso que nadie se debe perder Ortografía y Redacción para Ejecutivos

2012-05-18 Thread Iveth Machuca S.
Apreciable Ejecutivo:

TIEM de Mixico
Empresa Lmder en Capacitacisn y Actualizacisn de Capital Humano

Debido al gran ixito obtenido, ponemos nuevamente a su disposicisn este
excelente curso denominado:
Ortografma y Redaccisn para Ejecutivos

Ciudad de Mixico, el dma  29 de Mayo de 2012

Inscrmbase 5 dmas antes de la fecha del Curso y obtenga un descuento del 15%
con Inversisn Inmediata
No deje pasar esta oportunidad e Invierta en su Desarrollo Personal y
Profesional

Una parte importante de la imagen y la personalidad es la facilidad o
dificultad con la cual nos expresamos y logramos despertar el interis de
nuestro interlocutor o lector. Este importante seminario le ofrece la
oportunidad de desarrollar habilidades y ticnicas que le permitiran tener una
comunicacisn escrita eficaz para expresarse correctamente con claridad,
fluidez y precisisn, en los diferentes tipos de documentos que se requieran en
su area de trabajo.

Tu participacisn te permitira:

Obtener un aprendizaje significativo de los acentos y las letras.
Valorar la lectura como el medio para mejorar la ortografma y la redaccisn.
Saber csmo desarrollar un estilo de redaccisn.
Tips para actualizar y modernizar los escritos administrativos.
Aprender a realizar escritos concisos y sencillos.
Facilitar la tarea de trasmitir las ideas.
Saber csmo utilizar correctamente los diferentes documentos.
Evitar la repeticisn o la correccisn de errores.
Para mayor informacisn, favor de responder este correo con los siguientes
datos:
 Empresa:
 Nombre:
 Ciudad:
 Telifono:

O si lo prefiere comunmquese a los telifonos:

Del DF al 5611-0969 con 10 lmneas
Interior del Pams Lada sin Costo
01 800 900 TIEM (8436)
Aceptamos todas las TDC y Dibito.
**Promocisn: 3 meses sin Intereses pagando con American Express
**Aplica solo con Inversisn Normal

.Todos los Derechos Reservados )2011 TIEM Talento e Innovacisn Empresarial
de Mixico
Este Mensaje le ha sido enviado como usuario de TIEM de Mixico o bien un
usuario le refiris para recibir este boletmn.
Como usuario de TIEM de Mixico, en este acto autoriza de manera expresa que
TIEM de Mixico le puede contactar vma correo electrsnico u otros medios.
Si usted ha recibido este mensaje por error, haga caso omiso de il y reporte
su cuenta respondiendo este correo con el subject BAJABD
Unsubscribe to this mailing list, reply a blank message with the subject
UNSUBSCRIBE BAJABD
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.



Cambio de Fecha: Jornada 2012 - PARA CAMBIAR BASTA CON UN GESTO... Y ALGO MÁS

2012-05-18 Thread difusion
Escuela Sistimica Argentina
Institucisn dedicada a la formacisn, asistencia e investigacisn
psicolsgica.

Jornada 2012
===

PARA CAMBIAR
=

BASTA CON UN GESTO Y ALGO MAS
===

Coordina: LIC. CLAUDIO DES CHAMPS
=

Psicslogo (UBA). Profesor invitado del IFATC (Institut de Formation et
dApplication des Thirapies de la Communication), Lyon, Francia y
profesor invitado de diversos institutos de Argentina y el exterior.
Miembro del Board de revistas espaqolas y argentinas. Autor y editor de
artmculos y libros en el campo de la terapia familiar. Dirige
Perspectivas Sistimicas On line.
===

Experiencia del cambio en terapia y supervisisn por medio de la
narrativas transformadoras, habitando el cuerpo, modificando entonacisn,
postura, ritmo, deteniendo el relato doloroso y reemplazandolo por el
relato activo jugando con la Hamaca del Tiempo y otras ticnicas de
hipnoterapia ericksoniana.


Aporte de las neurociencias, de las teormas del desapego emocional
creativo, la rehistorizacisn resiliente, del crecimiento postraumatico y
de la narrativa oral autobiografica.


Trabajando con relatos propios y ajenos una estitica del cambio.


Sabado 09 de junio de 09 a 16hs
===

Se entregan certificados de la actividad


Informes e Inscripcisn:   
==

Fray J. S. M. Oro 1843 (C1414DBC) Cap. Fed.
Tel/ Fax: 4774-2875/6112 -  4899-1053
i...@escuelasistemica.com.ar / www.escuelasistemica.com.ar
==