Search results

  1. B

    Vrrp + ospf

    Thanks a lot. I thought so, but hope springs eternal :-)
  2. B

    Vrrp + ospf

    How can I announce VRRP interface into OSPF? I use keepalived and Quagga. Node 1 eth0:192.168.130.2 eth1:172.16.6.2 Node 2 eth0:192.168.130.3 eth1:172.16.6.3 VRRP eth0: virtual_address 192.168.130.1 eth1: vritual_address 172.16.6.1 VRRP works fine. But in OSPF I see only physical...
  3. B

    CARP interface is unreachable.

    I want to make fault-tolerant gateway and trying to test CARP interface. cat /usr/src/sys/i386/conf/MYKERN |grep carp device carp uname -a FreeBSD ClusterN2 9.0-RELEASE FreeBSD 9.0-RELEASE #1: Fri Jul 13 17:08:32 MSK 2012 root@ClusterN1:/usr/obj/usr/src/sys/MYKERN i386 cat...
  4. B

    Generate kernel panic with crash dump creating

    Thanks for the answer. I'am newbie in compiling so I can't detect that your last post has a Makefile in it. I compiled your module and it works great.
  5. B

    Generate kernel panic with crash dump creating

    Thanks for answer. I tried to compile your module but it doesn't compile with the following errors. In file included from panic.c:5: /usr/include/sys/kernel.h:373: error: expected specifier-qualifier-list before 'TAILQ_ENTRY' In file included from panic.c:7: /usr/include/sys/systm.h:240...
  6. B

    Generate kernel panic with crash dump creating

    I've tried with panic("iam in panic"); It doesn't compile either.
  7. B

    Generate kernel panic with crash dump creating

    There is no crash dump in this case.
  8. B

    Generate kernel panic with crash dump creating

    I try to get a little more experience in kernel debugging. How can I cause a kernel crash? I put dumpdev="AUTO" and dumpdir=/var/crash into my rc.conf and set debug.kdb.panic to 1. There is no kernel dump in /var/crash. Then I try to use the panic() function: #include <sys/types.h> #include...
Back
Top