<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>BSD Guides Recent Comments</title>
		<link>http://www.bsdguides.org/</link>
		<copyright>Copyright 2012, BSD Guides</copyright>
		<managingEditor>moderators@bsdguides.org (BSD Guides Recent Comments)</managingEditor>
		<language>en-US</language>
		<item>
			<title>Installing Squid</title>
			<link>http://www.bsdguides.org/guides/openbsd/networking/install_squid#comment_559</link>
			<description><![CDATA[From OpenBSD 5 up no change to rc.local is necessary. Instead of this add "squid" to the package scripts variable in /etc/rc.conf.local:

pkg_scripts="squid"
&lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Thu, 26 Jan 2012 07:53:14 GMT</pubDate>
		</item>
		<item>
			<title>Qmail with smtp-auth, vpopmail, binc-imap and qmailAdmin</title>
			<link>http://www.bsdguides.org/guides/freebsd/mailserver/qmail+vpopmail+qmailadmin.php#comment_558</link>
			<description><![CDATA[After running portupgrades i found that my mail server stopped working for imap ... turns out bincimap is discontinued:

make search name=bincimap
Port:&nbsp;&nbsp; mail/bincimap
Moved:
Date:&nbsp;&nbsp; 2011-08-01
Reason: Has expired: No more public distfile

So now I have to look for alternative, and in the mean time not use imap OR work on getting the old tarball i have of it installed.... &lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Sun, 11 Sep 2011 16:41:06 GMT</pubDate>
		</item>
		<item>
			<title>Hardening FreeBSD</title>
			<link>http://www.bsdguides.org/guides/freebsd/security/harden.php#comment_557</link>
			<description><![CDATA[Regarding the portion on enabling blowfish hashing, when using the adduser command to create a new user with password I had to additionally run the passwd command to allow the newly created account to log in.

Is this a bug with the adduser binary?

Steps I took:
 a - Configured auth.conf to enable blowfish hashing
 b - Modified the login.conf to reflect hashing mechanism to use for authentication
 c - Added a new user w/ password (verified hash created was of blowfish strength compared to sha1, md5 or des)
 d - Logged off as root
 e - Attempted to login as new account (2 times without success)
 f - Logged back in as root
 g - Used passwd command for new account
 h - Logged off and tested account when then worked

Thanks&lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Wed, 06 Jul 2011 00:12:14 GMT</pubDate>
		</item>
		<item>
			<title>Setting up Snort and Snortreport</title>
			<link>http://www.bsdguides.org/guides/freebsd/security/snortreport.php#comment_556</link>
			<description><![CDATA[Snort report is not getting generated properly..

the following is the srconf.php

 <b>&lt;? // Snort Report 1.3.1 // December 21, 2005 // Copyright (C) 2000-2005 Symmetrix Technologies, LLC. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.&nbsp;&nbsp;See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //&nbsp;&nbsp;// Current version of Snort Report $srVersion = "Snort Report Version 1.3.1";&nbsp;&nbsp;// // PLEASE SET THE FOLLOWING VARIABLES TO MATCH YOUR SYSTEM //&nbsp;&nbsp;// Put your snort database login credentials in this section $server = "localhost"; $user = "snort"; $pass = "snort123; $dbname = "snort";&nbsp;&nbsp;// use either "mysql" or "pgsql" below, depending on your database $dbtype = "mysql";&nbsp;&nbsp;// Change to FALSE if GD *and* JPGraph are not installed $haveGD = TRUE;&nbsp;&nbsp;// Relative path to JPGraph // You need to have jpgraph and jpgraph_pie installed to see the chart. // Change the variable below to reflect the location of jpgraph relative // to Snort Report, for example "../jpgraph/", etc. define("JPGRAPH_PATH", "var/www/html/jpgraph/");&nbsp;&nbsp;// Path to external utilities // Enter the correct path (including the binary) to nmap and nbtscan if you have them installed // You can also include switches for each binary (see nmap) define("NMAP_PATH", "/usr/bin/nmap -v"); define("NBTSCAN_PATH", "/usr/bin/nbtscan");&nbsp;&nbsp;tar -zxvf snortreport-1.3.1.tar.gz&nbsp;&nbsp;// Custom microtiming functions for profiling pages - available from <a href="http://improbable.org/chris/software/profiling.phps" target="_blank">http://improbable.org/chris/software/profiling.phps</a>&nbsp;&nbsp; define("PROFILING", false); if (PROFILING) { 	require_once("profiling.phps"); }&nbsp;&nbsp;// // YOU DON'T NEED TO MODIFY ANYTHING UNDER THIS LINE //&nbsp;&nbsp;// Open a connection to the database require_once("DB.php"); $db = new DB; $db-&gt;setinst($server); $db-&gt;setuser($user); $db-&gt;setpass($pass); $db-&gt;dbname($dbname); $db-&gt;persist(); $conn = $db-&gt;connect();&nbsp;&nbsp;define("FULL_DATETIME_FORMAT", "Y-m-d H:i:s");&nbsp;&nbsp;set_time_limit(1800);&nbsp;&nbsp;require_once("info-retrieval.php"); ?&gt;</b> 

<a href="[URL" target="_blank">http://localhost/snortreport-1.3.1/alerts.php]
http://localhost/snortreport-1.3.1/alerts.php</a>[/URL] 

 Snort Report	M e n u&nbsp;&nbsp;Alerts&nbsp;&nbsp;Snort Home&nbsp;&nbsp;Snort Report Home setinst($server); $db-&gt;setuser($user); $db-&gt;setpass($pass); $db-&gt;dbname($dbname); $db-&gt;persist(); $conn = $db-&gt;connect(); define("FULL_DATETIME_FORMAT", "Y-m-d H:i:s"); set_time_limit(1800); require_once("info-retrieval.php"); ?&gt; [/EMAIL]&lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Mon, 20 Dec 2010 10:16:47 GMT</pubDate>
		</item>
		<item>
			<title>Build a Samba PDC with LDAP backend</title>
			<link>http://www.bsdguides.org/guides/freebsd/networking/samba_pdc_ldap#comment_554</link>
			<description><![CDATA[# echo slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/ ldap://127.0.0.1/"' &gt;&gt; /etc/rc.conf

does not insert the single quotes, simply edit /etc/rc.conf and make sure the line reads:

slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/ ldap://127.0.0.1/"'

(http://forums.freebsd.org/showthread.php?t=770)&lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Sat, 04 Sep 2010 02:35:40 GMT</pubDate>
		</item>
		<item>
			<title>Build a Samba PDC with LDAP backend</title>
			<link>http://www.bsdguides.org/guides/freebsd/networking/samba_pdc_ldap#comment_553</link>
			<description><![CDATA[Something appears to be wrong with the line:

# echo slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/ ldap://127.0.0.1/"' &gt;&gt; /etc/rc.conf

(backslashes were removed by the post a comment form, but they're there)

As it causes this output when you start slapd:

# /usr/local/etc/rc.d/slapd start
/etc/rc.conf: "ldapi://%2fvar%2frun%2fopenldap%2fldapi/: not found
Starting slapd.
/usr/local/etc/rc.d/slapd: WARNING: slapd: Can't find socket /var/run/openldap/ldapi&lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Sat, 04 Sep 2010 02:31:28 GMT</pubDate>
		</item>
		<item>
			<title>Setting up Samba</title>
			<link>http://www.bsdguides.org/guides/freebsd/networking/samba.php#comment_552</link>
			<description><![CDATA[After make install clean, it says:

&lt;quote&gt; You will be prompted with a configuration menu to choose additional options to be installed.&nbsp;&nbsp;For this guide we won't choose any. &lt;endquote&gt;

Looks like samba34 doesn't have swat enabled by default.&nbsp;&nbsp;So you better check swat if you want to follow this guide.&lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Sat, 10 Apr 2010 21:43:27 GMT</pubDate>
		</item>
		<item>
			<title>Mount Images With mdconfig</title>
			<link>http://www.bsdguides.org/guides/freebsd/beginners/mdconfig_mount_images#comment_551</link>
			<description><![CDATA[There's a typo!

We are creating /dev/md0.

Yet it says

mount /dev/mnt0 /mnt
mount_cd9660 /dev/mnt0 /mnt

It should be

mount /dev/md0 /mnt
mount_cd9660 /dev/md0 /mnt
&lt;p&gt;Posted by: ]]></description>
			<author>moderators@bsdguides.org</author>
			<pubDate>Tue, 02 Feb 2010 09:05:10 GMT</pubDate>
		</item>
	</channel>
</rss>

