what is the “Online Certificate Status Protocol”

2011-03-09 Thread erikmccaskey64
I use privoxy. In the user.action file i have a redirect rule and a few 
websites: 


{ +redirect{s@http://@https://@} }
.twitter.com
.facebook.com


Ok! it's working great, e.g.: if i visit any *twitter.com URL it gets 
redirected to HTTPS!


But: with wireshark i can see some OCSP packets [ 
http://en.wikipedia.org/wiki/Online_Certificate_Status_Protocol ]


Question: What are these packets? Why aren't there in HTTPS?


Is my redirection method with privoxy is secure?


Thank you for any tips/opinions!

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Portupgrade and Updating the portsdb

2011-03-09 Thread c0re
2011/2/11 ill...@gmail.com ill...@gmail.com:
 On 10 February 2011 08:33, c0re nr1c...@gmail.com wrote:
 Hello all!

 I've got set of servers that uses NFS mounted /usr/ports. When I use
 portupgrade samba on 1st server it says
 [/usr/ports/INDEX-7.db: unexpected file type or format -- Invalid
 argument] [Updating the portsdb format:bdb_btree in /usr/ports ... -
 22601 port entries found  error] Remove and try again.
 [Updating the portsdb format:dbm_hash in /usr/ports ... - 22601 port
 entries found .
 . done]

 Okay. It took 10-15 mins to rebuild.

 Then I say portupgrade samba on 2nd server it says again
 [/usr/ports/INDEX-7.db: unexpected file type or format -- Invalid
 argument] [Updating the portsdb format:bdb_btree in /usr/ports ... -
 22601 port entries found  error] Remove and try again.
 and rebuild portsdb.

 Why is it so?

 Ports are updated via portsnap fetch update.

 /etc/portsnap.conf has
 INDEX INDEX-5 DESCRIBE.5
 INDEX INDEX-6 DESCRIBE.6
 INDEX INDEX-7 DESCRIBE.7
 INDEX INDEX-8 DESCRIBE.8

 So while portupgrade rebuilds portsdb it's not possible use
 portupgrade on 2nd server because later build process will fail on 1st
 or second server.

 What can I do with it? Why portupgrade always thinks that
 [/usr/ports/INDEX-7.db: unexpected file type or format -- Invalid
 argument]?


 The INDEX-n.db is a locally generated portupgrade thing.

 Edit your /usr/local/etc/pkgtools.conf for each machine to
 include a line such as:
 ENV['PORTS_INDEX'] ||= ENV['PORTSDIR'] + '/INDEX.local'

 Only instead of '/INDEX.local' use '/INDEX.your_hostname_here'.

 You might also look at changing the part ENV['PORTSDIR'] to
 something local (speed, etc), like adding a line up from that:
 ENV['LOCALINDICES'] ||= '/var/db'

 then

 ENV['PORTS_INDEX'] ||= ENV['LOCALINDICES'] + '/INDEX.thy_hostname_here'


 Also, if you have local space, settin' WRKDIRPREFIX= in
 /etc/make.conf will speed things up  allow multiple machines
 to build at the same time.

 HTH
 --
 --


It's time to make upgrade of some packages.

I configured
  ENV['PORTS_INDEX'] = '/var/db/INDEX'
  ENV['PORTS_DBDIR'] = ENV['PKG_DBDIR']

in /usr/local/etc/pkgtools.conf, assuming that PKG_DBDIR is /var/db/pkg

and portupgrade sudo results
Fetching the ports index ... fetch: /usr/ports/INDEX-7.bz2: open():
Read-only file system
*** Error code 1

Stop in /usr/ports.
failed to fetch INDEX!
Updating the ports index ... Generating INDEX.tmp - please
wait..cannot create /usr/ports/INDEX.tmp.tmp: Read-only file system
Warning: Duplicate INDEX entry: py25-bsddb-2.5.5_2
*** Error code 2

Stop in /usr/ports.
*** Error code 1

Stop in /usr/ports.
failed to generate INDEX!
index generation error
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:493:in `open_db':
database file error (PortsDB::DBError)
from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:661:in `port'
from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:849:in
`all_depends_list'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:843:in `tsort_build'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:835:in `each'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:835:in `tsort_build'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:857:in `sort_build'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:861:in `sort_build!'
from /usr/local/sbin/portupgrade:792:in `main'
from /usr/local/lib/ruby/1.8/optparse.rb:791:in `initialize'
from /usr/local/sbin/portupgrade:229:in `new'
from /usr/local/sbin/portupgrade:229:in `main'
from /usr/local/sbin/portupgrade:2213

Any workaround with Fetching the ports index? There exists
/usr/ports/INDEX-7, but portupgrade tryes to fetch it again and
failes, cose /usr/ports is read-only mounted.
Changing ENV['PORTSDIR'] ||= '/var/ports' make no sense because it's
obvious that PORTSDIR should look at ports base (/usr/ports)

# portupgrade sudo
** Port directory not found: security/sudo
** Listing the failed packages (-:ignored / *:skipped / !:failed)
- security/sudo (port directory error)

Still looking for a solution about using portupgrade with read-only
mounted /usr/ports.
And yes, i'm using WRKDIRPREFIX in /etc/make.conf.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Server not booting

2011-03-09 Thread perryh
Doug Hardie bc...@lafn.org wrote:

 The motherboard doesn't recognize a USB stick for booting
 unfortunately.  The motherboard manual is dated 2006 so
 I think its just too old for that.

This

http://www.plop.at/

can be loaded off just about any device the system _can_ boot from,
and stands a good chance of booting from a USB stick.  (Works for me
on an old Dell, loaded from floppy and booting a FreeBSD memstick
image.)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: license of the code in freebsd documantation

2011-03-09 Thread Giorgos Keramidas
2011/3/3 Kouichiro Iwao m...@club.kyutech.ac.jp:
 I'm writing a script based on the code in freebsd docs, and caring
 about the license of it. The original scripts are example 6 and 7 of
 the following page. How do I have to treat my code if I distribute it?

 http://www.freebsd.org/doc/en/articles/ldap-auth/client.html

 I know freebsd docs is licensed under The FreeBSD Documantation
 License but don't know about codes in them.

Everything included in the FreeBSD documentation set is covered by the
license.  We don't have a special clause in the license for code that is
inline to the documentation.  Therefore, you can safely use this code
under the same terms as the documentation itself.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: java plugin for firefox

2011-03-09 Thread Pavel Timofeev


Pavel Timofeev wrote:
 
 Is it necessary to install libxul for enabling java plugin in firefox3.6?
 
Excuse me. I use FreeBSD 8.2 RELEASE i386, firefox3.6, openjdk6
-- 
View this message in context: 
http://old.nabble.com/java-plugin-for-firefox-tp31106239p31106351.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: what is the “Online Certificate Status Protocol”

2011-03-09 Thread Matthew Seaman
On 09/03/2011 09:30, erikmccaskey64 wrote:
 But: with wireshark i can see some OCSP packets [ 
 http://en.wikipedia.org/wiki/Online_Certificate_Status_Protocol ]
 
 
 Question: What are these packets? Why aren't there in HTTPS?

This is your browser trying to check if the SSL certs for the sites you
are visiting are still valid.  Certs can be cancelled by their issuer
before the built-in expiration date for various reasons -- eg. if there
has been a security compromise on the server and it is suspected that
someone has been able to steal the key and cert.

OCSP is one means of checking SSL certificate validity.  Another is
checking Certificate Revocation Lists issued by CAs.  Neither of these
require encryption at the network level, as the content that is
downloaded is already cryptographically signed.  Since it is public
knowledge, all the crypto is used for is to authenticate the data, not
encrypt it.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
JID: matt...@infracaninophile.co.uk   Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


java plugin for firefox

2011-03-09 Thread Pavel Timofeev

Is it necessary to install libxul for enabling java plugin in firefox3.6?
-- 
View this message in context: 
http://old.nabble.com/java-plugin-for-firefox-tp31106239p31106239.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Installing squid, where should the directories be?

2011-03-09 Thread Leslie Jensen

Hello list.

I'm installing squid on a new 8.2-RELEASE machine.

I've done it it before with squid 2.x and I have notes to follow.

A few questions have turned up.

I have /usr/local/squid as default directory and has made a separate 
mount point.


When it comes to the cache and the logs directory I can see that the 
squid installation has created the /var/squid/cache directory.


When Googling this problem I see both the use of /var/squid and 
/usr/local/squid.


Where should it be?

When running the command squid -z to initialize the cache the cache 
directory must be there otherwise the command won't work.


How should I set the permissions on /usr/local/squid and the directories 
below?


I find what I consider conflicting information, often it's quite dated.

I could not find any advise in the Handbook. I'll be happy to help 
making a squid chapter.


Thanks

/Leslie
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing squid, where should the directories be?

2011-03-09 Thread Kevin Wilcox
On Wed, Mar 9, 2011 at 10:27, Leslie Jensen les...@eskk.nu wrote:

 I'm installing squid on a new 8.2-RELEASE machine.

Me too.

 I have /usr/local/squid as default directory and has made a separate mount
 point.

Same here. As a general rule I like to give squid its own hard drive,
or its own RAID. Giving it a separate partition on a single drive is
useful if you're concerned about filling the disk but that *should* be
controlled by the squid configuration file. Still, it's a good idea.

 When it comes to the cache and the logs directory I can see that the squid
 installation has created the /var/squid/cache directory.

I've always seen /var/squid as being very Linux-centric.

/usr/local/squid or /usr/local/var/squid makes more sense to me.

 When Googling this problem I see both the use of /var/squid and
 /usr/local/squid.

 Where should it be?

Yep, ultimately it doesn't matter as long as you know where it is, you
document where it is and your settings are correct in
/usr/local/etc/squid/squid.conf.

By default squid will use /var/squid. I always change it on install.

 When running the command squid -z to initialize the cache the cache
 directory must be there otherwise the command won't work.

 How should I set the permissions on /usr/local/squid and the directories
 below?

I use 755, squid:squid.

 I could not find any advise in the Handbook. I'll be happy to help making a
 squid chapter.

I'm writing some internal documentation on deploying pf + squid 2.7.x
+ SNMP on FreeBSD 8.2 routers/firewalls with cacti monitoring, I'll
contribute what I can. I doubt we'll see a section on squid as it's
really a niche area but it's always good to have something on the list
so folks doing a search can find something useful. If it's going to be
a few days before you get into the heavy lifting I'll try to send
something directly or maybe a link to this list this weekend.

You said you had notes from doing a 2.x installation, are you
installing 3.x? . I'm sticking with 2.7.STABLE9 for storeurl support
in some places and considering 3.x in others. 3.2 introduced SMP
support but you can achieve pseudo-SMP support by running multiple
instances on the same machine...just remember each instance has its
own RAM and disk cache, which sort of kills the performance.

kmw
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Nonsensical Web Log Entries

2011-03-09 Thread peter

I was looking at my Web log this morning, and a bunch of nonsensical entries 
like these caught my attention:

124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
HTTP/1.0 301 294 - Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 (compatible; 
MSIE 6.0; Windows NT 5.1; SV1)
115.225.166.2 - - [09/Mar/2011:09:50:04 -0500] GET 
http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)
114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)

Is my FreeBSD box serving as some kind of Web proxy?  




-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


HP Pavilion zd8000 Xorg anomaly

2011-03-09 Thread Steven Friedrich
My system had crashed and it caused a directory to los it's dot and dot-dot 
entries. This was a directory that was used for iso-codes and everytie I 
started X,  it would hang.

So I didn't want to format the drive, too extreme.  So I de-installed all my 
ports to re-install.  After I got the ports un-installed, I was able to fix 
the filesystem problem with fsck.  I tried beforehand,but it was way too many 
fsck issues.


Anyway, I have somehow LOST my xorg.conf that WORKED.

It was previously generated by xorg -configure.

That doesn't work anymore.

I am only able to us the vesa driver now.  So I'm stuck with 1024x768, instead 
of 1440x900.

I believe this was caused by the recent xorg update. I had been stable with X 
for YEARS.


-- 
System Name: laptop2.StevenFriedrich.org
Window Manager(s):   kde4-4.5.5_1 
X Window System: xorg-7.5.1X.Org X Server 1.7.7
OS version:  FreeBSD 8.2-RELEASE i386 (5.2 MB kernel)
Platform:HP pavilion zd8000 (zd8215us)
CPU: 2.80GHz Intel Pentium 4 (HTT) with 2 GB memory

FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386)
Installed devices:
pcm0: Intel ICH6 (82801FB) (play/rec) default
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing squid, where should the directories be?

2011-03-09 Thread RW
On Wed, 09 Mar 2011 16:27:27 +0100
Leslie Jensen les...@eskk.nu wrote:

 Hello list.
 
 I'm installing squid on a new 8.2-RELEASE machine.
 ... 
 When Googling this problem I see both the use of /var/squid and 
 /usr/local/squid.
...
 I find what I consider conflicting information, often it's quite
 dated.
 
 I could not find any advise in the Handbook. I'll be happy to help 
 making a squid chapter.

It's covered in UPDATING. If you search for squid it's the first
entry. The change was to bring squid more in line with hier(7), at the
expense of putting the default cache on a partition that's typically
undersized.

If you  want the cache on a separate partition, and you have no
good reason to put the logs on it, you might as well mount it in line
with hier.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread Michael J. Kearney
Idk i have similar entries. Its not a proxy .  Remember lot's wife. .. lol

pe...@vfemail.net pe...@vfemail.net wrote:


I was looking at my Web log this morning, and a bunch of nonsensical entries 
like these caught my attention:

124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
HTTP/1.0 301 294 - Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 (compatible; 
MSIE 6.0; Windows NT 5.1; SV1)
115.225.166.2 - - [09/Mar/2011:09:50:04 -0500] GET 
http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)
114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)

Is my FreeBSD box serving as some kind of Web proxy?




-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: HP Pavilion zd8000 Xorg anomaly

2011-03-09 Thread Adam Vande More
On Wed, Mar 9, 2011 at 10:32 AM, Steven Friedrich free...@insightbb.comwrote:

 My system had crashed and it caused a directory to los it's dot and dot-dot
 entries. This was a directory that was used for iso-codes and everytie I
 started X,  it would hang.

 So I didn't want to format the drive, too extreme.  So I de-installed all
 my
 ports to re-install.  After I got the ports un-installed, I was able to fix
 the filesystem problem with fsck.  I tried beforehand,but it was way too
 many
 fsck issues.


 Anyway, I have somehow LOST my xorg.conf that WORKED.

 It was previously generated by xorg -configure.


You didn't list your video card.

Most of the time, you don't need an xorg.conf anymore, just insure the
proper drivers are installed e.g. video card and X should autodetect and use
highest available settings.

Also sometimes on a bad crash multiple fsck's are required to get UFS back
in a consistent state.

-- 
Adam Vande More
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread peter

My wife will turn into a pillar of salt if she looks at my Web logs?  :)  

So this is normal behavior?   

The latest entry is:

  188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET 
http://images.google.com/ HTTP/1.1 200 13134 - -

This entry says that my Web server handed the person at IP address 
188.134.62.20 13,134 bytes of something, correct?  What was served?  I don't 
have any Web pages on my Web site with Google's name in it. 

---

At 12:16 PM 3/9/2011, Michael  J. Kearney wrote:
Idk i have similar entries. Its not a proxy .  Remember lot's wife. .. lol

pe...@vfemail.net pe...@vfemail.net wrote:


I was looking at my Web log this morning, and a bunch of nonsensical entries 
like these caught my attention:

124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
HTTP/1.0 301 294 - Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 (compatible; 
MSIE 6.0; Windows NT 5.1; SV1)
115.225.166.2 - - [09/Mar/2011:09:50:04 -0500] GET 
http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)
114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)

Is my FreeBSD box serving as some kind of Web proxy?




-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing squid, where should the directories be?

2011-03-09 Thread Leslie Jensen



On 2011-03-09 18:02, RW wrote:

On Wed, 09 Mar 2011 16:27:27 +0100
Leslie Jensenles...@eskk.nu  wrote:


Hello list.

I'm installing squid on a new 8.2-RELEASE machine.
...
When Googling this problem I see both the use of /var/squid and
/usr/local/squid.
...
I find what I consider conflicting information, often it's quite
dated.

I could not find any advise in the Handbook. I'll be happy to help
making a squid chapter.


It's covered in UPDATING. If you search for squid it's the first
entry. The change was to bring squid more in line with hier(7), at the
expense of putting the default cache on a partition that's typically
undersized.

If you  want the cache on a separate partition, and you have no
good reason to put the logs on it, you might as well mount it in line
with hier.



Thanks!

I've found it. Well, now when all is installed and configured I think 
I'll stick with /usr/local/squid.


In the future I'll follow the instructions from UPDATING.

Would you recommend that I still use a separate partition for /var/squid 
even if it's on a single drive?


/Leslie




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing squid, where should the directories be?

2011-03-09 Thread Leslie Jensen



On 2011-03-09 17:06, Kevin Wilcox wrote:

On Wed, Mar 9, 2011 at 10:27, Leslie Jensenles...@eskk.nu  wrote:


I'm installing squid on a new 8.2-RELEASE machine.


Me too.


I have /usr/local/squid as default directory and has made a separate mount
point.


Same here. As a general rule I like to give squid its own hard drive,
or its own RAID. Giving it a separate partition on a single drive is
useful if you're concerned about filling the disk but that *should* be
controlled by the squid configuration file. Still, it's a good idea.


When it comes to the cache and the logs directory I can see that the squid
installation has created the /var/squid/cache directory.


I've always seen /var/squid as being very Linux-centric.

/usr/local/squid or /usr/local/var/squid makes more sense to me.


When Googling this problem I see both the use of /var/squid and
/usr/local/squid.



Where should it be?


Yep, ultimately it doesn't matter as long as you know where it is, you
document where it is and your settings are correct in
/usr/local/etc/squid/squid.conf.

By default squid will use /var/squid. I always change it on install.


When running the command squid -z to initialize the cache the cache
directory must be there otherwise the command won't work.

How should I set the permissions on /usr/local/squid and the directories
below?


I use 755, squid:squid.


I could not find any advise in the Handbook. I'll be happy to help making a
squid chapter.


I'm writing some internal documentation on deploying pf + squid 2.7.x
+ SNMP on FreeBSD 8.2 routers/firewalls with cacti monitoring, I'll
contribute what I can. I doubt we'll see a section on squid as it's
really a niche area but it's always good to have something on the list
so folks doing a search can find something useful. If it's going to be
a few days before you get into the heavy lifting I'll try to send
something directly or maybe a link to this list this weekend.

You said you had notes from doing a 2.x installation, are you
installing 3.x? . I'm sticking with 2.7.STABLE9 for storeurl support
in some places and considering 3.x in others. 3.2 introduced SMP
support but you can achieve pseudo-SMP support by running multiple
instances on the same machine...just remember each instance has its
own RAM and disk cache, which sort of kills the performance.

kmw



Thanks Kevin.

I'm ok with the configuration. My new install is version 3.1 and I'll 
keep /usr/local/squid for now to avoid the need for reinstalling and to 
make /var/squid big enough and as a separate partiton.


/Leslie

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: HP Pavilion zd8000 Xorg anomaly

2011-03-09 Thread Steven Friedrich
On Wednesday 09 March 2011 12:17:10 pm Adam Vande More wrote:
 On Wed, Mar 9, 2011 at 10:32 AM, Steven Friedrich 
free...@insightbb.comwrote:
  My system had crashed and it caused a directory to los it's dot and
  dot-dot entries. This was a directory that was used for iso-codes and
  everytie I started X,  it would hang.
  
  So I didn't want to format the drive, too extreme.  So I de-installed all
  my
  ports to re-install.  After I got the ports un-installed, I was able to
  fix the filesystem problem with fsck.  I tried beforehand,but it was way
  too many
  fsck issues.
  
  
  Anyway, I have somehow LOST my xorg.conf that WORKED.
  
  It was previously generated by xorg -configure.
 
 You didn't list your video card.
It's a laptop.No card. ATI Technologies Inc M24 1P [Radeon Mobility X600] rev 
0,
 
 Most of the time, you don't need an xorg.conf anymore, just insure the
 proper drivers are installed e.g. video card and X should autodetect and
 use highest available settings.
That's what 'm saying.  It USED to work. NOW it doesn't.
 
 Also sometimes on a bad crash multiple fsck's are required to get UFS back
 in a consistent state.

-- 
System Name: laptop2.StevenFriedrich.org
Window Manager(s):   kde4-4.5.5_1 
X Window System: xorg-7.5.1X.Org X Server 1.7.7
OS version:  FreeBSD 8.2-RELEASE i386 (5.2 MB kernel)
Platform:HP pavilion zd8000 (zd8215us)
CPU: 2.80GHz Intel Pentium 4 (HTT) with 2 GB memory

FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386)
Installed devices:
pcm0: Intel ICH6 (82801FB) (play/rec) default
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: HP Pavilion zd8000 Xorg anomaly

2011-03-09 Thread Chuck Swiger
On Mar 9, 2011, at 8:32 AM, Steven Friedrich wrote:
 Anyway, I have somehow LOST my xorg.conf that WORKED.

Regrettable.

Either take backups of everything you actually care about before you experience 
data loss-- in which case you don't have a problem, since you can easily 
recover your data-- or accept that you are going to be sad when something 
happens and you have no way of getting it back.

Regards,
-- 
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread peter
At 02:23 PM 3/9/2011, Bryan H. wrote:
On Wed, Mar 9, 2011 at 11:21 AM,  pe...@vfemail.net wrote:

 My wife will turn into a pillar of salt if she looks at my Web logs?  :)

 So this is normal behavior?

 The latest entry is:

  188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET 
 http://images.google.com/ HTTP/1.1 200 13134 - -

 This entry says that my Web server handed the person at IP address 
 188.134.62.20 13,134 bytes of something, correct?  What was served?  I don't 
 have any Web pages on my Web site with Google's name in it.

 ---

 At 12:16 PM 3/9/2011, Michael  J. Kearney wrote:
Idk i have similar entries. Its not a proxy .  Remember lot's wife. .. lol

pe...@vfemail.net pe...@vfemail.net wrote:


I was looking at my Web log this morning, and a bunch of nonsensical entries 
like these caught my attention:

124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
HTTP/1.0 301 294 - Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; 
SV1)
123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 
(compatible; MSIE 6.0; Windows NT 5.1; SV1)
115.225.166.2 - - [09/Mar/2011:09:50:04 -0500] GET 
http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible; 
MSIE 6.0; Windows NT 5.1; SV1)
114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; 
MSIE 6.0; Windows NT 5.1; SV1)

Is my FreeBSD box serving as some kind of Web proxy?




-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


 -
 This message sent via VFEmail.net
 http://www.vfemail.net
 $14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Probably a standard 404 Not Found response, if I were to guess.


Some of these odd requests generate 404 page-not-found errors, some generate 
301 redirect messages, but the bizarre result is a 200 response with the 
indication that real data is being distributed.  





-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread Bryan H.
On Wed, Mar 9, 2011 at 11:21 AM,  pe...@vfemail.net wrote:

 My wife will turn into a pillar of salt if she looks at my Web logs?  :)

 So this is normal behavior?

 The latest entry is:

      188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET 
 http://images.google.com/ HTTP/1.1 200 13134 - -

 This entry says that my Web server handed the person at IP address 
 188.134.62.20 13,134 bytes of something, correct?  What was served?  I don't 
 have any Web pages on my Web site with Google's name in it.

 ---

 At 12:16 PM 3/9/2011, Michael  J. Kearney wrote:
Idk i have similar entries. Its not a proxy .  Remember lot's wife. .. lol

pe...@vfemail.net pe...@vfemail.net wrote:


I was looking at my Web log this morning, and a bunch of nonsensical entries 
like these caught my attention:

124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
HTTP/1.0 301 294 - Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; 
SV1)
123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 (compatible; 
MSIE 6.0; Windows NT 5.1; SV1)
115.225.166.2 - - [09/Mar/2011:09:50:04 -0500] GET 
http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)
114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; MSIE 
6.0; Windows NT 5.1; SV1)

Is my FreeBSD box serving as some kind of Web proxy?




-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


 -
 This message sent via VFEmail.net
 http://www.vfemail.net
 $14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Probably a standard 404 Not Found response, if I were to guess.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread Robert Bonomi
 From owner-freebsd-questi...@freebsd.org  Wed Mar  9 10:40:23 2011
 Date: Wed, 09 Mar 2011 09:57:03 -0500
 To: freebsd-questions@freebsd.org
 From: pe...@vfemail.net
 Subject: Nonsensical Web Log Entries


 I was looking at my Web log this morning, and a bunch of nonsensical 
 entries like these caught my attention:

 124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
 HTTP/1.0 301 294 - Mozilla/4.0 (compatible;  MSIE 6.0; Windows NT 5.1; 
 SV1)
 123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
 http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 (compatible; 
 MSIE 6.0; Windows NT 5.1; SV1) 
 115.225.166.2 -  - [09/Mar/2011:09:50:04 -0500] GET 
 http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
 HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible;  
 MSIE 6.0; Windows NT 5.1; SV1)
 114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
 http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
 http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; MSIE 
 6.0; Windows NT 5.1; SV1)

 Is my FreeBSD box serving as some kind of Web proxy?

Your box is _not_ doing the proxying.  that's why it's signalling errors
for those requests.

The perpetrators are _hoping_ you are running a misconfigured proxying front-
end.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread peter
At 03:06 PM 3/9/2011, Robert Bonomi wrote:
 From owner-freebsd-questi...@freebsd.org  Wed Mar  9 10:40:23 2011
 Date: Wed, 09 Mar 2011 09:57:03 -0500
 To: freebsd-questions@freebsd.org
 From: pe...@vfemail.net
 Subject: Nonsensical Web Log Entries


 I was looking at my Web log this morning, and a bunch of nonsensical 
 entries like these caught my attention:

 124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
 HTTP/1.0 301 294 - Mozilla/4.0 (compatible;  MSIE 6.0; Windows NT 5.1; 
 SV1)
 123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
 http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 
 (compatible; MSIE 6.0; Windows NT 5.1; SV1) 
 115.225.166.2 -  - [09/Mar/2011:09:50:04 -0500] GET 
 http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
 HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible;  
 MSIE 6.0; Windows NT 5.1; SV1)
 114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
 http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
 http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; 
 MSIE 6.0; Windows NT 5.1; SV1)

 Is my FreeBSD box serving as some kind of Web proxy?

Your box is _not_ doing the proxying.  that's why it's signalling errors
for those requests.

The perpetrators are _hoping_ you are running a misconfigured proxying front-
end.

Does this entry change your conclusion:

 188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET 
http://images.google.com/ HTTP/1.1 200 13134 - -




-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread peter
At 03:02 PM 3/9/2011, pe...@vfemail.net wrote:
At 03:06 PM 3/9/2011, Robert Bonomi wrote:
 From owner-freebsd-questi...@freebsd.org  Wed Mar  9 10:40:23 2011
 Date: Wed, 09 Mar 2011 09:57:03 -0500
 To: freebsd-questions@freebsd.org
 From: pe...@vfemail.net
 Subject: Nonsensical Web Log Entries


 I was looking at my Web log this morning, and a bunch of nonsensical 
 entries like these caught my attention:

 124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
 HTTP/1.0 301 294 - Mozilla/4.0 (compatible;  MSIE 6.0; Windows NT 5.1; 
 SV1)
 123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
 http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 
 (compatible; MSIE 6.0; Windows NT 5.1; SV1) 
 115.225.166.2 -  - [09/Mar/2011:09:50:04 -0500] GET 
 http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
 HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible;  
 MSIE 6.0; Windows NT 5.1; SV1)
 114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
 http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
 http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; 
 MSIE 6.0; Windows NT 5.1; SV1)

 Is my FreeBSD box serving as some kind of Web proxy?

Your box is _not_ doing the proxying.  that's why it's signalling errors
for those requests.

The perpetrators are _hoping_ you are running a misconfigured proxying front-
end.

Does this entry change your conclusion:

 188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET 
 http://images.google.com/ HTTP/1.1 200 13134 - -


Here's another entry that's too bizarre for words:

 218.172.209.123 - - [09/Mar/2011:15:38:29 -0500] \x16\x03\x01 200 13107 
- -



-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread Michael Ross

Am 09.03.2011, 21:40 Uhr, schrieb pe...@vfemail.net:



Does this entry change your conclusion:

188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET  
http://images.google.com/ HTTP/1.1 200 13134 - -




If I do:

%telnet localhost 80

and enter:

GET / HTTP/1.1
Host: images.google.com

I get this in my logfile:

	127.0.0.1 images.google.com - [09/Mar/2011:22:06:48 +0100] GET /  
HTTP/1.1 200 2257 - -


My vhost-Setup serves the default host in the requested host is unknown,
thus 200 OK.



Here's another entry that's too bizarre for words:

 218.172.209.123 - - [09/Mar/2011:15:38:29 -0500] \x16\x03\x01 200  
13107 - -




Talking ssl to a non-ssl vhost. Google that one.



Regards,
Michael
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Apple FreeBSD relationship

2011-03-09 Thread Nerius Landys
This is not a technical question.

Basically I have some cash sitting around.  I'm thinking of investing
part of it with a company that I believe in.  Apple came to mind.  You
could say that I'd like to judge Apple's moral character before
investing money with them.  Does anyone know how Apple reciprocates to
FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I am
not seeing Apple's name on this page:
http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
other ways in which Apple might be reciprocating?

- Nerius
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread Chip Camden
Quoth Nerius Landys on Wednesday, 09 March 2011:
 This is not a technical question.
 
 Basically I have some cash sitting around.  I'm thinking of investing
 part of it with a company that I believe in.  Apple came to mind.  You
 could say that I'd like to judge Apple's moral character before
 investing money with them.  Does anyone know how Apple reciprocates to
 FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I am
 not seeing Apple's name on this page:
 http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
 other ways in which Apple might be reciprocating?
 
 - Nerius
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Better yet, just send the money to the FreeBSD Foundation.

-- 
Sterling (Chip) Camden | sterl...@camdensoftware.com | 2048D/3A978E4F
http://chipsquips.com  | http://camdensoftware.com   | http://chipstips.com


pgpdDljrTcbqO.pgp
Description: PGP signature


Re: Apple FreeBSD relationship

2011-03-09 Thread Kristofer M White
You could donate directly to the FreeBSD foundation, I'm sure... :)

Nerius Landys nlan...@gmail.com wrote:

This is not a technical question.

Basically I have some cash sitting around.  I'm thinking of investing
part of it with a company that I believe in.  Apple came to mind.  You
could say that I'd like to judge Apple's moral character before
investing money with them.  Does anyone know how Apple reciprocates to
FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I am
not seeing Apple's name on this page:
http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
other ways in which Apple might be reciprocating?

- Nerius
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Apple FreeBSD relationship

2011-03-09 Thread Sander Remie
The core of apple's os is built on top of darwin which is composed of BSD
and others http://en.wikipedia.org/wiki/Darwin_(operating_system)

But everything you see in apple's os (that smooth UI) is not BSD, only the
underlying core is. Better do some research of your own.

On Wed, Mar 9, 2011 at 11:11 PM, Chip Camden sterl...@camdensoftware.comwrote:

 Quoth Nerius Landys on Wednesday, 09 March 2011:
  This is not a technical question.
 
  Basically I have some cash sitting around.  I'm thinking of investing
  part of it with a company that I believe in.  Apple came to mind.  You
  could say that I'd like to judge Apple's moral character before
  investing money with them.  Does anyone know how Apple reciprocates to
  FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I am
  not seeing Apple's name on this page:
  http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
  other ways in which Apple might be reciprocating?
 
  - Nerius
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
 freebsd-questions-unsubscr...@freebsd.org

 Better yet, just send the money to the FreeBSD Foundation.

 --
 Sterling (Chip) Camden | sterl...@camdensoftware.com | 2048D/3A978E4F
 http://chipsquips.com  | http://camdensoftware.com   |
 http://chipstips.com




-- 
See my Google profile here http://www.google.com/profiles/sande.r.emie
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


RE: Nonsensical Web Log Entries

2011-03-09 Thread Michael J. Kearney
I don't know if I got through the last time but you ... could... add to but not 
take away from your operational matrices by writing it to a file. Using tcpdump 
to anylize the traffic on your webserver, It might clear up some of the 
confusion.

tcpdump -i fxp0 -nN -vvv -xX -s 1500 port 80  fale

You can also read some of the output data.

Eg, here are some of my logs:

168.216.29.89 - - [09/Mar/2011:08:49:15 -0500] GET 
/index.php?domain=fixitbottld=comlookup=%3E%3E HTTP/1.1 200 5413 - Mozilla
/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)

The query is 8,223 bytes and logged as 5,413 bytes ?

The only logical concusion is that the header data is false. Unfortunately the 
RAW data does not reveal anything more than that. Maybe you will have better 
luck .. and p.s. I was hanging out with my android earlier, I hope this helps.


-Original Message-
From: owner-freebsd-questi...@freebsd.org 
[mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of pe...@vfemail.net
Sent: Wednesday, March 09, 2011 3:40 PM
To: freebsd-questions@freebsd.org
Subject: Re: Nonsensical Web Log Entries

At 03:02 PM 3/9/2011, pe...@vfemail.net wrote:
At 03:06 PM 3/9/2011, Robert Bonomi wrote:
 From owner-freebsd-questi...@freebsd.org  Wed Mar  9 10:40:23 2011
 Date: Wed, 09 Mar 2011 09:57:03 -0500
 To: freebsd-questions@freebsd.org
 From: pe...@vfemail.net
 Subject: Nonsensical Web Log Entries


 I was looking at my Web log this morning, and a bunch of nonsensical
 entries like these caught my attention:

 124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET http://www.yahoo.com/ 
 HTTP/1.0 301 294 - Mozilla/4.0 (compatible;  MSIE 6.0; Windows NT 5.1; 
 SV1)
 123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
 http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 
 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
 115.225.166.2 -  - [09/Mar/2011:09:50:04 -0500] GET 
 http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
 HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible;  
 MSIE 6.0; Windows NT 5.1; SV1)
 114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
 http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
 http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; 
 MSIE 6.0; Windows NT 5.1; SV1)

 Is my FreeBSD box serving as some kind of Web proxy?

Your box is _not_ doing the proxying.  that's why it's signalling errors
for those requests.

The perpetrators are _hoping_ you are running a misconfigured proxying front-
end.

Does this entry change your conclusion:

 188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET 
 http://images.google.com/ HTTP/1.1 200 13134 - -


Here's another entry that's too bizarre for words:

 218.172.209.123 - - [09/Mar/2011:15:38:29 -0500] \x16\x03\x01 200 13107 
- -



-
This message sent via VFEmail.net
http://www.vfemail.net
$14.95 Lifetime accounts!  15GB disk!  No bandwidth quotas!

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread Chad Leigh -- Shire.Net LLC

On Mar 9, 2011, at 3:00 PM, Nerius Landys wrote:

 This is not a technical question.
 
 Basically I have some cash sitting around.  I'm thinking of investing
 part of it with a company that I believe in.  Apple came to mind.  You
 could say that I'd like to judge Apple's moral character before
 investing money with them.  Does anyone know how Apple reciprocates to
 FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I am
 not seeing Apple's name on this page:
 http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
 other ways in which Apple might be reciprocating?


There are some/a few/several people working at Apple that play or used to play 
a large role in FreeBSD.  So they were basically paying these people's salaries 
for their day job which allowed them to be active in FreeBSD.  Also, there is 
some code put-back I believe.

Most of what Apple used from FreeBSD was the userland and the kernel interface 
so that the Darwin kernel could be used with FreeBSD userland utilities that 
affect the kernel etc.Mac OS X uses a totally different underlying kernel 
and architecture but made a FreeBSD like kernel interface in order to be able 
to use certain sets of FreeBSD stuff.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: HP Pavilion zd8000 Xorg anomaly

2011-03-09 Thread Steven Friedrich
On Wednesday 09 March 2011 13:40:38 Steven Friedrich wrote:
 On Wednesday 09 March 2011 12:17:10 pm Adam Vande More wrote:
  On Wed, Mar 9, 2011 at 10:32 AM, Steven Friedrich
 
 free...@insightbb.comwrote:
   My system had crashed and it caused a directory to los it's dot and
   dot-dot entries. This was a directory that was used for iso-codes and
   everytie I started X,  it would hang.
   
   So I didn't want to format the drive, too extreme.  So I de-installed
   all my
   ports to re-install.  After I got the ports un-installed, I was able to
   fix the filesystem problem with fsck.  I tried beforehand,but it was
   way too many
   fsck issues.
   
   
   Anyway, I have somehow LOST my xorg.conf that WORKED.
   
   It was previously generated by xorg -configure.
  
  You didn't list your video card.
 
 It's a laptop.No card. ATI Technologies Inc M24 1P [Radeon Mobility X600]
 rev 0,
 
  Most of the time, you don't need an xorg.conf anymore, just insure the
  proper drivers are installed e.g. video card and X should autodetect and
  use highest available settings.
 
 That's what 'm saying.  It USED to work. NOW it doesn't.
 
  Also sometimes on a bad crash multiple fsck's are required to get UFS
  back in a consistent state.

Someone submitted a fix.  THANKS.

I updated and rebuilt xf86-video-ati and it WORKS GREAT.

Now it doesn't MATTER that I lost my xorg.conf.  The -configure works again.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread Frank Shute
On Wed, Mar 09, 2011 at 02:00:37PM -0800, Nerius Landys wrote:

 This is not a technical question.
 
 Basically I have some cash sitting around.  I'm thinking of investing
 part of it with a company that I believe in.  Apple came to mind.  

Don't invest your cash in a company that has reached it's peak and is
on it's way down after it's charismatic leader dies sooner rather than
later.

2nd biggest company by cap after Exxon?! Can you say overpriced?


 You could say that I'd like to judge Apple's moral character before
 investing money with them.  Does anyone know how Apple reciprocates
 to FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I
 am not seeing Apple's name on this page:
 http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
 other ways in which Apple might be reciprocating?

Apple produces the clusterfuck that is CUPS, I believe. They do also
produce good stuff that is bsd licensed like GCD. But even if they
produce magical pixie dust they're still overpriced.


 
 - Nerius

Regards,

-- 

 Frank

 Contact info: http://www.shute.org.uk/misc/contact.html




pgpDbpngnaqYm.pgp
Description: PGP signature


Re: Apple FreeBSD relationship

2011-03-09 Thread Milo Hyson
Guess that depends on how one calculates the price.

- Milo Hyson
Chief Scientist
CyberLife Labs, Inc.

On Mar 9, 2011, at 3:31 PM, Frank Shute wrote:

 On Wed, Mar 09, 2011 at 02:00:37PM -0800, Nerius Landys wrote:
 
 But even if they produce magical pixie dust they're still overpriced.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread David Kelly

On Mar 9, 2011, at 5:31 PM, Frank Shute wrote:

 Don't invest your cash in a company that has reached it's peak and is
 on it's way down after it's charismatic leader dies sooner rather than
 later.


They said that at $50/share.
At $100.
At $200.
At $300.
And continue to say it at $350.

There are a lot of smart people at Apple who have had nothing better to do the 
past 10 years than to study and learn from Steve Jobs.

I'm waiting for $500.

--
David Kelly N4HHE, dke...@hiwaay.net

Whom computers would destroy, they must first drive mad.



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread David Kelly

On Mar 9, 2011, at 4:50 PM, Chad Leigh -- Shire.Net LLC wrote:

 There are some/a few/several people working at Apple that play or used to 
 play a large role in FreeBSD.  So they were basically paying these people's 
 salaries for their day job which allowed them to be active in FreeBSD.  Also, 
 there is some code put-back I believe.

Of particular note was the contributions of patches to fix NFS race conditions. 
Plus tools to stress and duplicate those conditions.

 Most of what Apple used from FreeBSD was the userland and the kernel 
 interface so that the Darwin kernel could be used with FreeBSD userland 
 utilities that affect the kernel etc.Mac OS X uses a totally different 
 underlying kernel and architecture but made a FreeBSD like kernel interface 
 in order to be able to use certain sets of FreeBSD stuff.

Believe a number of FreeBSD drivers made it into MacOS X. Don't know of any 
Apple product which used Intel Etherexpress Pro chipsets but I popped a PCI 
card in a Mac one day and it magically worked as if it had always been there.

--
David Kelly N4HHE, dke...@hiwaay.net

Whom computers would destroy, they must first drive mad.



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


using dovecot, where is ICOMING mail stored?

2011-03-09 Thread Gary Kline

Does anybody know about this obscure stuff?

In late DEcember, 2007 my FreeBSD server started having serious
problems that were over my head.  I asked this list for help but no
one could help me; long-story-short, a guy from the DFW area, a
self-taught net-wizard came to my rescue.  Via the yahoo IM
application and thanks to a fellow here with two strong arms, this
network guy set me up with a pfSense firewall (on an old Kayak), and
fixed/changed stuff on my server.  He  installed some mail tool
called dovecot and deployed that on my server.  At the time I was
running FreeBSD everywhere except one of my four other computers.
He also found something to let me still use mutt.  I prefer CLI and
text--8859-1 or ASCII.  Hand on keyboard; my should got destroyed
many years ago so the less motion between keyboard and mouse, the
better.

This morning I found the 15 or 20 messages in my incoming mail queue
gone.  Vanished.  ---I do of course backup stuff in my ~/Maildir on
my server.  I checked my bup.  Nothing.  Does anybody know what
this dovecot does with its incoming mail files?  I only do one daily
backup that it ccron'd for 03:00  [[along with a bunch of other
critical directories, of course]]  

If I knew where else to tar -cyvf whatever I would do that,
especially with mail.  Particularly things that I consider
non-urgent.   

thanks for any clues!

gary




-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
   Journey Toward the Dawn, E-Book: http://www.thought.org
  The 7.98a release of Jottings: http://jottings.thought.org

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread Reed Loefgren

On 03/09/11 16:31, Frank Shute wrote:

On Wed, Mar 09, 2011 at 02:00:37PM -0800, Nerius Landys wrote:

This is not a technical question.

Basically I have some cash sitting around.  I'm thinking of investing
part of it with a company that I believe in.  Apple came to mind.

Don't invest your cash in a company that has reached it's peak and is
on it's way down after it's charismatic leader dies sooner rather than
later.

2nd biggest company by cap after Exxon?! Can you say overpriced?



You could say that I'd like to judge Apple's moral character before
investing money with them.  Does anyone know how Apple reciprocates
to FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I
am not seeing Apple's name on this page:
http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
other ways in which Apple might be reciprocating?

Apple produces the clusterfuck that is CUPS, I believe. They do also
produce good stuff that is bsd licensed like GCD. But even if they
produce magical pixie dust they're still overpriced.



- Nerius

Regards,

At US$591.77 and little product in sight, I'd say nerd paramour Google 
is overpriced too. They're *all* defacto overpriced once one takes into 
consideration the price is set in large part by the herd mentality. 
Perhaps fortunately, this works for the underpriced stocks too. The 
trick is telling which is which. Always has been, unless you're Goldman 
Sachs.


Apple bought CUPS for something like 20 million at some point in the not 
too distant past. It works great for me with an HP3600n and an HP 
laserjet4 but, if not for the 3600, I'd be on lpd again in a heartbeat. 
If you think CUPS is a clusterfuck now you should check out the sundry 
linux lists pre-sale date. The noobs were tearing their hair out. It's 
come a long way.


The OP can invest where they'd like but like others I'd recommend a 
small gift to the FreeBSD Foundation. I make one every year at tax time. 
Feels good...


Regards,

r
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


any friendly folk willing to teach an old foggie how to configure kde/ gnome on freebsd?

2011-03-09 Thread Foo JH

Hi guys,

I know the steps are documented on the Handbook and all. I've tried to 
read, follow, and re-read the steps, but I'm not still getting any 
popular window manager up and running on my FreeBSD servers. Meanwhile 
new hires are seduced by the comes-with-it windows manager via Ubuntu 
Desktop (yes, they abstained from the server edition because they really 
wanted the GUI).


If there is a kind soul who is willing to guide me through via IM (MSN/ 
Yahoo/ Skype), I'd much appreciate it. Please don't flame me for this 
email!


Thanks.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: using dovecot, where is ICOMING mail stored?

2011-03-09 Thread Foo JH

On 3/10/2011 9:23 AM, Gary Kline wrote:

Does anybody know about this obscure stuff?
Disclaimer: I don't really know much about dovecot, except that it's a 
much better IMAP daemon than courier - I don't think dovecot handles 
SMTP: in other words it does not handle incoming mails.


What services did you enable on dovecot?


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread mikel king

On Mar 10, 2011, at 6:00 AM, Nerius Landys wrote:

 This is not a technical question.
 
 Basically I have some cash sitting around.  I'm thinking of investing
 part of it with a company that I believe in.  Apple came to mind.  You
 could say that I'd like to judge Apple's moral character before
 investing money with them.  Does anyone know how Apple reciprocates to
 FreeBSD?  After all a lot of MacOSX is borrowed from FreeBSD.  I am
 not seeing Apple's name on this page:
 http://www.freebsdfoundation.org/donate/sponsors.shtml .  Are there
 other ways in which Apple might be reciprocating?
 
 - Nerius

Apple has had a mixed relationship giving back to the BSD community. They did 
hire several developers over time and do have several projects that they have 
open sourced. Launchd  iCal server are two of the bigger ones. I personally 
feel that they could do better and certainly could have done things differently 
in a way that would have helped the community and built an even stronger 
product base but let's face it they sure aren't listening to me.

In recent years their marketing as gone to some lengths to scrub the references 
to BSD  UNIX from the brochures. It's like they are ashamed of their roots, 
again personally I think they hired some new anti-geeks that just don't get it.

I would suggest you look at spreading your investment around to several BSD 
supportive companies.  Obviously Apple and Juniper pop up to the top of the 
list. I would have offered Isilon but they have been assimilated into the beast 
know as EMC so that may not be an option.

At the end of the day they are a company, and companies must make money in 
order to survive. Therefore, do not get too attached to their BSD rhetoric 
because the winds of business can change direction at any moment.

On a side note: I would love to find a comprehensive list of both public and 
private companies that are BSD supportive.

Regards,
Mikel King
BSD News Network
http://bsdnews.net
skype: mikel.king
http://twitter.com/mikelking

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


IBM ServeRAID M5015 and ServeRAID-MR10i

2011-03-09 Thread lyd mc
Hi guys,

We are planning to buy new servers. I would like to ask if this RAID 
controllers already supported by FreeBSD.

Does anyone here already use it in their production servers?

Thanks guys,

Alydiomc



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Apple FreeBSD relationship

2011-03-09 Thread Chuck Swiger
Hi--

#include std/disclaimer.h

It wouldn't be considered appropriate for Apple employees or contractors (well, 
outside of the folks working in investor relations, perhaps) to try to persuade 
someone to invest in a particular company because of which open source projects 
Apple might be contributing towards.  In another context, someone from Apple 
who was familiar with those contributions might be free to discuss them, but 
they would generally be expected to not identify their affiliation with Apple 
to avoid unduly influencing other people or creating a real or perceived 
conflict of interest.

Someone who was looking for more information about this would find the investor 
relations page, corporate governance section, and the Business Conduct Policy 
documents informative, which are all publicly documented here:

  http://www.apple.com/investor/
  http://phx.corporate-ir.net/phoenix.zhtml?c=107357p=irol-govHighlights
  
http://phx.corporate-ir.net/External.File?item=UGFyZW50SUQ9NTQ1NTF8Q2hpbGRJRD0tMXxUeXBlPTM=t=1
   (PDF warning)

Regards,
-- 
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


IBM ServeRAID M5015 and ServeRAID-MR10i

2011-03-09 Thread lyd mc
Hi guys,

We are planning to buy new servers. I would like to ask if this RAID 
controllers already supported by FreeBSD.

Does anyone here already use it in their production servers?

Thanks guys,

Alydiomc




  
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: any friendly folk willing to teach an old foggie how to configure kde/ gnome on freebsd?

2011-03-09 Thread Juan C. Valido
I'm an old foggie also and a lifetime Windows guy and I did a lot of
research and a lot of trial and error until I found Dan's blog. God
Bless the Man! Without his blog I would not have this server up. And yes
it's running gnome. https://www.dan.me.uk/blog/category/freebsd/

On Thu, 2011-03-10 at 09:42 +0800, Foo JH wrote:
 Hi guys,
 
 I know the steps are documented on the Handbook and all. I've tried to 
 read, follow, and re-read the steps, but I'm not still getting any 
 popular window manager up and running on my FreeBSD servers. Meanwhile 
 new hires are seduced by the comes-with-it windows manager via Ubuntu 
 Desktop (yes, they abstained from the server edition because they really 
 wanted the GUI).
 
 If there is a kind soul who is willing to guide me through via IM (MSN/ 
 Yahoo/ Skype), I'd much appreciate it. Please don't flame me for this 
 email!
 
 Thanks.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Nonsensical Web Log Entries

2011-03-09 Thread Ian Smith
In freebsd-questions Digest, Vol 353, Issue 5, Message: 21
On Wed, 09 Mar 2011 15:02:57 -0500 pe...@vfemail.net wrote:
  At 03:06 PM 3/9/2011, Robert Bonomi wrote:
  
   I was looking at my Web log this morning, and a bunch of nonsensical 
   entries like these caught my attention:
  
   124.226.181.80 - - [09/Mar/2011:09:49:58 -0500] GET 
   http://www.yahoo.com/ HTTP/1.0 301 294 - Mozilla/4.0 (compatible;  
   MSIE 6.0; Windows NT 5.1; SV1)
   123.10.97.102 - - [09/Mar/2011:09:50:01 -0500] GET 
   http://makeabank.com/faq.cgi HTTP/1.0 404 3485 - Mozilla/4.0 
   (compatible; MSIE 6.0; Windows NT 5.1; SV1) 
   115.225.166.2 -  - [09/Mar/2011:09:50:04 -0500] GET 
   http://join1.winhundred.com/affiliate/link.php?ref=35840productid=7178 
   HTTP/1.0 404 3485 http://www.wingclips.com/; Mozilla/4.0 (compatible; 
MSIE 6.0; Windows NT 5.1; SV1)
   114.97.197.184 - - [09/Mar/2011:09:50:15 -0500] GET 
   http://www.tosunmail.com/proxyheader.php HTTP/1.0 301 313 
   http://www.cashsoldier.com/VerifyerLevel.php; Mozilla/4.0 (compatible; 
   MSIE 6.0; Windows NT 5.1; SV1)
  
   Is my FreeBSD box serving as some kind of Web proxy?
  
  Your box is _not_ doing the proxying.  that's why it's signalling errors
  for those requests.
  
  The perpetrators are _hoping_ you are running a misconfigured proxying 
  front-
  end.
  
  Does this entry change your conclusion:
  
   188.134.62.20 - - [09/Mar/2011:12:15:04 -0500] GET 
  http://images.google.com/ HTTP/1.1 200 13134 - -

No, Robert is right.

Note that the first four you listed were all HTTP/1.0 requests.  The 
ones with anything after the last '/' are 404 (page not found) except 
the last.  Not sure about that 301, do you have a proxyheader.php?

The more recent one is HTTP/1.1 with nothing after the last / so the 
http://images.google.com is ignored, and I expect you may find that 
your home page (ie requests for just '/') serve up 13134 bytes?

Ar least that's what happens here with apache 1.3; here's a few examples 
from a seldom-accessed vhost where lots of requests are bogus, usually 
appearing across multiple vhosts (ie, from a sweep over IP addresses)

24.106.193.92 - - [01/Feb/2011:23:05:21 +1100] GET http://www.ya.ru:80/ 
HTTP/1.0 200 2327 - Mozilla/4.0 (compatible; Synapse)

(this one fetched the home page, see below)
 
83.20.184.159 - - [02/Feb/2011:10:43:04 +1100] GET / HTTP/1.1 403 287 - -

(requests w/ no referer (sic) and no browser (- -) are denied here)

217.174.232.11 - - [03/Feb/2011:20:31:16 +1100] GET / HTTP/1.1 200 2327 - 
Opera/9.00 (Windows NT 5.1; U; en)
88.250.12.104 - - [03/Feb/2011:20:36:45 +1100] GET / HTTP/1.1 200 2327 - 
Opera/9.00 (Windows NT 5.1; U; en)

(accepted requests, this static / page always serves 2327 bytes)

109.61.188.165 - - [05/Feb/2011:20:46:04 +1100] GET http://www.yahoo.com/ 
HTTP/1.1 403 287 - Mozilla/4.0 (compatible; MSIE 4.01; Windows 95)
84.127.236.75 - - [06/Feb/2011:10:25:53 +1100] GET http://www.ebay.com/ 
HTTP/1.1 403 287 - Mozilla/4.0 (compatible; MSIE 4.01; Windows 95)

(forbidden browser strings /or IP addresses in $apachedir/access.conf)

91.195.136.10 - - [07/Feb/2011:02:33:55 +1100] GET http://images.google.com/ 
HTTP/1.1 200 2327 - Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; 
WOW64; .NET CLR 1.1.4322; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 
3.0.30729; .NET4.0C; .NET4.0E)

Oh look, one just like yours, but with an acceptable browser string .. 
so it got the homepage, attempted proxying request being just ignored.

cheers, Ian
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: any friendly folk willing to teach an old foggie how to configure kde/ gnome on freebsd?

2011-03-09 Thread Bas Smeelen
On 03/10/2011 04:33 AM, Juan C. Valido wrote:
 I'm an old foggie also and a lifetime Windows guy and I did a lot of
 research and a lot of trial and error until I found Dan's blog. God
 Bless the Man! Without his blog I would not have this server up. And yes
 it's running gnome. https://www.dan.me.uk/blog/category/freebsd/

 On Thu, 2011-03-10 at 09:42 +0800, Foo JH wrote:
 Hi guys,

 I know the steps are documented on the Handbook and all. I've tried to 
 read, follow, and re-read the steps, but I'm not still getting any 
 popular window manager up and running on my FreeBSD servers. Meanwhile 
 new hires are seduced by the comes-with-it windows manager via Ubuntu 
 Desktop (yes, they abstained from the server edition because they really 
 wanted the GUI).
Hi
Why would you want a window manager on your servers?
Do you all work directly on the consoles?
Do you have window managers/desktop environments on the workstations and
access your servers remotely?
It's not very hard, I would say it's easier, to configure your servers and
services from the commandline with ssh.
Or if you really want something graphical then webmin would be fine also.
This is what I tend to roll-out for other
(graphical oriented) administrators and with some custom commands configured
this works great for them.


DISCLAIMER: This e-mail is for the intended recipient(s) only. Access, 
disclosure, copying,
distribution or reliance on any of it by anyone else is prohibited. If you have 
received it
by mistake please let us know by reply and then delete it from your system.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org