<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cristian Bradiceanu &#187; FreeBSD</title>
	<atom:link href="http://blog.bradiceanu.net/category/freebsd/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bradiceanu.net</link>
	<description>just another blog</description>
	<lastBuildDate>Tue, 08 Jun 2010 18:36:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FreeBSD: PPPoE client setup</title>
		<link>http://blog.bradiceanu.net/2010/01/18/freebsd-pppoe-client/</link>
		<comments>http://blog.bradiceanu.net/2010/01/18/freebsd-pppoe-client/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 01:28:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[dsl]]></category>
		<category><![CDATA[pppoe]]></category>

		<guid isPermaLink="false">http://blog.bradiceanu.net/?p=208</guid>
		<description><![CDATA[Append the provider configuration to /etc/ppp/ppp.conf:

provider:
set device PPPoE:&#60;interface&#62;
set authname &#60;PPPoE username&#62;
set authkey &#60;PPPoE password&#62;
set dial
set login
add default HISADDR
enable lqr echo
enable dns
nat enable yes
set redial 2

Replace &#60;interface&#62; with your network interface towards the PPPoE server. Start the PPPoE client, as root: /etc/rc.d/ppp start
Enable PPPoE client at startup, append to /etc/rc.conf:

ifconfig_&#60;interface&#62;="up"
ppp_enable="YES"
ppp_profile="provider"
ppp_mode="ddial"

Start the PPPoE client with /etc/rc.d/ppp start [...]]]></description>
			<content:encoded><![CDATA[<p>Append the provider configuration to /etc/ppp/ppp.conf:<br />
<code><br />
provider:<br />
set device PPPoE:&lt;interface&gt;<br />
set authname &lt;PPPoE username&gt;<br />
set authkey &lt;PPPoE password&gt;<br />
set dial<br />
set login<br />
add default HISADDR<br />
enable lqr echo<br />
enable dns<br />
nat enable yes<br />
set redial 2<br />
</code></p>
<p>Replace &lt;interface&gt; with your network interface towards the PPPoE server. Start the PPPoE client, as root: <code>/etc/rc.d/ppp start</code></p>
<p>Enable PPPoE client at startup, append to /etc/rc.conf:<br />
<code><br />
ifconfig_&lt;interface&gt;="up"<br />
ppp_enable="YES"<br />
ppp_profile="provider"<br />
ppp_mode="ddial"<br />
</code></p>
<p>Start the PPPoE client with <code>/etc/rc.d/ppp start</code> as root. The PPPoE interface is usually tun0.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2010/01/18/freebsd-pppoe-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Open)Solaris, Linux and FreeBSD tunnelbroker.net IPv6 setup</title>
		<link>http://blog.bradiceanu.net/2009/12/01/opensolaris-and-linux-tunnelbroker-net-ipv6-setup/</link>
		<comments>http://blog.bradiceanu.net/2009/12/01/opensolaris-and-linux-tunnelbroker-net-ipv6-setup/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 18:36:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[ipv6-in-ipv4]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[tunnel]]></category>

		<guid isPermaLink="false">http://blog.bradiceanu.net/?p=192</guid>
		<description><![CDATA[After you create a Regular Tunnel at Hurricane Electric&#8217;s tunnelbroker.net you will receive the following informations:
Server IPv4 Address
Server IPv6 Address
Client IPv4 Address
Client IPv6 Address
Routed /64
Solaris and OpenSolaris IPv6 tunnel setup
Create /etc/hostname6.ip.tun0 file:
tsrc Client_IPv4_Address tdst Server_IPv4_Address up
addif Client_IPv6_Address Server_IPv6_Address up
Add the permanent IPv6 default gateway:
route -p add -inet6 default Server_IPv6_Address
(Tested on Solaris 10 5/09 and 10/09, [...]]]></description>
			<content:encoded><![CDATA[<p>After you create a Regular Tunnel at <a href="http://www.he.net/">Hurricane Electric</a>&#8217;s <a href="http://tunnelbroker.net/">tunnelbroker.net</a> you will receive the following informations:</p>
<p>Server IPv4 Address<br />
Server IPv6 Address<br />
Client IPv4 Address<br />
Client IPv6 Address<br />
Routed /64</p>
<p><strong>Solaris and OpenSolaris IPv6 tunnel setup</strong></p>
<p>Create <code>/etc/hostname6.ip.tun0</code> file:<br />
<code>tsrc Client_IPv4_Address tdst Server_IPv4_Address up<br />
addif Client_IPv6_Address Server_IPv6_Address up</code></p>
<p>Add the permanent IPv6 default gateway:<br />
<code>route -p add -inet6 default Server_IPv6_Address</code></p>
<p>(Tested on <a href="http://www.sun.com/software/solaris/10/">Solaris</a> 10 5/09 and 10/09, <a href="http://www.opensolaris.com/">OpenSolaris</a> 2009.06 and 2010.02 preview snv_127)</p>
<p><strong>Linux (RHEL / Fedora / CentOS) IPv6 tunnel setup</strong></p>
<p>Create <code>/etc/sysconfig/network-scripts/ifcfg-sit1</code> file:</p>
<p><code>DEVICE=sit1<br />
BOOTPROTO=none<br />
ONBOOT=yes<br />
IPV6INIT=yes<br />
IPV6TUNNELIPV4=Server_IPv4_Address<br />
IPV6TUNNELIPV4LOCAL=Client_IPv4_Address<br />
IPV6ADDR=Client_IPv6_Address/64<br />
</code></p>
<p>Add the following to <code>/etc/sysconfig/network</code> file:</p>
<p><code>NETWORKING_IPV6=yes<br />
IPV6_DEFAULTDEV=sit1</code></p>
<p>(Tested with <a href="http://fedoraproject.org/">Fedora</a> 11 and 12, <a href="http://www.centos.org/">CentOS</a> 5.3 and 5.4)</p>
<p><strong>FreeBSD IPv6 tunnel setup</strong></p>
<p>Add the following lines to <code>/etc/rc.conf</code> file:</p>
<p><code>gif_interfaces="gif0"<br />
gifconfig_gif0="Client_IPv4_Address Server_IPv4_Address"<br />
ipv6_enable="YES"<br />
ipv6_network_interfaces="lo0 gif0"<br />
ipv6_ifconfig_gif0="Client_IPv6_Address prefixlen 128"<br />
ipv6_defaultrouter="Server_IPv6_Address"</code></p>
<p>(Tested with <a href="http://www.freebsd.org/">FreeBSD</a> 6.4)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2009/12/01/opensolaris-and-linux-tunnelbroker-net-ipv6-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New off-site backup solution &#8211; rsync.net</title>
		<link>http://blog.bradiceanu.net/2007/06/16/new-off-site-backup-solution-rsyncnet/</link>
		<comments>http://blog.bradiceanu.net/2007/06/16/new-off-site-backup-solution-rsyncnet/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 09:11:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.bradiceanu.net/wordpress/archives/51</guid>
		<description><![CDATA[I signed up with rsync.net for an off-site filesystem.  Opted for geo-redundant version (automated nightly replication to other site) located in Zurich, Switzerland.  Very fast speed from Europe and Qatar, good speed with US hosts. Very easy to use from Mac OS X, FreeBSD, Linux and Windows (rsync, ftp, scp, sftp, ssh, WebDAV). [...]]]></description>
			<content:encoded><![CDATA[<p>I signed up with <a href="http://www.rsync.net/" title="www.rsync.net" target="_blank">rsync.net</a> for an off-site filesystem.  Opted for geo-redundant version (automated nightly replication to other site) located in Zurich, Switzerland.  Very fast speed from Europe and Qatar, good speed with US hosts. Very easy to use from <a href="http://www.apple.com/macosx/" title="www.apple.com/macosx" target="_blank">Mac OS X</a>, <a href="http://www.freebsd.org/" title="www.freebsd.org" target="_blank">FreeBSD</a>, Linux and Windows (<a href="http://rsync.samba.org/" title="rsync.samba.org" target="_blank">rsync</a>, ftp, scp, sftp, <a href="http://www.openssh.com/" title="www.openssh.com" target="_blank">ssh</a>, <a href="http://www.webdav.org/" title="www.webdav.org" target="_blank">WebDAV</a>). Direct integration in Finder, just use &#8220;Connect to Server&#8221; and enter the hostname address with https. On Linux and FreeBSD 6.x sshfs works like a charm. Easy to install on <a href="http://www.freebsd.org/" title="www.freebsd.org" target="_blank">FreeBSD</a> using <a href="http://www.freebsd.org/ports/" title="www.freebsd.org/ports" target="_blank">ports</a>, just <em>cd /usr/ports/sysutils/fusefs-sshfs</em> and run <em>make install clean</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2007/06/16/new-off-site-backup-solution-rsyncnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick howto &#8211; RAID-1 (mirror) in FreeBSD</title>
		<link>http://blog.bradiceanu.net/2007/03/07/quick-howto-raid-1-mirror-in-freebsd/</link>
		<comments>http://blog.bradiceanu.net/2007/03/07/quick-howto-raid-1-mirror-in-freebsd/#comments</comments>
		<pubDate>Wed, 07 Mar 2007 18:13:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://vps.bradiceanu.net/wordpress/?p=41</guid>
		<description><![CDATA[sysctl kern.geom.debugflags=16
gmirror label -v -b round-robin gm0 /dev/ad0
echo geom_mirror_load="YES" >> /boot/loader.conf
sed -i .orig 's/ad0/mirror/gm0/' /etc/fstab
reboot
gmirror insert gm0 /dev/ad2
Replace ad0 with your FreeBSD bootdisk, ad2 with the second (same or larger capacity) disc.
]]></description>
			<content:encoded><![CDATA[<p><code>sysctl kern.geom.debugflags=16</code></p>
<p><code>gmirror label -v -b round-robin gm0 /dev/ad0</code></p>
<p><code>echo geom_mirror_load="YES" >> /boot/loader.conf</code></p>
<p><code>sed -i .orig 's/ad0/mirror/gm0/' /etc/fstab</code></p>
<p><code>reboot</code></p>
<p><code>gmirror insert gm0 /dev/ad2</code></p>
<p>Replace ad0 with your FreeBSD bootdisk, ad2 with the second (same or larger capacity) disc.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2007/03/07/quick-howto-raid-1-mirror-in-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ethernet bridging in FreeBSD 6.1</title>
		<link>http://blog.bradiceanu.net/2006/10/28/ethernet-bridging-in-freebsd-61/</link>
		<comments>http://blog.bradiceanu.net/2006/10/28/ethernet-bridging-in-freebsd-61/#comments</comments>
		<pubDate>Sat, 28 Oct 2006 04:34:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://vps.bradiceanu.net/wordpress/?p=38</guid>
		<description><![CDATA[Add to rc.conf:
cloned_interfaces=&#8221;bridge0&#8243;
ifconfig_bridge0=&#8221;addm rl0 addm rl1&#8243;
Make sure you have if_bridge loaded as module or set up as &#8216;device if_bridge&#8217; in your kernel configuration file.
]]></description>
			<content:encoded><![CDATA[<p>Add to rc.conf:</p>
<blockquote><p>cloned_interfaces=&#8221;bridge0&#8243;</p>
<p>ifconfig_bridge0=&#8221;addm rl0 addm rl1&#8243;</p></blockquote>
<p>Make sure you have if_bridge loaded as module or set up as &#8216;device if_bridge&#8217; in your kernel configuration file.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2006/10/28/ethernet-bridging-in-freebsd-61/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VLAN Trunking in FreeBSD 6</title>
		<link>http://blog.bradiceanu.net/2006/09/28/vlan-trunking-in-freebsd-6/</link>
		<comments>http://blog.bradiceanu.net/2006/09/28/vlan-trunking-in-freebsd-6/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 07:07:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://vps.bradiceanu.net/wordpress/?p=37</guid>
		<description><![CDATA[Configure your switch to trunk (802.1q) desired VLANs on port connected to rl0 on FreeBSD box.
/etc/rc.conf:
ifconfig_rl0=&#8221;up&#8221;
cloned_interfaces=&#8221;vlan5 vlan6&#8243;
ifconfig_vlan5=&#8221;inet 192.168.5.254 netmask 255.255.255.0 vlan 5 vlandev rl0&#8243;
ifconfig_vlan6=&#8221;inet 192.168.6.254 netmask 255.255.255.0 vlan 6 vlandev rl0&#8243;
vlan5 and vlan6 interfaces will show up:
vlan5: flags=8843 mtu 1500
inet 192.168.5.254 netmask 0xffffff00 broadcast 192.168.5.255
ether 00:11:XX:XX:XX:XX
media: Ethernet autoselect (100baseTX )
status: active
vlan: 5 parent interface: rl0
vlan6: [...]]]></description>
			<content:encoded><![CDATA[<p>Configure your switch to trunk (802.1q) desired VLANs on port connected to rl0 on FreeBSD box.</p>
<p>/etc/rc.conf:<br />
ifconfig_rl0=&#8221;up&#8221;<br />
cloned_interfaces=&#8221;vlan5 vlan6&#8243;<br />
ifconfig_vlan5=&#8221;inet 192.168.5.254 netmask 255.255.255.0 vlan 5 vlandev rl0&#8243;<br />
ifconfig_vlan6=&#8221;inet 192.168.6.254 netmask 255.255.255.0 vlan 6 vlandev rl0&#8243;</p>
<p>vlan5 and vlan6 interfaces will show up:</p>
<p>vlan5: flags=8843 mtu 1500<br />
inet 192.168.5.254 netmask 0xffffff00 broadcast 192.168.5.255<br />
ether 00:11:XX:XX:XX:XX<br />
media: Ethernet autoselect (100baseTX )<br />
status: active<br />
vlan: 5 parent interface: rl0</p>
<p>vlan6: flags=8843 mtu 1500<br />
inet 192.168.6.254 netmask 0xffffff00 broadcast 192.168.6.255<br />
ether 00:11:XX:XX:XX:XX<br />
media: Ethernet autoselect (100baseTX )<br />
status: active<br />
vlan: 6 parent interface: rl0</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2006/09/28/vlan-trunking-in-freebsd-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerDNS recursor problems</title>
		<link>http://blog.bradiceanu.net/2005/11/12/powerdns-recursor-problems-2/</link>
		<comments>http://blog.bradiceanu.net/2005/11/12/powerdns-recursor-problems-2/#comments</comments>
		<pubDate>Sat, 12 Nov 2005 14:23:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://vps.bradiceanu.net/wordpress/?p=20</guid>
		<description><![CDATA[It seems that PowerDNS&#8217;s pdns_recursor crashes on FreeBSD under load.
I&#8217;ve replaced it by a bind recursor. Excerpt from named.conf:

options {
        directory       "/etc/namedb";
        pid-file        "/var/run/named/pid";
     [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that <a href="http://www.powerdns.com/">PowerDNS</a>&#8217;s pdns_recursor crashes on <a href="http://www.freebsd.org/">FreeBSD</a> under load.</p>
<p>I&#8217;ve replaced it by a <a href="http://www.isc.org/sw/bind/">bind</a> recursor. Excerpt from named.conf:</p>
<p><code><br />
options {<br />
        directory       "/etc/namedb";<br />
        pid-file        "/var/run/named/pid";<br />
        dump-file       "/var/dump/named_dump.db";<br />
        statistics-file "/var/stats/named.stats";</p>
<p>        listen-on       port XXXX { 127.0.0.1; };<br />
};</p>
<p>zone "." {<br />
        type hint;<br />
        file "named.root";<br />
};<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2005/11/12/powerdns-recursor-problems-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD 6.0 on old hardware</title>
		<link>http://blog.bradiceanu.net/2005/11/09/freebsd-60-on-old-hardware/</link>
		<comments>http://blog.bradiceanu.net/2005/11/09/freebsd-60-on-old-hardware/#comments</comments>
		<pubDate>Wed, 09 Nov 2005 14:31:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://vps.bradiceanu.net/wordpress/?p=19</guid>
		<description><![CDATA[I have installed FreeBSD 6.0 on some old computer, seems to work very fast! I have rebuild world and kernel.
dmesg:

Copyright (c) 1992-2005 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
        The Regents of the University of California. All rights reserved.
FreeBSD 6.0-RELEASE #0: [...]]]></description>
			<content:encoded><![CDATA[<p>I have installed FreeBSD 6.0 on some old computer, seems to work very fast! I have rebuild <a href="http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html">world</a> and kernel.</p>
<p>dmesg:<br />
<code><br />
Copyright (c) 1992-2005 The FreeBSD Project.<br />
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994<br />
        The Regents of the University of California. All rights reserved.<br />
FreeBSD 6.0-RELEASE #0: Sun Nov  6 00:13:58 EET 2005<br />
    root@XXXX:/usr/obj/usr/src/sys/XXXX<br />
Timecounter "i8254" frequency 1193182 Hz quality 0<br />
CPU: Pentium II/Pentium II Xeon/Celeron (350.80-MHz 686-class CPU)<br />
  Origin = "GenuineIntel"  Id = 0x652  Stepping = 2<br />
  Features=0x183f9ff<fpu ,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR><br />
real memory  = 201261056 (191 MB)<br />
avail memory = 191619072 (182 MB)<br />
ACPI disabled by blacklist.  Contact your BIOS vendor.<br />
npx0: [FAST]<br />
npx0:<br />
<math processor> on motherboard<br />
npx0: INT 16 interface<br />
cpu0 on motherboard<br />
pcib0: <intel 82443BX (440 BX) host to PCI bridge> pcibus 0 on motherboard<br />
pir0:
<pci Interrupt Routing Table: 7 Entries> on motherboard<br />
pci0: </pci>
<pci bus> on pcib0<br />
agp0: <intel 82443BX (440 BX) host to PCI bridge> mem 0xe0000000-0xe3ffffff at device 0.0 on pci0<br />
pcib1:
<pci -PCI bridge> at device 1.0 on pci0<br />
pci1: </pci>
<pci bus> on pcib1<br />
pci1: <display , VGA> at device 0.0 (no driver attached)<br />
isab0:
<pci -ISA bridge> at device 7.0 on pci0<br />
isa0: <isa bus> on isab0<br />
atapci0: <intel PIIX4 UDMA33 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x9080-0x908f at device 7.1 on pci0<br />
ata0: <ata channel 0> on atapci0<br />
ata1: </ata><ata channel 1> on atapci0<br />
uhci0: <intel 82371AB/EB (PIIX4) USB controller> port 0x9040-0x905f irq 11 at device 7.2 on pci0<br />
uhci0: [GIANT-LOCKED]<br />
usb0: </intel><intel 82371AB/EB (PIIX4) USB controller> on uhci0<br />
usb0: USB revision 1.0<br />
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1<br />
uhub0: 2 ports with 2 removable, self powered<br />
pci0: <bridge> at device 7.3 (no driver attached)<br />
fxp0: <intel 82558 Pro/100 Ethernet> port 0x9000-0x901f mem 0x82300000-0x82300fff,0x82100000-0x821fffff irq 3 at device 16.0 on pci0<br />
miibus0: <mii bus> on fxp0<br />
inphy0: <i82555 10/100 media interface> on miibus0<br />
inphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto<br />
fxp0: Ethernet address: 00:00:e2:13:39:e0<br />
rl0: <realtek 8139 10/100BaseTX> port 0x7000-0x70ff mem 0x80100000-0x801000ff irq 10 at device 18.0 on pci0<br />
miibus1: <mii bus> on rl0<br />
rlphy0: <realtek internal media interface> on miibus1<br />
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto<br />
rl0: Ethernet address: 00:0e:2e:56:b7:83<br />
pmtimer0 on isa0<br />
orm0: <isa Option ROM> at iomem 0xc0000-0xc7fff on isa0<br />
atkbdc0: <keyboard controller (i8042)> at port 0x60,0x64 on isa0<br />
atkbd0: <at Keyboard> irq 1 on atkbdc0<br />
kbd0 at atkbd0<br />
atkbd0: [GIANT-LOCKED]<br />
psm0:
<ps /2 Mouse> irq 12 on atkbdc0<br />
psm0: [GIANT-LOCKED]<br />
psm0: model Generic PS/2 mouse, device ID 0<br />
fdc0: <enhanced floppy controller> at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0<br />
fdc0: [FAST]<br />
fd0: &lt;1440-KB 3.5" drive> on fdc0 drive 0<br />
ppc0:
<parallel port> at port 0x378-0x37f irq 7 on isa0<br />
ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode<br />
ppbus0: </parallel>
<parallel port bus> on ppc0<br />
sc0: <system console> at flags 0x100 on isa0<br />
sc0: VGA &lt;16 virtual consoles, flags=0x300><br />
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0<br />
sio0: type 16550A<br />
sio1: configured irq 3 not in bitmap of probed irqs 0<br />
sio1: port may not be enabled<br />
vga0: <generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0<br />
unknown:
<pnp0c01> can't assign resources (memory)<br />
unknown:
<pnp0c02> can't assign resources (port)<br />
unknown:
<pnp0303> can't assign resources (port)<br />
unknown:
<pnp0f13> can't assign resources (irq)<br />
unknown:
<pnp0400> can't assign resources (port)<br />
unknown:
<pnp0501> can't assign resources (port)<br />
unknown:
<pnp0700> can't assign resources (port)<br />
Timecounter "TSC" frequency 350797222 Hz quality 800<br />
Timecounters tick every 1.000 msec<br />
ipfw2 (+ipv6) initialized, divert loadable, rule-based forwarding enabled, default to accept, logging limited to 1 packets/entry by default<br />
ad0: 6179MB <maxtor 90648D3 GAS54112> at ata0-master UDMA33<br />
acd0: CDROM <cd -ROM 40X/AKU/U31> at ata1-master PIO4<br />
Trying to mount root from ufs:/dev/ad0s1a<br />
</cd></maxtor></pnp0700></pnp0501></pnp0400></pnp0f13></pnp0303></pnp0c02></pnp0c01></generic></system></parallel></enhanced></ps></at></keyboard></isa></realtek></mii></realtek></i82555></mii></intel></bridge></intel></ata></intel></isa></pci></display></pci></intel></pci></intel></math>
<p></fpu></code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2005/11/09/freebsd-60-on-old-hardware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerDNS recursor problems</title>
		<link>http://blog.bradiceanu.net/2005/11/09/powerdns-recursor-problems/</link>
		<comments>http://blog.bradiceanu.net/2005/11/09/powerdns-recursor-problems/#comments</comments>
		<pubDate>Wed, 09 Nov 2005 11:55:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://vps.bradiceanu.net/wordpress/?p=18</guid>
		<description><![CDATA[It seems that pdns_recursor from 2.9.19 dies under light load on FreeBSD.
]]></description>
			<content:encoded><![CDATA[<p>It seems that pdns_recursor from 2.9.19 dies under light load on FreeBSD.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2005/11/09/powerdns-recursor-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New DNS server up</title>
		<link>http://blog.bradiceanu.net/2005/10/24/new-dns-server-up/</link>
		<comments>http://blog.bradiceanu.net/2005/10/24/new-dns-server-up/#comments</comments>
		<pubDate>Mon, 24 Oct 2005 08:44:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://vps.bradiceanu.net/wordpress/?p=15</guid>
		<description><![CDATA[New production DNS server is up since Saturday night.
It runs PowerDNS with a MySQL 4.1 backend on FreeBSD 5.4. Complete with web (SSL) administration and statistics.
So far:

Uptime: 18 hours Queries/second, 1, 5, 10 minute averages: 6.4, 5.12, 5.15. Max queries/second: 40.1
Cache hitrate, 1, 5, 10 minute averages: 24%, 22%, 20%
Backend query cache hitrate, 1, 5, [...]]]></description>
			<content:encoded><![CDATA[<p>New production DNS server is up since Saturday night.</p>
<p>It runs <a href="http://www.powerdns.com/">PowerDNS</a> with a <a href="http://dev.mysql.com/">MySQL</a> 4.1 backend on <a href="http://www.freebsd.org/">FreeBSD</a> 5.4. Complete with web (SSL) administration and statistics.</p>
<p>So far:<br />
<code><br />
Uptime: 18 hours Queries/second, 1, 5, 10 minute averages: 6.4, 5.12, 5.15. Max queries/second: 40.1<br />
Cache hitrate, 1, 5, 10 minute averages: 24%, 22%, 20%<br />
Backend query cache hitrate, 1, 5, 10 minute averages: 63%, 62%, 62%<br />
Backend query load, 1, 5, 10 minute averages: 10, 8.2, 8.59. Max queries/second: 26.7<br />
Total queries: 313999. Question/answer latency: 0.678ms<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2005/10/24/new-dns-server-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
