Routing Networks

2004-01-14 Thread Nicolás de Bari Embríz G . R .

Hi all, I need some help routing or making Nat on a LAN.

I have something like this:


  I N T E R N E T
 -
^ ^
| |
fxp0  public IP   public IP
| |
 FreeBSD server  LINUX server
| |
dc0   192.168.10.1|
dc1   192.168.1.1 ^   192.168.1.3
^ |   ^
| |   |
| |   |
   
  |   Switch/Hub   |
   
   |   |
-- -
   |  LAN  A  |   | LAN  B  |
   | 192.168.10.2-254 |   | 192.168.1.4-100 |
-- -

I have running a FreeBSD server as a gateway and DHCP, the server share
the Internet to all the computers on LAN A (192.168.10.0/24).

The server have 3 network cards:

fxp0 is public IP.
dc0  is the gateway for the LAN A 192.168.10.1.
dc1  has IP 192.168.1.1 ( need help with this ).


Right now i am just using fxp0 and dc0 so any computer on the LAN A
192.168.10.2-254 can have Internet, my ipnat.rules file looks like this:

--
map fxp0 192.168.10.1/24 - 0/32 portmap tcp/udp auto
map fxp0 192.168.10.1/24 - 0/32
--

until that point everything just work OK.

There is another network, I will call it LAN B, this LAN make the same
thing that i am doing with the FreeBSD Server, but instead it uses LINUX,
the m achine have 2 network cars.

eth0 has a public IP.
eth1 is the gateway for the LAN B 192.168.1.3


Both networks are connected to the same switch/hub, but now i need that
the computers of LAN A can see ping computers on LAN B.

If I configure the third nick dc1  on the FreeBSD server to have an IP
on the range of LAN B for example with ip 192.168.1.1, then I can see all
the computers from both LAN's, I can ping, telnet, ssh etc. to both
192.168.10.X and 192.168.1.X. networks standing on the FreeBSD server.


What i want to do is that a computer on LAN A with an IP on the range of 
192.168.10.2-254 can ping, telnet, ssh, etc. to a computer on LAN B
192.168.1.X.

How can i solve this problem, is this is a route or Nat problem ?

There is one more issue, I can't touch the LINUX SERVER I can just be a
client or join the LAN by configure a nic with a IP on the range of
192.168.1.0/24.


I have been trying to fix this with static routes but i am not having luck.


Any help will be apreciated.


regards.


-- 
[EMAIL PROTECTED]
key ID 1EF56FDC
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


modem problem

2004-01-14 Thread service
uname -a

FreeBSD fixer3.fixer.com 5.1-Release : FreeBSD 5.1 - Release #0: Tue Jan 13 16:49:20

GMT 2004 root@/usr/src/sys/i386/compile/VILLATV i386

Modem problem.

I have a P3-500 computer and a USR Robotics Hayes U5686 modem. The modem works perfect 
on Win 98, Win XP and Redhat9, but on FreeBSD its works a little strange. I have 
FreeBSD 4.7, 4.8 and 5.1. I plug the moden into a sio port, I type ppp and term, then 
AT, OK comes back and I type ATD3039514014, the modem dials and connects (I enter user 
name and passwork), the small ppp's grow to large PPPs and I am connected. Even though 
I am connected, no data flows(ever). Thats the problem. Theres no link between the 
modem and the computer. I thought of using ifconfig to add a route. After thinking for 
a while, I couldn't figure out 'how to'.

I tried using 'tip cuaa0'. It did work, but only once(I don't know why). I do have 
/etc/remote configured to work with tip. Info I have says it's partially compatible 
for hayes. I tried it both ways, with at=hayes and without it. The results are the 
same.

I made sure the file LCK under lock existed and just to be sure, I chmod-ed 777 LCK 
and lock, to be sure it was authorized. Without the lock file, it came back saying 
/var/spool/lock/LCK__file does not exist, then crashed.

On FreeBSD 4.8, it says: 

%tip cuaa0

uu_lock: creat error: Permision denied

all ports busy

On FreeBSD 5.1, it says:

%tip cuaa0

/dev/cuaa0: Permision Denied

link down

I have been fighting this problem for 2 weeks. I re-install FreeBSD several times 
(yes, I rebuilt the kernel each time).

For any help, thanks in advance

Bruce

[EMAIL PROTECTED] 


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


can't re-use a leaf (if_tun_debug)

2004-01-14 Thread Antoine Jacoutot
Hi :)

I just upgraded from 5.1-CURRENT to 5.2-RELEASE today, but I still have the 
same problem I was having before.
When booting the box, I get the following error:

module_register: module if_tun already exists!
Module if_tun failed to register: 17
can't re-use a leaf (if_tun_debug)!

It looks like FreeBSD wants to load the if_tun module but I already have 
device tun in my kernel config file.
I deleted /etc/rc.d/* then did a mergemaster -i but it did not change 
anything.

Do you have any idea how I could fix this ?
Thanks in advance.
Regards,

Antoine

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NOQUEUE: SYSERR (root): host localhost unknown ?

2004-01-14 Thread Matthew Seaman
On Tue, Jan 13, 2004 at 09:08:32PM -0700, Rommel B. Ikeda wrote:
 Hi,
 
 I do not know if the Subject Name was the right one for it...because I really do 
 not know what is going on...
 
 I have been seeing this message...
 
  554.5.3.0 host localhost unknown: Invalid Argument
  Jan IBM-R40e sm-mta [417] NOQUEUE:SYSERR (root)localhost unknown: Invalid 
 Argument

Sendmail is trying to convert the hostname 'localhost' into an IP
number.  Not being able to do that is not good.

You should have at least an entry for localhost in your /etc/hosts:

127.0.0.1   localhost

You might also have the IPv6 equivalent:

::1 localhost

and having the same information available from the DNS is quite handy:

% host localhost.
localhost has address 127.0.0.1
localhost has address ::1
localhost mail is handled (pri=5) by localhost

Note: you will also tend to have entries for
'localhost.your.domain.com' -- these are fine, but not as important as
the straight 'localhost' entries.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


rarp support on bsd ?

2004-01-14 Thread Malik Blent
hello 

i use freebsd5.1.
i want to find out the computers whose  ip addresses with their mac addresses. that is 
i run rarp on bsd.
How can i run rarp on Freebsd5.1 ?

thanks
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: modem problem

2004-01-14 Thread Elijah Plunkett
Hi Bruce!

try typing in add default HISADDR at the PPP prompt (as in once it 
is authenticated and connected).

I couldn't get stuff to work until i typed this in, then data flowed 
sweetly.

HTH
Elijah. :)
[EMAIL PROTECTED] wrote:

uname -a

FreeBSD fixer3.fixer.com 5.1-Release : FreeBSD 5.1 - Release #0: Tue Jan 13 16:49:20

GMT 2004 root@/usr/src/sys/i386/compile/VILLATV i386

Modem problem.

I have a P3-500 computer and a USR Robotics Hayes U5686 modem. The modem works perfect on Win 98, Win XP and Redhat9, but on FreeBSD its works a little strange. I have FreeBSD 4.7, 4.8 and 5.1. I plug the moden into a sio port, I type ppp and term, then AT, OK comes back and I type ATD3039514014, the modem dials and connects (I enter user name and passwork), the small ppp's grow to large PPPs and I am connected. Even though I am connected, no data flows(ever). Thats the problem. Theres no link between the modem and the computer. I thought of using ifconfig to add a route. After thinking for a while, I couldn't figure out 'how to'.

I tried using 'tip cuaa0'. It did work, but only once(I don't know why). I do have /etc/remote configured to work with tip. Info I have says it's partially compatible for hayes. I tried it both ways, with at=hayes and without it. The results are the same.

I made sure the file LCK under lock existed and just to be sure, I chmod-ed 777 LCK and lock, to be sure it was authorized. Without the lock file, it came back saying /var/spool/lock/LCK__file does not exist, then crashed.

On FreeBSD 4.8, it says: 

%tip cuaa0

uu_lock: creat error: Permision denied

all ports busy

On FreeBSD 5.1, it says:

%tip cuaa0

/dev/cuaa0: Permision Denied

link down

I have been fighting this problem for 2 weeks. I re-install FreeBSD several times (yes, I rebuilt the kernel each time).

For any help, thanks in advance

Bruce

[EMAIL PROTECTED] 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ntpd does not work under 5.2

2004-01-14 Thread Antoine Jacoutot
Hi :)

I'm trying to configure ntpd under 5.2-RELEASE, but I think there might be a 
bug or something. My configuration used to work under 4.x but now I get 
errors.

First:
$ /etc/rc.d/ntpd start
ps: kvm_getprocs: No such process
Starting ntpd.
-- I have no idea what it means

Second (after a few days):
$ cat /var/db/ntp.drift
0.000
-- it obviously does not sync; with ntpdate, it works though

Besides, my box looses something like 30 minutes per day !!!

Here is my /etc/ntp.conf:

server ntp.univ-lyon1.fr prefer
server clepsydra.dec.com
server ntp0.nl.net
driftfile /var/db/ntp.drift
restrict default ignore
restrict 127.0.0.1
restrict 192.168.0.0 mask 255.255.255.0 notrust nomodify notrap

ntpd process:
/usr/sbin/ntpd -p /var/run/ntpd.pid -f /var/db/ntpd.drift

If you have any ideas...
Thanks.
Regards,

Antoine

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


if_bfe for 4.8 (broadcam bcm4401)

2004-01-14 Thread CHOI Junho

Hi,

I've tried BCM4401 driver back-ported (not MFC'ed) for 4.9 from:

  http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/56726

I can build, install, load. And devices probed. But it segfaults in
any network action(notably dhclient, ifconfig).

Anybody use this driver or bug reported? My platform is ftp-installed 4.9R.

Here is part of dmesg:

FreeBSD 4.9-RELEASE #0: Mon Oct 27 17:51:09 GMT 2003
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC

...

bfe0: Broadcom BCM4401 Fast Ethernet mem 0xfb80-0xfb801fff irq
10 at device 5.0 on pci2
bfe0: Ethernet address: 00:0c:6e:35:0f:b2
miibus0: MII bus on bfe0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Support for affordable S-ATA RAID controllers (xs4)

2004-01-14 Thread Rogier Krieger
Hi there Paul,

Previous correspondence from Paul Hamilton (15:19 12-1-2004 +0800):
How about the Rocket Raid 1540 or the 1820, 8 drive SATA for ~ AUS$330
48bit LBA, can do Raid 1 and single drives at the same time.  Raid 5 is
slow, because it does software parity checking.

Thanks for the tip. I couldn't find it in the 5.2 hardware support pages,
though.
Highpoint's web site [1] mentions support for FreeBSD 4.x and 5.0. It took
me a while to find that info. The 1820 also appears to have support for
FreeBSD 5.1, according to the website [2]. I suppose I wasn't looking
carefully enough.

Cheers,

Rogier Krieger


References:
[1] Highpoint RocketRaid 1540 support page
[ http://www.highpoint-tech.com/USA/brr1540.htm ]
[2] Highpoint RocketRaid 1820 support page
[ http://www.highpoint-tech.com/USA/brr1820.htm ]



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Support for affordable S-ATA RAID controllers (xs4)

2004-01-14 Thread Rogier Krieger
Previous correspondence from Brent Wiese (18:50 12-1-2004 -0700):
3Ware cards are expensive, but you get what you pay for. Whatever code they
have to optimize the disk use works wonders.

About a year ago I bought a set of two Escalades and placed them in
NetBSD machines. I believe the driver is a port from the FreeBSD
version. It has worked like a charm, starting I installed proper cabling.
Until that time, I received various array errors, but nothing that damaged
data. Switching to the ATA cables 3ware offers, the problem went away.

From several people (mainly on the NetBSD lists), I heard similar reports
that the Escalade 6xxx and 7xxx are sensitive to the ATA cables you use.

Apart from that, the Escalades are worth the expense. My main issue
here was lacking a budget for them.

Cheers,

Rogier Krieger



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: xmms - problem - how to fix?

2004-01-14 Thread Loren M. Lang
On Mon, Jan 12, 2004 at 01:56:19PM +0100, Simon Barner wrote:
  I have some problem with my xmms mm player. When I'm treing to
  listen some mp3's it gives me aN error, that I don't know how to fix.
  I have KDE 3.1 if you need this info ^)
  So here it is:
  bash-2.05b$ xmms
  /dev/dsp: Device busy
  /dev/dsp: Device busy
  /* with OSS driver */
  
  ** WARNING **: oss_open(): Failed to open audio device (/dev/dsp): Device busy
  
  ** WARNING **: oss_open(): Failed to open audio device (/dev/dsp): Device busy
  
  ** WARNING **: oss_open(): Failed to open audio device (/dev/dsp): Device busy
  /dev/dsp: Device busy
 
 I don't know exactly, but if XmmS has an arts output plugin, you should
 certainly use it, since arts is KDE's default sound daemon.
 

I think part of the problem is that he hasn't told xmms to use the
esound server, and it's trying to open /dev/dsp which esd already has
open.  I'm using esd myself because artsd has some problems with playing
sound, though it is the better choice, especially if you are using the
kde desktop which uses artsd by default.   Though I am having one
problem with esd, it seems to want to exit after the last client closes
it's connection even though I started it manually and didn't give it the
-terminate option.  Anyone have any ideas why?

-- 
I sense much NT in you.
NT leads to Bluescreen.
Bluescreen leads to downtime.
Downtime leads to suffering.
NT is the path to the darkside.
Powerful Unix is.

Public Key: ftp://ftp.tallye.com/pub/lorenl_pubkey.asc
Fingerprint: B3B9 D669 69C9 09EC 1BCD  835A FAF3 7A46 E4A3 280C
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: recompile kernel problem

2004-01-14 Thread Spades
Hi,

I installed FreeBSD 4.9-PREREL and recompiled the kernel and 
got this problem during recompile of kernel.

# make depend  make  make install..
(snip)
vnode_if.h:876: warning: inlining failed in call to `VOP_UNLOCK'
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c:598: warning:
called from here
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c: In function
`union_inactive':
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c:1705: warning:
unused variable `vpp'
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c: In function
`union_unlock':
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c:1803: warning:
unused variable `un'
*** Error code 1

Stop in /usr/src/sys/modules/union.
*** Error code 1

Stop in /usr/src/sys/modules.
*** Error code 1

Stop in /usr/src/sys/compile/CONF.

Any solutions around this?

Thanks.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Stop in /usr/src/sys/modules/union

2004-01-14 Thread Spades
Hi,

I installed FreeBSD 4.9-PREREL and recompiled the kernel and 
got this problem during recompile of kernel.

# make depend  make  make install..
(snip)
vnode_if.h:876: warning: inlining failed in call to `VOP_UNLOCK'
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c:598: warning:
called from here
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c: In function
`union_inactive':
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c:1705: warning:
unused variable `vpp'
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c: In function
`union_unlock':
/usr/src/sys/modules/union/../../miscfs/union/union_vnops.c:1803: warning:
unused variable `un'
*** Error code 1

Stop in /usr/src/sys/modules/union.
*** Error code 1

Stop in /usr/src/sys/modules.
*** Error code 1

Stop in /usr/src/sys/compile/CONF.

Any solutions around this?

Thanks.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


keybell off in rc.conf disables my keyboard in 5.1 release

2004-01-14 Thread Oliver Fuchs
Hi,

I installed FreeBSD 5.1 with a new kernel (here I only added 
options VGA_WIDTH90).
I want do disable the PC's internal beep, so I added from man rc.conf this
to rc.conf:

keybell=off.

After rebooting I was not able to type in anything with my keyboard at the
login - there was absolutely no funtionality (it was dead).
Deleting the keybell entry in my rc.conf (via the livesystem CD and the
option FIxIt) made the keyboard work again.
Can someone point me to the solution of this problem or to some
documentation because I am not able to find anything helpfull.

Here is my rc.conf file:

font8x8=iso15-8x8
font8x14=iso15-8x14
font8x16=iso15-8x16
hostname=bob.bob.de
ifconfig_rl0=inet 10.100.100.1  netmask 255.255.255.0
inetd_enable=YES
kern_securelevel_enable=NO
allscreens_flags=VGA_90x25
keymap=german.iso
linux_enable=YES
moused_enable=YES
saver=daemon
scrnmap=NO
sendmail_enable=YES
sshd_enable=YES
usbd_enable=YES
keybell=off.


P.S.: Do disable the beep I set in my .cshrc this:

set nobeep

But I want to disable generally.



Thanx in advance


Oliver
-- 
... don't touch the bang bang fruit

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Stop in /usr/src/sys/modules/union

2004-01-14 Thread Ion-Mihai Tetcu
On Wed, 14 Jan 2004 20:46:11 +0800
Spades [EMAIL PROTECTED] wrote:

 Hi,
 
 I installed FreeBSD 4.9-PREREL and recompiled the kernel and 
 got this problem during recompile of kernel.
 
 # make depend  make  make install..
 (snip)
 vnode_if.h:876: warning: inlining failed in call to `VOP_UNLOCK'
 /usr/src/sys/modules/union/../../miscfs/union/union_vnops.c:598: warning:

re-cvsup, it has been fixed


-- 
IOnut
Unregistered ;) FreeBSD user
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


/usr/libexec/ld-elf.so.1: wget: Undefined symbol OpenSSL_add_all_algorithms

2004-01-14 Thread Spades
Hi,

Everytime i do a wget, i get this error.. how do i fix it?

# wget http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
--21:29:39--  http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
   = `ircii-pana-1.0c19.tar.gz'
/usr/libexec/ld-elf.so.1: wget: Undefined symbol
OpenSSL_add_all_algorithms

Thanks again.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Loading balancing with more than one ISP.

2004-01-14 Thread budsz
Hi,

I was read in this URL:
http://www.lartc.org/howto/lartc.rpdb.multiple-links.html#AEN293

The questions is:

1. With FreeBSD can do like this?, example with route(8)?
2. Does FreeBSD support more than 1 as defaut gateway in routing table??
3. I found some options in /etc/default/rc.conf like static_routes=, 
   if I use static_routes= _WITHOUT_ defaut gateway (defaultrouter= in
   /etc/rc.conf) it's possible?
4. In that URL using weight as prority balancing connection, so in
   FreeBSD how do this?

Thanks You.   

-- 
budsz


pgp0.pgp
Description: PGP signature


info

2004-01-14 Thread Kevin R. Lee
What does the acronym IA-64 stand for?

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Comm port woes

2004-01-14 Thread Michael L. Hostbaek
I have a box running 4.8-REL, its primary function is to provide serial
access to cisco routers and switches (for testing purposes).

Since last week no data is coming through, when connected to a device
with minicom or tip(1) - all settings have been verified and double
checked. It is working fine when connected to my FreeBSD laptop.

Is the port physically b0rken, or is it possible to somehow clear the
line ? 

Thanks in advance, 

/mich
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: info

2004-01-14 Thread Jason Stewart
On 13/01/04 23:47 -0600, Kevin R. Lee wrote:
 What does the acronym IA-64 stand for?
 
 ___
 [EMAIL PROTECTED] mailing list

I believe it stands for Intel Architecture 64. A quick google search
reveals this page:

http://www.google.com/url?sa=Xoi=defq=http://devrsrc1.external.hp.com/STK/gloss.html

A quick search of wikipedia confirms my guess:
http://en.wikipedia.org/wiki/IA-64

Jason
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Antoine Jacoutot
On Wednesday 14 January 2004 14:42, budsz wrote:
 1. With FreeBSD can do like this?, example with route(8)?
 2. Does FreeBSD support more than 1 as defaut gateway in routing table??
 3. I found some options in /etc/default/rc.conf like static_routes=,
if I use static_routes= _WITHOUT_ defaut gateway (defaultrouter= in
/etc/rc.conf) it's possible?
 4. In that URL using weight as prority balancing connection, so in
FreeBSD how do this?

I've been looking for answers on this for a while but I found nothing nor 
no-one who could tell me if and how it is possible.
Let the list know if you find anything interesting.

Antoine

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: info

2004-01-14 Thread Chris
On Wednesday 14 January 2004 08:02 am, Jason Stewart wrote:
 On 13/01/04 23:47 -0600, Kevin R. Lee wrote:
  What does the acronym IA-64 stand for?

Somehow, I get the feeling this is a troll. 
And to the troll sending this - www.google.com.  USE IT


-- 
Best regards,
Chris

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


IPFW loadable module logging

2004-01-14 Thread fbsd_user
The IPFW loadable module as delivered by the FBSD install has no
logging ability.
Is it possibly to enable the logging function by using the sysctl
knobs?

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Simon Gray
 I've been looking for answers on this for a while but I found nothing nor
 no-one who could tell me if and how it is possible.
 Let the list know if you find anything interesting.

Easiest way I would of thought would be to use BGP or OSPF under Zebra
(/usr/ports/net/zebra)(www.zebra.org)

I'm no expert, but the majority if ISPs tend to use BGP and/or OSPF.

Not sure how you'd set this up. But hopefully it'll point you in the right
direction.

HTH

Simon

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IPFW 'keep state' 'limit'

2004-01-14 Thread Dan Pelleg
fbsd_user [EMAIL PROTECTED] writes:

 Reading the man page on IPFW rule syntax, I get the impression that
 the 'limit' option uses the stateful dynamic rules table. But it's
 unclear whether 'keep state' and limit can be used on the same rule,
 or if the limit option performs the 'keep state' function in
 addition to the limit function.

 So as an example

 $cmd 00390 allow tcp from any to any 22 in via dc0 setup keep-state
 limit src-addr 3

 will this work?


limit implies keep-state, and you should really specify one or the
other. If you specify both, ipfw won't complain, but ipfw2 will. So it's
best to not do that.

-- 

  Dan Pelleg
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Antoine Jacoutot
On Wednesday 14 January 2004 15:46, Simon Gray wrote:
 Easiest way I would of thought would be to use BGP or OSPF under Zebra
 (/usr/ports/net/zebra)(www.zebra.org)

 I'm no expert, but the majority if ISPs tend to use BGP and/or OSPF.

Yes, but one said that for BGP you had to work directly ith your ISP and get 
its aggrement and all.
The thing is I need this using 2 differents ISPs.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Info.

2004-01-14 Thread Jerry McAllister
 
 On Tue, 2004-01-13 at 20:13, Kevin R. Lee wrote:
  Sorry, one more question, what does DEC Alpha stand for?
 Digital Electric Corporation. (or did before Compaq bought them, before
 being bought themselves, by HP)

Actually, I think it was Digital Equipment Corporation.  DEC was
a major vendor for what was then called Mini computers - refrigerator
sized machines intended for use in labs and engineering workshops.
Alpha was one of their brand model lines of work stations.

jerry

 
 Micheas
 
  
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
 -- 
 Micheas Herman  email: [EMAIL PROTECTED]
 Free Print Shop web:   http://www.FreePrintShop.org
 phone: (415)648-3222fax:   (415)648-4466
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Information

2004-01-14 Thread Jerry McAllister
 
 Hello, I was wondering what BSD stands for? Also what does AMD 
 and Ultra SPARC stand for? Any information would be very helpful.

Check out this web page:
http://www.catb.org/~esr/jargon/

This set of pages seems to be either mirrored or cross referenced
in a number of places.   Keep at least one of the addresses ready
at hand - bookmarked.

jerry

 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Info.

2004-01-14 Thread Lucas Holt
From my understanding a DEC Alpha system contained an Alpha processor.  
I don't know a lot about them, but I believe they are RISC based and 
had a portion of the chip that was programmable for the operating 
system to add custom instructions to.  There was a windows NT 4 port to 
the alpha and DEC and later compaq/hp had a Unix for them as well.

Some alpha systems are still in production use.  I know a college 
around here that uses it for a custom security system with keycards.  
The software they use was never ported to the x86 version (IA32 for 
people who hate that term) of NT4.

Lucas Holt
[EMAIL PROTECTED]

FoolishGames.com  (Jewel Fan Site)
JustJournal.com (Free blogging)
'Re-implementing what I designed in 1979 is not interesting to me 
personally. For kids who are 20 years younger than me, Linux is a great 
way to cut your teeth. It's a cultural phenomenon and a business 
phenomenon. Mac OS X is a rock-solid system that's beautifully 
designed. I much prefer it to Linux.'
-- Bill Joy, Wired Article 2003

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


5.2-RELEASE multiple panics

2004-01-14 Thread Joel Gudknecht
FYI,

Running 5.1-RELEASE just fine for about a month.

Did a clean/fresh install of 5.2-RELEASE and it has been crashing repeatedly.

The system crashes whenever I try to install packages or start any net services.

Hardware:

Compaq Prosignia 150 Laptop
3com 10/100 LAN CardBus (3CXFE575BT)

dmesg:

Unable to capture

Error: (one of many)

cpuid = 0; apic id = 00
instruction pointer = 0x8:0xc075ac2c
stack pointer   = 0x10:0xcd560970
frame pointer   = 0x10:0xcd5b0990
code segment= base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, def32 1, gran 1
processor eflags= interrupt enabled, IOPL = 0
current process = 412 (sendmail)
trap number = 30
panic: unknown/reserved trap
cpuid = 0
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Konqueror crash

2004-01-14 Thread jorn
Hi all,

I'm a happy user of FreeBSD 5.1-RELEASE for some time now, but there's
something that has been bothering me  I always come on a chatbox (a dutch
one) which is full of javascripting I think (not sure though). I
experience no problems during the chat session, but when I close the
window konqueror crashes completely and closes all its active sessions,
including file managers and such. I've tried Opera 7, but that browser
returns no errors. Also I've tried Mozilla Firebird 0.7 but I can't even
start the chat session with that because it's not supported or something.

here's the debug report it returns:

(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
[Switching to Process 1905, Thread 1]
0x290ba883 in poll () from /usr/lib/libc.so.5
#0  0x290ba883 in poll () from /usr/lib/libc.so.5
#1  0x28795651 in _thread_kern_sched_state_unlock () from
/usr/lib/libc_r.so.5
#2  0x28795050 in _thread_kern_scheduler () from /usr/lib/libc_r.so.5


I'm running KDE 3.1.4 from the cvsup tree, and I've compiled my own
kernel. It has been rock-solid and I've never encountered any crashes
other then with konqueror, so I don't believe it's my kernel
configuration. Also, I didn't know if this was the proper mailing list, or
that I should send it to the KDE mailing lists.If there's any other
information required then please let me know. Anyway, thanks in advantage
for trying to help me.

Cheers,

Jorn.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: vlan support

2004-01-14 Thread Gilad Rom
Mike Tancsa wrote:
On 12 Jan 2004 09:33:32 +0500, in sentex.lists.freebsd.questions you
wrote:

How do you do!
ifconfig_vlan2=inet 192.168.100.1 netmask 255.255.255.0 vlan 4 vlandev
rl0
Catalyst settings were write because it works with cisco router.



I am pretty sure the Realtek Driver does not support the larger packet
size to handle 802.1q frames.  See man vlan.   I have used dc and fxp
based cards with great results, but nothing on the realtek.
---Mike
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

I'm sure the realtek supports VLAN in hardware, and I know the 5.2 
driver also supports it. I'm not so sure about 4.x, though.

Gilad

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Ruben de Groot
On Wed, Jan 14, 2004 at 04:01:28PM +0100, Antoine Jacoutot typed:
 On Wednesday 14 January 2004 15:46, Simon Gray wrote:
  Easiest way I would of thought would be to use BGP or OSPF under Zebra
  (/usr/ports/net/zebra)(www.zebra.org)
 
  I'm no expert, but the majority if ISPs tend to use BGP and/or OSPF.
 
 Yes, but one said that for BGP you had to work directly ith your ISP and get 
 its aggrement and all.
 The thing is I need this using 2 differents ISPs.
 
I'm not entirely sure (never used it myself), but I think you can use
routed(8), depending on the way you connect to your ISPs.

Ruben

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


cisco card

2004-01-14 Thread Kenzo
I'm trying to setup a cisco aironet 350 card on my laptop and I can't seem
to figure out why it wont do it.

I recompiled my kernel with the device an and everything went fine.
I added this line to my rc.conf file.
ifconfig_an0=DHCP
still doesn't work.
I don't see the an device anywhere and I don't see any error messages other
than,
interface an does not exist

what can I do?

Thanks.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Info.

2004-01-14 Thread Marco Beishuizen
On stardate Tue, 13 Jan 2004, the wise Kevin R. Lee entered:

 Sorry, one more question, what does DEC Alpha stand for?

DEC stands for Digital Equipment Corporation. Alpha is the 64-bit
processor they make. Digital as a company doesn't exist anymore, Compaq
bought it some time ago.
I have a Personal Workstation 600au and FreeBSD runs fine on it :)

Marco

-- 
Familiarity breeds attempt
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: IPFW 'keep state' 'limit'

2004-01-14 Thread fbsd_user
The FBSD 5.2 man IPFW does not say anything different that the 4.9
man IPFW.
Are you saying the man doc in 5.2 is wrong?

5.2 is using the ipfw2 code for IPFIREWALL I believe.

Documenting the fact that 'limit' performs the same function as
'keep state' in additional to 'limit' stated purpose is very
important information. Also that 'limit' and 'keep state' can not be
coded together is another very important piece information that need
to be documented in the man IPFW data.

Should this be submitted as an problem report?



-Original Message-
From: Dan Pelleg [mailto:[EMAIL PROTECTED]
Sent: Wednesday, January 14, 2004 9:47 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED] ORG
Subject: Re: IPFW 'keep state'  'limit'

fbsd_user [EMAIL PROTECTED] writes:

 Reading the man page on IPFW rule syntax, I get the impression
that
 the 'limit' option uses the stateful dynamic rules table. But it's
 unclear whether 'keep state' and limit can be used on the same
rule,
 or if the limit option performs the 'keep state' function in
 addition to the limit function.

 So as an example

 $cmd 00390 allow tcp from any to any 22 in via dc0 setup
keep-state
 limit src-addr 3

 will this work?


limit implies keep-state, and you should really specify one or the
other. If you specify both, ipfw won't complain, but ipfw2 will. So
it's
best to not do that.

--

  Dan Pelleg

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: /usr/libexec/ld-elf.so.1: wget: Undefined symbolOpenSSL_add_all_algorithms

2004-01-14 Thread Spades
Hi,

Everytime i do a wget, i get this error.. how do i fix it?

# wget http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
--21:29:39--  http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
   = `ircii-pana-1.0c19.tar.gz'
/usr/libexec/ld-elf.so.1: wget: Undefined symbol
OpenSSL_add_all_algorithms

Thanks again.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Network timeout.

2004-01-14 Thread Lewis Thompson
Hi,

I'm having problems with my network connection timing out during large
transfers.

  It's connected to a 10Mbit hub so it's not topping out at the card's
maximum throughput.

  Originally I had a Realtek 8139 card but yesterday I dumped that in
favour of a Netgear FA311 (sis chipset) and this seemed to solve all
timeout problems of sustained transfers (saturating the connection for a
sustained period of time).

  However, I've just had a couple more timeouts in the last few hours.
Obviously I was never sure it was the NIC in the first place but I can't
ignore the fact I had a good 20GB transferred without problem yesterday
(as opposed to usually around 1GB before the card dies).

  Data is being uploaded to a Samba server, which reports no errors in
the log (and I have no problems uploading a 100Mbit from inside my
network).  The server is running 4.9-RELEASE and the drive the data is
going to is a vinum volume (in case that has any bearing).

  I'm using ipnat to forward port 139 to inside a jail.  Finally, my IP
is assigned by a DHCP server -- the lease length is 24h but my IP is
static (for the last four months, anyway ;).

  Any suggestions for the best way to go about tracking the problem
down?  If anybody needs any more details just ask and I'll do my best to
provide.

  Thanks very much,

-lewiz.

-- 
I was so much older then, I'm younger than that now.  --Bob Dylan, 1964.

-| msn:[EMAIL PROTECTED] | jabber:[EMAIL PROTECTED] | url:www.lewiz.org |-


pgp0.pgp
Description: PGP signature


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Tillman Hodgson
On Wed, Jan 14, 2004 at 02:46:28PM -, Simon Gray wrote:
  I've been looking for answers on this for a while but I found nothing nor
  no-one who could tell me if and how it is possible.
  Let the list know if you find anything interesting.
 
 Easiest way I would of thought would be to use BGP or OSPF under Zebra
 (/usr/ports/net/zebra)(www.zebra.org)

I'm a heavy Zebra (migrating to Quagga) user. Using dynamic routing is
very handy, but it won't solve the problem of balancing load across two
connections.

Zebra (or any dynamic routing daemon) only makes routing *decisions* and
then places the results of those decisions into the regular kernel
routing table. It doesn't actually route the packets, the regular kernel
routing mechanism still does that.

FreeBSD doesn't allow routes to identical destinations with different
gateways.  For a previous (and recent) thread on this, see
http://lists.freebsd.org/pipermail/freebsd-i386/2003-October/000340.html.

So you can't round-robin between two default gateways. You /can/,
however, send traffic for different destinations out of different links.
For example, I send my nightly CVSup traffic and other automated
downloads out of a regular ADSL link in order to prevent swamping my
main link.

If your upstream providers support dynamic routing protocols, then you
can get that destination information automatically. But that's not the
same as load balancing, it's best-path selection.

-T


-- 
Money is truthful. If a man speaks of his honor, make him pay cash.
- Robert Heinlein
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


choice of boot manager

2004-01-14 Thread Lee_Shackelford
Good morning, FreeBSD enthusiasts.

I am planning a multiple operating system installation on a Compaq Proliant
5000.  The purpose of the installation is hobbyist and instructional.  The
computer does not provide network management services.  The proposed
operating systems are Windows 95, FreeBSD, and Windows 2000 Server.  A
fourth operating system may be added at a later date.  Have you had any
experience with any of the following boot manager programs that may suggest
their relative applicability to this project?  The boot manager programs I
am considering include the following:  LILO, GRUB, MATT, NTLDR/BOOT.INI,
RANISH, and the boot loader that comes with FreeBSD, the name of which I do
not know.  Any information about positive or negative experiences with any
of these programs in a multiple operating system configuration would be
appreciated.  Your truly, Lee Shackelford
L e e underscore S h a c k e l f o r d at d o t dot c a dot g o v

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


choice of boot manager

2004-01-14 Thread Lee_Shackelford
Dear FreeBSD enthusiast,
In the list included on the original message, I forgot to mention the
shareware version of OS-BS boot manager program.
Thanks for your assistance.  Yours truly, Lee Shackelford
- Forwarded by Lee Shackelford/HQ/Caltrans/CAGov on 01/14/2004 08:42 AM
-
   
 
   Lee 
 
   Shackelford   To: [EMAIL PROTECTED] 
 
 cc:   
 
01/14/2004   Subject: choice of boot manager   
 
  08:39 AM 
 
   
 
   
 



Good morning, FreeBSD enthusiasts.

I am planning a multiple operating system installation on a Compaq Proliant
5000.  The purpose of the installation is hobbyist and instructional.  The
computer does not provide network management services.  The proposed
operating systems are Windows 95, FreeBSD, and Windows 2000 Server.  A
fourth operating system may be added at a later date.  Have you had any
experience with any of the following boot manager programs that may suggest
their relative applicability to this project?  The boot manager programs I
am considering include the following:  LILO, GRUB, MATT, NTLDR/BOOT.INI,
RANISH, and the boot loader that comes with FreeBSD, the name of which I do
not know.  Any information about positive or negative experiences with any
of these programs in a multiple operating system configuration would be
appreciated.  Your truly, Lee Shackelford
L e e underscore S h a c k e l f o r d at d o t dot c a dot g o v


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: /usr/libexec/ld-elf.so.1: wget: UndefinedsymbolOpenSSL_add_all_algorithms

2004-01-14 Thread Simon Gray
 Everytime i do a wget, i get this error.. how do i fix it?
 
 # wget http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
 --21:29:39--  http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
= `ircii-pana-1.0c19.tar.gz'
 /usr/libexec/ld-elf.so.1: wget: Undefined symbol
 OpenSSL_add_all_algorithms

Looks like it's been compiled against something that's changed.

See what:

Have you tried rebuilding wget?

cd /usr/ports/ftp/wget  make deinstall  make reinstall

if that doesn't work you could try building it without ssl support

i think  'make --WITHOUT_SSL  make install'  should work


HTH

Simon
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: /usr/libexec/ld-elf.so.1: wget: UndefinedsymbolOpenSSL_add_all_algorithms

2004-01-14 Thread Simon Gray
 Everytime i do a wget, i get this error.. how do i fix it?
 
 # wget http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
 --21:29:39--  http://bitchx.org/files/source/ircii-pana-1.0c19.tar.gz
= `ircii-pana-1.0c19.tar.gz'
 /usr/libexec/ld-elf.so.1: wget: Undefined symbol
 OpenSSL_add_all_algorithms

Looks like it's been compiled against something that's changed.

See what you get with:

ls /usr/libexec/ld-elf*


Could always try without ssl support by rebuilding wget?

cd /usr/ports/ftp/wget  make deinstall  make reinstall

if that doesn't work you could try building it without ssl support

i think  'make --WITHOUT_SSL  make install'  should work


HTH

Simon
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FYI - Burned DVD-R on FreeBSD 4.9 STABLE

2004-01-14 Thread Andrew L. Gould
A while ago there was an email thread regarding the possibility of burning 
DVD-R's using dvd+rw-tools.  My first attempt to do so failed when using a 
Memorex DVD-R.  Since someone else posted problems creating a bootable CD 
using Memorex media,  I tried again using another brand.  My second attempt, 
using an imation DVD-R, was successful:

OS:  FreeBSD 4.9 STABLE
Port:  dvd+rw-tools-5.13.4.7.4
Burner:  SONY DVD RW DRU-500A
DVD-R:  imation DVD-R 4.7GB - Data DVD-R for general version 2.0

The following command, executed by root, burned all of the files in the 
current working directory (2.7GB) to a new DVD-R (not mounted) at /dev/cd0c:

growisofs -dvd-compat -Z /dev/cd0c -r -l ./*

The resulting DVD-R was readable by the burner and by:

Samsung CDRW/DVD SM-352B (WinXP Pro on desktop PC)
Toshiba DVD-ROM SD-R2102 (Win2K Pro and FreeBSD 4.9 Stable on laptop)

Caveat:  I have read the text files on the DVD-R; but I have not tried to 
reload the database backup files.

Best of luck,

Andrew Gould

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD and Best Practical RT

2004-01-14 Thread Jason Wilson
Forgive me if I'm addressing the wrong audience here, but I posted this
to the RT list about a month ago and got no response, so I thought maybe
someone who knew FreeBSD and Perl a bit more intimately might be able to
shed some light on this for me.

I was going through the install of rt 3.0.7_01 and it seems I came up
against a wall.

I was able create/modify/manage tickets/queues/users from the web
interface, but whenever I submitted a message via e-mail, I kept seeing
the same error message in my mail log file:

MIME::Parser: can't open tmpfile: Invalid argument

I'm guessing that this is a permission issue somewhere with needed to
open up a temporary file somewhere when processing the attachment, but
where I can't seem to locate.

I dug around in the archive and found a message about modifying one of
the modules where the tmpfile call is made. Modifying the sub
_SetupMIMEParser function by adding a $parser-tmp_to_core(0) call after
the $parser-output_to_core(0) call keeps the error from happening and
makes e-mail communication with RT work.

So the question - can someone point me in the right direction as to why
RT, or more specifically MIME::Parser, is having problems opening a
tempfile when processing e-mails? Fixing the problem is one thing -
knowing why is another... can anyone shed some light on this for me?

System Info:

FreeBSD 5.0, Perl 5.8.0, Required Perl Modules up to date as of December
10th, Apache 1.3.29, mod_perl 1.29 statically compiled into Apache.

Thanks in advance.

Jason Wilson
Nobilis Software

~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
Yes, we ARE a bunch of anal, short-tempered, quick to
fly-off-the-handle, sarcastic, know-it-alls.  That's what running
networks does to you. 

- James Fischer (inet-access)
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: choice of boot manager

2004-01-14 Thread Peter Risdon
[EMAIL PROTECTED] wrote:

not know.  Any information about positive or negative experiences with any
of these programs in a multiple operating system configuration would be
appreciated. 
 

This isn't on your list, but I tried using the romantically named gag 
graphical bootloader

http://gag.sourceforge.net/

after a few probs with an OpenBSD/W98 installation, and found it 
extremely good. It's what I use for customers' dual boot machines now 
because it's quick to install, easy to configure, reliable and pretty.

PWR.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


kernel problem with freebsd 5.2RC2

2004-01-14 Thread Zh Zhechev
hi all,

make buildkernel KERNCONF=FREESBIEKERNEL

-the kernel-
#
# FREESBIEKERNEL
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ../../conf/NOTES and NOTES files.
# If you are in doubt as to the purpose or necessity of a line, check first
# in NOTES.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.394.2.2 2003/12/07 23:52:53 scottl Exp $

machine i386
#cpuI486_CPU
cpu I586_CPU
cpu I686_CPU
ident   FREESBIEKERNEL

#To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints #Default places to look for devices.

#makeoptionsDEBUG=-g#Build kernel with gdb(1) debug symbols

options SCHED_4BSD  #4BSD scheduler
options INET#InterNETworking
options INET6   #IPv6 communications protocols
options FFS #Berkeley Fast Filesystem
options SOFTUPDATES #Enable FFS soft updates support
options UFS_ACL #Support for access control lists
options UFS_DIRHASH #Improve performance on big directories
options MD_ROOT #MD is a potential root device
options NFSCLIENT   #Network Filesystem Client
options NFSSERVER   #Network Filesystem Server
options NFS_ROOT#NFS usable as /, requires NFSCLIENT
options MSDOSFS #MSDOS Filesystem
options CD9660  #ISO 9660 Filesystem
options PROCFS  #Process filesystem (requires PSEUDOFS)
options PSEUDOFS#Pseudo-filesystem framework
options COMPAT_43   #Compatible with BSD 4.3 [KEEP THIS!]
options COMPAT_FREEBSD4 #Compatible with FreeBSD4
options SCSI_DELAY=15000#Delay (in ms) before probing SCSI
options KTRACE  #ktrace(1) support
options SYSVSHM #SYSV-style shared memory
options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~215k to driver.

# Debugging for use in -current
#optionsDDB #Enable the kernel debugger
#optionsINVARIANTS  #Enable calls of extra sanity checking
options INVARIANT_SUPPORT   #Extra sanity checks of internal structures, 
required b
y INVARIANTS
#optionsWITNESS #Enable checks to detect deadlocks and cycles
#optionsWITNESS_SKIPSPIN#Don't run witness on spinlocks for speed

# To make an SMP kernel, the next two are needed
options SMP # Symmetric MultiProcessor Kernel
device  apic# I/O APIC

device  isa
device  eisa
device  pci

# Floppy drives
device  fdc

# ATA and ATAPI devices
device  ata
device  atadisk # ATA disk drives
device  ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
device  atapifd # ATAPI floppy drives
device  atapist # ATAPI tape drives
options ATA_STATIC_ID   #Static device numbering

## SCSI Controllers
#device ahb # EISA AHA1742 family
#device ahc # AHA2940 and onboard AIC7xxx devices
#device ahd # AHA39320/29320 and onboard AIC79xx devices
#device amd # AMD 53C974 (Tekram DC-390(T))
#device isp # Qlogic family
#device mpt # LSI-Logic MPT-Fusion
##devicencr # NCR/Symbios Logic
#device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
#device trm # Tekram DC395U/UW/F DC315U adapters
#
#device adv # Advansys SCSI adapters
#device adw # Advansys wide SCSI adapters

Re: kernel problem with freebsd 5.2RC2

2004-01-14 Thread Peter Risdon
Zh Zhechev wrote:

hi all,

make buildkernel KERNCONF=FREESBIEKERNEL
 

The error comes while compiling umass. From your kernel conf:

device  umass   # Disks/Mass storage - Requires scbus and da

and from higher up in the same file:



## SCSI peripherals
#device scbus   # SCSI bus (required for SCSI)
#device ch  # SCSI media changers
#device da  # Direct Access (disks)
#device sa  # Sequential Access (tape etc)
#device cd  # CD
#device pass# Passthrough device (direct SCSI access)
#device ses # SCSI Environmental Services (and SAF-TE)
 

So uncomment scbus and da and try again.

PWR.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Antoine Jacoutot
On Wednesday 14 January 2004 17:00, Ruben de Groot wrote:
 I'm not entirely sure (never used it myself), but I think you can use
 routed(8), depending on the way you connect to your ISPs.

I have one ethernet -- router and one ethernet -- dsl modem connections to 
connect to my ISPs.
As you said, you're not sure about routed... Actually, I did not find anyone 
who actually make this configuration worked, everyone tells me that this 
might or might not work.
Anyway, I'm not looking for an howto nor a tutorial, I just want to know if 
there's a software that's able to do this, and then I'll learn it :)

Antoine

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


vexira AV on 5.2-REL

2004-01-14 Thread Jev
Hi all,

Is there anyone running Central Commands Vexira AV for mailservers on 
freebsd 5.2-RELEASE? Any hickups etc?

Thanks,
-Jev
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Antoine Jacoutot
On Wednesday 14 January 2004 17:30, Tillman Hodgson wrote:
 I'm a heavy Zebra (migrating to Quagga) user. Using dynamic routing is
 very handy, but it won't solve the problem of balancing load across two
 connections.

Thanks for the feedback :)

 So you can't round-robin between two default gateways. You /can/,
 however, send traffic for different destinations out of different links.
 For example, I send my nightly CVSup traffic and other automated
 downloads out of a regular ADSL link in order to prevent swamping my
 main link.

What I'm hoping to do is find a way to route all paquets coming:
- from DMZ to internet, using NET connexion1
- from LAN to internet, using NET connection2

To be more understandable, something like this:
route add from DMZ defaut em0
route add from LAN defaut em1
-- I know it is not a real command line, it's just to make things clearer.

 If your upstream providers support dynamic routing protocols, then you
 can get that destination information automatically. But that's not the
 same as load balancing, it's best-path selection.

And if it doesn't ?

Anyway thanks a lot for answering.
Regards,

Antoine

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


buildworld failure 4.9 Stable -- 5.2 Release

2004-01-14 Thread Goodleaf, John M
Hello,

I'm trying to upgrade a system from 4.9 (Stable) to 5.2 release. I get a
buildworld failure with aand error that reads like this:

In file included from /usr/src/lib/libkvm/kvm.c:62:
/usr/src/lib/libkvm/kvm.h:41:24: sys/_types.h: No such file or directory
In file included from /usr/src/lib/libkvm/kvm.c:62:
/usr/src/lib/libkvm/kvm.h:49: error: syntax error before size_t
/usr/src/lib/libkvm/kvm.h:49: warning: useless keyword or type name in empty
declaration
/usr/src/lib/libkvm/kvm.h:49: warning: empty declaration
/usr/src/lib/libkvm/kvm.h:54: error: syntax error before ssize_t
/usr/src/lib/libkvm/kvm.h:54: warning: useless keyword or type name in empty
declaration
/usr/src/lib/libkvm/kvm.h:54: warning: empty declaration

Any ideas how to fix this?

Thanks,
John

PS My make.conf file looks like this:

MODULES_WITH_WORLD=true
USA_RESIDENT=YES
CFLAGS= -O -pipe
NOGAMES=true
NOINFO= true
NOFORTRAN=  true
NO_LPR= true
KERNCONF=CLYDE
NO_SENDMAIL=true
COPTFLAGS= -O -pipe
CPUTYPE=pentium4
CXXFLAGS+= -fmemoize-lookups -fsave-memoized
PERL_VER=5.8.1
PERL_VERSION=5.8.1
PERL_ARCH=mach
NOPERL=yo
NO_PERL=yo
NO_PERL_WRAPPER=yo

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: learning source

2004-01-14 Thread Bill Campbell
On Wed, Jan 14, 2004, Cordula's Web wrote:
 i have studied C++ and am currently going through C.
 i have been programming small programs in a windows environment.
 i want to start understanding source and help program for bsd and open
 source.
 where can i start, im totally new and i want to know how things work.
 i need advice

Advanced Programming in the Unix Environment
by W. Richard Stevens (Addison-Wesley) may be
very useful, if you know enough C and would
like to interface to any Unix-like operating
system (including FreeBSD).

Another oldie but goodie is Kernighan and Pike's ``Unix Programming
Environment'' -- ISBN 0-13-937699-2, 0-13-937681-X (pbk).

Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
UUCP:   camco!bill  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676
URL: http://www.celestial.com/

Instead of giving money to found colleges to promote learning, why don't
they pass a constitutional amendment prohibiting anybody from learning
anything?  If it works as good as the Prohibition one did, why, in five
years we would have the smartest race of people on earth.
-- The Best of Will Rogers
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: IPFW 'keep state' 'limit'

2004-01-14 Thread Dave McCammon

--- fbsd_user [EMAIL PROTECTED] wrote:
 The FBSD 5.2 man IPFW does not say anything
 different that the 4.9
 man IPFW.
 Are you saying the man doc in 5.2 is wrong?
 
 5.2 is using the ipfw2 code for IPFIREWALL I
 believe.
 
 Documenting the fact that 'limit' performs the same
 function as
 'keep state' in additional to 'limit' stated purpose
 is very
 important information. Also that 'limit' and 'keep
 state' can not be
 coded together is another very important piece
 information that need
 to be documented in the man IPFW data.
 
 Should this be submitted as an problem report?
 
 
Snippits from 
IPFW(8) on FBSD 5.2
---[begin snip]---
STATEFUL FIREWALL
 Stateful operation is a way for the firewall to
dynamically create rules for specific flows when
packets that match a given pattern are detected.  
Support for stateful operation comes through the
check-state, keep-state and limit options of rules.

[snip]-

 Dynamic rules will be checked at the first
check-state, keep-state or limit occurrence, and the
action performed upon a match will be the same as in
the parent rule.

---[end snip---

There is also an occurence farther down under the
EXAMPLES area in the DYNAMIC RULES area which
doesn't mention the limit option.
---[begin snip}---

 Dynamic rules are checked when encountering the first
check-state or keep-state rule.

---[end snip]

Granted it doesn't say anything about them not working
if used together but, since it does say that they both
create dynamic rules, it looks to be intuitively
implied that they wouldn't be used together.



__
Do you Yahoo!?
Yahoo! Hotjobs: Enter the Signing Bonus Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: buildworld failure 4.9 Stable -- 5.2 Release

2004-01-14 Thread Andrew L. Gould
On Wednesday 14 January 2004 11:30 am, Goodleaf, John M wrote:
 Hello,

 I'm trying to upgrade a system from 4.9 (Stable) to 5.2 release. I get a
 buildworld failure with aand error that reads like this:

 In file included from /usr/src/lib/libkvm/kvm.c:62:
 /usr/src/lib/libkvm/kvm.h:41:24: sys/_types.h: No such file or directory
 In file included from /usr/src/lib/libkvm/kvm.c:62:
 /usr/src/lib/libkvm/kvm.h:49: error: syntax error before size_t
 /usr/src/lib/libkvm/kvm.h:49: warning: useless keyword or type name in
 empty declaration
 /usr/src/lib/libkvm/kvm.h:49: warning: empty declaration
 /usr/src/lib/libkvm/kvm.h:54: error: syntax error before ssize_t
 /usr/src/lib/libkvm/kvm.h:54: warning: useless keyword or type name in
 empty declaration
 /usr/src/lib/libkvm/kvm.h:54: warning: empty declaration

 Any ideas how to fix this?

 Thanks,
 John

 PS My make.conf file looks like this:

 MODULES_WITH_WORLD=true
 USA_RESIDENT=YES
 CFLAGS= -O -pipe
 NOGAMES=true
 NOINFO= true
 NOFORTRAN=  true
 NO_LPR= true
 KERNCONF=CLYDE
 NO_SENDMAIL=true
 COPTFLAGS= -O -pipe
 CPUTYPE=pentium4
 CXXFLAGS+= -fmemoize-lookups -fsave-memoized
 PERL_VER=5.8.1
 PERL_VERSION=5.8.1
 PERL_ARCH=mach
 NOPERL=yo
 NO_PERL=yo
 NO_PERL_WRAPPER=yo

A common piece of advice is to do clean installations (not updates) when 
upgrading from 4.* to 5.*.

Best of luck,

Andrew Gould

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Why is a USB modem not a USB modem?

2004-01-14 Thread Bryan JJ Buckley
Hi,
How do I tell FreeBSD 5.1-RELEASE to recognise my
STMicroelectronics USB Communicator as a umodem, and
not as a ugen? Yes, I do have umodem and ucom both
loaded. I have scoured the umodem(4) and ucom(4) man
pages (which are pretty short) as well as the usb(4)
man page, ugen(4), usbd(4) and usbdevs(4). Actually,
running usbdevs -v just confirmed that the FreeBSD had
apparantly all the information it needed (vendor ID,
product ID, device class, description, etc.) - but it
is still not attaching the right driver!
I've seen this question asked before, but never
answered. Here's hoping...
JJ


Yahoo! Messenger - Communicate instantly...Ping 
your friends today! Download Messenger Now 
http://uk.messenger.yahoo.com/download/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD Driver compilation problem

2004-01-14 Thread Admin
When I try to run /usr/share/examples/drivers/make_device_driver.sh to
generate the skeleton driver, it stops due to compilation errors caused by
the rman.h file. The errors are logged into err_log file and are attached as
sy3b1.zip file.

Would you please advise a.s.a.p why these errors are happening and how they can be 
corrected?

Regards

Gurdial Chandra
Sycos AES
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


imap-uw port problem on 5.2

2004-01-14 Thread Paulo Roberto
Hi,

building imap-uw with: WITHOUT_SSL=YES seems to have no effect. I keep
getting Login Disabled messages thru syslog. I searched the net and
found a lot of similar cases like this, but all the solutions I tried
did not work. I had this port on a 4.7 machine and it did install
perfectly. Any ideas?

tia

Paulo


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Tillman Hodgson
On Wed, Jan 14, 2004 at 06:27:30PM +0100, Antoine Jacoutot wrote:
 On Wednesday 14 January 2004 17:30, Tillman Hodgson wrote:
  I'm a heavy Zebra (migrating to Quagga) user. Using dynamic routing is
  very handy, but it won't solve the problem of balancing load across two
  connections.
 
 Thanks for the feedback :)
 
  So you can't round-robin between two default gateways. You /can/,
  however, send traffic for different destinations out of different links.
  For example, I send my nightly CVSup traffic and other automated
  downloads out of a regular ADSL link in order to prevent swamping my
  main link.
 
 What I'm hoping to do is find a way to route all paquets coming:
 - from DMZ to internet, using NET connexion1
 - from LAN to internet, using NET connection2
 
 To be more understandable, something like this:
 route add from DMZ defaut em0
 route add from LAN defaut em1
 -- I know it is not a real command line, it's just to make things clearer.

That's basically source-based routing, as opposed to the normal
destination based routing.

Normal routing says Based on the fact that you want to go to network X,
I'll send you to gateway Y.

Source-based routing says Based on IP address that you're coming from,
I'll send to you to gateway Y.

On FreeBSD, source-based routing is done with the IPFW 'fwd' command (or
the IPFilter 'pass out quick on int_2 to int_1' syntax) rather that
using the `route` command. I'm doing that myself (with IPFilter) and it
works well. It's confusing to set up initially because you have to take
into account the interaction between normal routing and firewall-based
source routing. If you're also NAT'ing and using dynamic IPs
understanding how it all can be made to work is an enlightening
experience ;-)

  If your upstream providers support dynamic routing protocols, then you
  can get that destination information automatically. But that's not the
  same as load balancing, it's best-path selection.
 
 And if it doesn't ?

Then you have to figure out and enter the best paths yourself as static
routes. Pain in the butt and likely to drift from reality over time. For
example, if my CVSup server of choice were to change it's IP address
(which I have no control over and am not likely to be notified about),
then my static route won't apply and my CVSup traffic, which I've so
carefully ensured won't affect my main link, will start going over my
main link.

-T


-- 
The tao that can be told
 is not the eternal Tao.
The name that can be named
 is not the eternal Name.
- Tao Te Ching
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Antoine Jacoutot
On Wednesday 14 January 2004 19:50, Tillman Hodgson wrote:
 On FreeBSD, source-based routing is done with the IPFW 'fwd' command (or
 the IPFilter 'pass out quick on int_2 to int_1' syntax) rather that
 using the `route` command. I'm doing that myself (with IPFilter) and it
 works well. It's confusing to set up initially because you have to take
 into account the interaction between normal routing and firewall-based
 source routing. If you're also NAT'ing and using dynamic IPs
 understanding how it all can be made to work is an enlightening
 experience ;-)

Great :)
This is fantastic, this is exactly what I need :)
Now, I have to figure out out do to this for real using ipfilter.
I have a 1 connexion with NAT+dyn IP and another one that's fixed.
I'm impatient to test this.
Thanks a lot !

Antoine

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


file: table is full | FreeBSD 5.1 p11

2004-01-14 Thread Michael Clark
I am getting this error on my FreeBSD machine.  Its to the point it was the
only thing I could read out of the dmesg without rebooting.
I read something about increasing max users to prevent this, but I do not
see that option in the kernel anymore...
Any information would be appreciated!  Please CC me as not member of list.

file: table is full
file: table is full

Packages Currently Installed

3dm-1.10.0.011_1,1  3ware ATA RAID monitoring daemon and web server
ImageMagick-5.5.7.11_1 Image processing tools
LPRngTool-1.3.2 Configuration Tool for LPRng
ORBit2-2.8.2High-performance CORBA ORB with support for the C
language
Tee-3.4 An enhanced version of tee(1)
XFree86-FontServer-4.3.0_1 XFree86-4 font server
XFree86-NestServer-4.3.0_1 XFree86-4 nested X server
XFree86-PrintServer-4.3.0 XFree86-4 print server
XFree86-Server-4.3.0_8 XFree86-4 X server and related programs
XFree86-VirtualFramebufferServer-4.3.0_1 XFree86-4 virtual framebuffer
server
XFree86-clients-4.3.0_2 XFree86-4 client programs and related files
XFree86-documents-4.3.0 XFree86-4 documentation
XFree86-font100dpi-4.3.0 XFree86-4 bitmap 100 dpi fonts
XFree86-font75dpi-4.3.0 XFree86-4 bitmap 75 dpi fonts
XFree86-fontCyrillic-4.3.0 XFree86-4 Cyrillic fonts
XFree86-fontDefaultBitmaps-4.3.0 XFree86-4 default bitmap fonts
XFree86-fontEncodings-4.3.0 XFree86-4 font encoding files
XFree86-fontScalable-4.3.0 XFree86-4 scalable fonts
XFree86-libraries-4.3.0_5 XFree86-4 libraries and headers
XFree86-manuals-4.3.0 XFree86-4 man pages
Xft-2.1.2   A client-sided font API for X applications
a2ps-letter-4.13b_1 Formats an ascii file for printing on a postscript
printer
aaccli-1.0  Adaptec SCSI RAID administration tool
abck-2.2Manage intrusion attemps recorded in the system log
acidlaunch-0.5  An application launcher with simple XML-based
configuration
amsn-0.83_1 MSN Messenger
aterm-0.4.2 A color vt102 terminal emulator with transparency
support
atk-1.4.1_1 A GNOME accessibility toolkit (ATK)
autoconf-2.13.000227_5 Automatically configure source code on many Un*x
platforms
autoconf-2.53_1 Automatically configure source code on many Un*x
platforms
automake-1.4.5_9GNU Standards-compliant Makefile generator (legacy
version
bandwidthd-1.1.7Tracks bandwidth usage by IP address
bash-2.05b.007  The GNU Bourne Again Shell
bison-1.75_1A parser generator from FSF, (mostly) compatible with
Yacc
boxtools-0.65.0 Style tools for the blackbox family of window managers
cdrdao-1.1.7_4  Record CD-R[W]s in disk-at-once mode
cdrtools-2.0.3  Cdrecord, mkisofs and several other programs to record
CD-R
cups-base-1.1.19.0  The Common UNIX Printing System: headers, libs, 
daemons
curl-7.10.7 Non-interactive tool to get files from FTP, GOPHER,
HTTP(S)
cvsup-without-gui-16.1h General network file distribution system optimized
for CVS
docbook-sk-4.1.2XML version of the DocBook DTD version controlled for
Scrol
docbook-xml-4.2_1   XML version of the DocBook DTD
docbook-xsl-1.62.3  XSL DocBook stylesheets
dsniff-2.3  Various sniffing utilities for penetration testing
esound-0.2.32_1 A sound library for enlightenment package
etherape-0.9.0_1A graphical network traffic visualization tool for gnome
ethereal-0.9.14 An X11/GTK network analyzer/capture tool
ettercap-gnome-0.6.b,1 A network sniffer/interceptor/injector/logger for
switched
expat-1.95.6_1  XML 1.0 parser written in C
ezm3-1.1Easier, more portable Modula-3 distribution for building
CV
fluxconf-0.9.4  Fluxconf is a configuration program for the fluxbox
window
fluxter-0.1.0   Dekstop pager for the Fluxbox Slit
fontconfig-2.2.0An XML-based font configuration API for X Windows
fping-2.4b2 Quickly ping N hosts w/o flooding the network
freetype-1.3.1_2A free and portable TrueType font rendering engine
freetype2-2.1.4_1   A free and portable TrueType font rendering engine
gconf2-2.4.0.1  A configuration database system for GNOME
gd-2.0.15_1,1   A graphics library for fast creation of images
gdk-pixbuf-0.22.0   A graphic library for GTK+
gettext-0.11.5_1GNU gettext package
gettext-0.12.1  GNU gettext package
ghostscript-gnu-7.07_4 GNU Postscript interpreter
glib-1.2.10_10  Some useful routines of C programming (previous stable
vers
glib-2.2.3  Some useful routines of C programming (current stable
versi
gmake-3.80  GNU version of 'make' utility
gnome-icon-theme-1.0.9 A collection of icons for the GNOME 2 desktop
gnomehier-1.0_10An utility port, installing hierarchy of common GNOME
direc
gnomemimedata-2.4.0 A MIME and Application database for GNOME
gnomevfs2-2.4.1_1   GNOME Virtual File System
gnuplot-3.7.3_2 A command-driven interactive function plotting program
gtk-1.2.10_10   Gimp Toolkit for X11 GUI (previous stable version)
gtk-2.2.4_1 Gimp Toolkit for X11 GUI (current stable version)

Re: imap-uw port problem on 5.2

2004-01-14 Thread Charles Swiger
On Jan 14, 2004, at 1:15 PM, Paulo Roberto wrote:
building imap-uw with: WITHOUT_SSL=YES seems to have no effect. I keep
getting Login Disabled messages thru syslog. I searched the net and
found a lot of similar cases like this, but all the solutions I tried
did not work. I had this port on a 4.7 machine and it did install
perfectly. Any ideas?
Rebuild the mail/cclient port as well, per 
/usr/ports/mail/imap-uw/pkg-message:

===   NB: IMAP-UW now rejects non-encrypted logins by default. To 
change this
===   behaviour, recompile and reinstall cclient and imap-uw ports 
with one of
===   the following make variables defined:

WITHOUT_SSL - build without SSL/encryption support.
WITH_SSL_AND_PLAINTEXT - build with SSL/encryption support, but allow
non-encrypted logins.
--
-Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


cabling problem?

2004-01-14 Thread Marwan Sultan

Hello everyone,

 I'm Running FreeBSD 4.8-R, NATd, Firewall enabled.
 This box acting as a gateway.

 Modem Router calling the Internet and connected to rl0 in my FreeBSD
 and rl1 connected to HUB clients.

 When I plug the network cable From the Modem router directly to my 
 FreeBSD in the first NIC rl0 it doesnot take the internet connection.
 and nor the light in the rl0 lights.!

 So to solve the problem, I have a small HUB i pluged the cable from
 the router to hub (uplink) and from the HUB to rl0 then everything
 works fine, and the NIC light comes on, and NATd works great
 also all clients have the internet access.

 The question is:
 Why the network cable from Modem router to box directly doesnot
 work in the time from Modem router to HUB and from HUB  to BSD 
 box works fine?
  
 Thank you all.
--
Marwan Sultan

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cabling problem?

2004-01-14 Thread Andrew Boothman
Marwan Sultan wrote:

 When I plug the network cable From the Modem router directly to my 
 FreeBSD in the first NIC rl0 it doesnot take the internet connection.
 and nor the light in the rl0 lights.!

 So to solve the problem, I have a small HUB i pluged the cable from
 the router to hub (uplink) and from the HUB to rl0 then everything
 works fine, and the NIC light comes on, and NATd works great
 also all clients have the internet access.
 The question is:
 Why the network cable from Modem router to box directly doesnot
 work in the time from Modem router to HUB and from HUB  to BSD 
 box works fine?
In order to directly connect two computers (or your computer and modem 
in this case) together using ethernet, you need a special type of 
ethernet cable called a crossover cable - which is simply a normal 
ethernet cable wired slightly differently.

The cable you are using must not be a crossover cable - and so it works 
between a computer and a hub, but not directly between two computers.

You should be able to find more information on Google if you need it.

Hope that helps.

Andrew

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Tillman Hodgson
On Wed, Jan 14, 2004 at 08:10:19PM +0100, Antoine Jacoutot wrote:
 On Wednesday 14 January 2004 19:50, Tillman Hodgson wrote:
  On FreeBSD, source-based routing is done with the IPFW 'fwd' command (or
  the IPFilter 'pass out quick on int_2 to int_1' syntax) rather that
  using the `route` command. I'm doing that myself (with IPFilter) and it
  works well. It's confusing to set up initially because you have to take
  into account the interaction between normal routing and firewall-based
  source routing. If you're also NAT'ing and using dynamic IPs
  understanding how it all can be made to work is an enlightening
  experience ;-)
 
 Great :)
 This is fantastic, this is exactly what I need :)
 Now, I have to figure out out do to this for real using ipfilter.
 I have a 1 connexion with NAT+dyn IP and another one that's fixed.
 I'm impatient to test this.
 Thanks a lot !

If you're using IPFilter, you might be interested in the HOWTO:

  http://www.obfuscation.org/ipf/ipf-howto.html

The section on the to keyword is unfortunately very brief.

-T


-- 
Page 594: You will find that the Unix file system has a compelling
beauty: everything makes sense.
- Harley Hahn, _The Unix Companion_
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cabling problem?

2004-01-14 Thread HOLLOW, CHRISTOPHER
It does not work because you are not using the correct cable.  In order 
to directly connect to NICs (or NIC-to-Router) you need a cross-over 
cable.  The pin-through is different than a normal patch cable.  Google 
cross-over cable or just ask the guy behind the counter of your local 
computer store for one.

HTH,

Christopher Hollow
Technical Consultant
Marwan Sultan wrote:
Hello everyone,

 I'm Running FreeBSD 4.8-R, NATd, Firewall enabled.
 This box acting as a gateway.
 Modem Router calling the Internet and connected to rl0 in my FreeBSD
 and rl1 connected to HUB clients.
 When I plug the network cable From the Modem router directly to my 
 FreeBSD in the first NIC rl0 it doesnot take the internet connection.
 and nor the light in the rl0 lights.!

 So to solve the problem, I have a small HUB i pluged the cable from
 the router to hub (uplink) and from the HUB to rl0 then everything
 works fine, and the NIC light comes on, and NATd works great
 also all clients have the internet access.
 The question is:
 Why the network cable from Modem router to box directly doesnot
 work in the time from Modem router to HUB and from HUB  to BSD 
 box works fine?
  
 Thank you all.
--
Marwan Sultan

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IPFW 'keep state' 'limit'

2004-01-14 Thread Dan Pelleg
fbsd_user [EMAIL PROTECTED] writes:

 The FBSD 5.2 man IPFW does not say anything different that the 4.9
 man IPFW.
 Are you saying the man doc in 5.2 is wrong?

 5.2 is using the ipfw2 code for IPFIREWALL I believe.

 Documenting the fact that 'limit' performs the same function as
 'keep state' in additional to 'limit' stated purpose is very
 important information. Also that 'limit' and 'keep state' can not be
 coded together is another very important piece information that need
 to be documented in the man IPFW data.

 Should this be submitted as an problem report?



 -Original Message-
 From: Dan Pelleg [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, January 14, 2004 9:47 AM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED] ORG
 Subject: Re: IPFW 'keep state'  'limit'

 fbsd_user [EMAIL PROTECTED] writes:

 Reading the man page on IPFW rule syntax, I get the impression
 that
 the 'limit' option uses the stateful dynamic rules table. But it's
 unclear whether 'keep state' and limit can be used on the same
 rule,
 or if the limit option performs the 'keep state' function in
 addition to the limit function.

 So as an example

 $cmd 00390 allow tcp from any to any 22 in via dc0 setup
 keep-state
 limit src-addr 3

 will this work?


 limit implies keep-state, and you should really specify one or the
 other. If you specify both, ipfw won't complain, but ipfw2 will. So
 it's
 best to not do that.

 --

   Dan Pelleg




Your rule, given to IPFW2 (on a 4.X system), yields:

ipfw: only one of keep-state and limit is allowed

I wouldn't say the man page hides the first fact; it is reasonably careful
to say keep-state or limit in most places. 

It does, however, not mention that specifying both in the same rule is not
accepted. In fact it says that Zero or more rule options are accepted,
with both limit and keep-state listed as options (in the RULE OPTIONS
section - this is on a man page from around 5.1). Given this might surprise
people who move to 5.X and even lock them out, it might also be worth
mentioning in one of migration guides. I suggest you bring this up to the
doc@ list.

-- 

  Dan Pelleg
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: New installation: Hanging when trying to dial out

2004-01-14 Thread Quintin Riis
See http://speecart.chg.ru/handbook/disks-bios-numbering.html

		Quintin

John Adams wrote:
On Tuesday, January 13, 2004, at 06:57 PM, fbsd_user wrote:

Try this command to mount the cd drive.
First load the 4.6 install cd in cd drive
mount /cdrom
cd /cdrom
ls
cd /
umount /cdrom


Success!

look at the  etc/fstab to see how cd drive is configured


DeviceMountpointFStypeOptionsDumpPass
/dev/acd0c/cdromcd9660ro,noauto00
Explain how you switch from booting winme to booting FBSD




I've yet to learn how to tell the bootloader to boot from the primary 
drive, so I just change the order of the drives in BIOS.
=

Verify floppy drive works in winme.


And there's the answer--I believe this drive is dead. I recall it making 
noises some time ago, and it must've gone over the edge. Fortunately, 
Atlanta has some good stores--I've been wanting to pop down to the one 
by Tech for a while now, and this is as good an excuse as any.

This brings me back to the modem question. I can type in the entries 
from ppp.conf and ppp.log--or I suppose I could try to learn to write to 
the FAT partition elsewhere on this drive, which I'm not unwilling to do 
(shouldn't be hard, which is what I thought about the modem.)

Advice? And thanks again,

John A

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]





___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Error in Makefile?

2004-01-14 Thread David Meier
I am trying to build mod_jk-1.2.5 from source on 4.9-RELEASE and I
encounter at the end of the build process the following error:

...
/usr/local/bin/bash /usr/local/apache/build/libtool --silent
--mode=install cp `pwd`/mod_jk.so
libtool: install: you must specify a destination
Try `libtool --help --mode=install' for more information.
*** Error code 1

Whe looking at the Makefile it looks like the build stops at that command:

...
mod_jk.so: mod_jk.la
$(LIBTOOL) --mode=install cp $ `pwd`/$@
...

I have no expirience in writing Makefiles, however, it looks like that
line does not work on FreeBSD.

Anyone any idea to rewrite the line or to edit the command manually? Thanks.

Dave.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: -HUP 1 command

2004-01-14 Thread Quintin Riis
I believe the common command for this is -SIGHUP.  This depends on the 
software though.
		Quintin

fbsd_user wrote:

After making changes to syslog.conf and newsyslog.conf 
what is the command to enable the changes.

Is it  Kill -HUP 1

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Information

2004-01-14 Thread Quintin Riis
Berkeley Software Distribution
Advanced Micro Devices
Scalable Processor ARChitecture
		Quintin

Kevin R. Lee wrote:

Hello, I was wondering what BSD stands for? Also what does AMD and Ultra SPARC stand for? Any information would be very helpful.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: one more

2004-01-14 Thread Quintin Riis
Those are 64bit CPUs developed by Intel and AMD.

		Quintin

Kevin R. Lee wrote:

This is the last one! What does IA-64 and AMD64 stand for?

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: -HUP 1 command

2004-01-14 Thread Chad Leigh -- Shire.Net LLC
On Jan 14, 2004, at 1:58 PM, Quintin Riis wrote:

I believe the common command for this is -SIGHUP.  This depends on the 
software though.
		Quintin
It is called SIGHUP but to send it you use -HUP to the kill command.

Chad

fbsd_user wrote:

After making changes to syslog.conf and newsyslog.conf what is the 
command to enable the changes.
Is it  Kill -HUP 1
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: binary execute restrictions

2004-01-14 Thread Charles Swiger
On Jan 13, 2004, at 9:04 PM, Lowell Gilbert wrote:
I suspect that a restricted shell isn't going to be appropriate in
this case.  Restricted shells are useful for avoiding shooting
yourself in the foot, but they're really not intended to be secure.
You're probably right that my suggestion is only a partial solution, 
but using a restricted shell and chroot()ing these users to a home 
directory that isn't owned/writable by that UID should come pretty 
close to solving the Original Poster's problem.

It might also be the case that the OP might be better off not 
generating normal user accounts, but using application-specific user 
databases (such as found in software like Cyrus) to give controlled 
access to a particular service.

--
-Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: -HUP 1 command

2004-01-14 Thread Jez Hancock
On Tue, Jan 13, 2004 at 08:53:44PM -0500, fbsd_user wrote:
 After making changes to syslog.conf and newsyslog.conf 
 what is the command to enable the changes.
 
 Is it  Kill -HUP 1
Note that process with PID 1 is usually the init process - sending a HUP
signal to it will produce undesirable effects similar to restarting the
whole server.  Have a go and see what happens if it's not a production
server :P

-- 
Jez Hancock
 - System Administrator / PHP Developer

http://munk.nu/
http://jez.hancock-family.com/  - personal weblog
http://ipfwstats.sf.net/- ipfw peruser traffic logging
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How to Select Compiler Version when Installing Port

2004-01-14 Thread Daniel J Cain Jr.
I am trying to get vmailmgr-0.96.9 to build from the ports collection of
FreeBSD 5.1-RELEASE.  I 'think' it will work if I can have the port use
a different compiler version during the build.  I have been unable to
figure/find out how (if?) this is possible.  By default it seems to use
gcc 3.2.2, and I have the port install of gcc 2.9.5 available I just
don't know how to make 'make' use the older version.

I am pretty spoiled with the ports collection in that I almost never
have to compile anything without using a port.  But I have managed to
alter the source in work/ to get past a couple of the errors
(missing/incorrect includes).  Still getting stumped by lots of errors
along the lines of this:

-
../lib/libvmailmgr.a(cdb_get.o): In function `cdb_reader::get(mystring
const)':
cdb_get.o(.text+0x355): undefined reference to `operator new(unsigned)'
-

I don't know how to work through those errors, and from what I've found
on the net it doesn't compile with gcc 3+.  So now I would like to try
and using gcc 2.9.5 and see if that doesn't clear up the final
(hopefully) issue.

Any insight you can provide would be greatly appreciated.  Thanks in
advance for your time.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


T1 / Dial-Up Software[Kind of long]

2004-01-14 Thread Ryan Moe
This doesn't necessarily pertain to FreeBSD(although it will depending 
on what kind of answers I receive) but it's interesting nonetheless.  I 
work for an ISP and one of the services we offer is dial-up internet.  
Our 3COM hardware( the CSU/DSUs and the DSP cards)  is on its last legs 
and requires frequent reboots.  I've noticed that you can purcahse T1 
cards that support up to 4 T1 lines and contain the CSU/DSUs on them for 
a few hundred dollars.  The problem is that you then have to get DSPs 
for them and that raises the cost to around $5000.  For $5000 we can get 
more shitty 3COM hardware than we'd know what to do with, so thats not a 
good solution.  I was thinking, why can't the DSPs be emulated?  Does 
anybody know of any software that will emulate some number of DSPs(92 
would be the max for 4 T1 lines) and interface them with a CSU/DSU?  If 
no software exists what brand of hardware do you recommend for this type 
of application.  There seems to be only about 6 companies that make this 
stuff and none of them seem that great.  I appreciate any feedback I 
recieve.

Thanks,
Ryan
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Updating DNS after DHCP

2004-01-14 Thread Scott Mitchell
On Tue, Jan 13, 2004 at 01:16:23PM +0100, Ruben de Groot wrote:
 On Mon, Jan 12, 2004 at 11:09:38PM -0600, John typed:
  I see that some Microsoft systems send out an update to DNS with
  the system name.  I configured my DNS server to accept these updates,
  but now that I'm running FreeBSD on a laptop - how do I do that
  from FreeBSD? I've looked at the dhclient man pages and the named
  man pages and the pages that they refer to and I didn't pick up
  any hints there.
  
  Can anyone give me a clue? (Yeah - I'm clueless...)
 
 I believe this is done by the nsupdate(8) program.

You can also have your DHCP server do the updates - which makes sense, as
it's the thing handing out the addresses to your client machines.  I have
this working reasonably well with isc-dhcpd, for Windows and FreeBSD
clients.

You want to read the 'DYNAMIC DNS UPDATES' section of the dhcpd.conf(5)
manpage, and whatever docs your DNS server has on this topic.  There are
plenty of examples of working configs for isc-dhcpd and bind to be found on
the web.

HTH,

Scott

-- 
===
Scott Mitchell   | PGP Key ID | Eagles may soar, but weasels
Cambridge, England   | 0x54B171B9 |  don't get sucked into jet engines
scott at fishballoon.org | 0xAA775B8B |  -- Anon
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How to install FreeBSD 5.1 from USB HDD

2004-01-14 Thread cbcornelius
Hello,

As my subject my or may not indicate I have a 40GB external usb hard drive that I 
would like to install FreeBSD to and boot it from.  

Upon setup it won't recognise the usb.  Is there a way to do this?


Thanks,
Chris

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


mcAfee + postsfix + mailscanner

2004-01-14 Thread Kenzo
Anyone using the above configs?
I can't get mcafee to scan attachments.
please help.
thanks.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: (Yet Another) Home Networking Question

2004-01-14 Thread Rishi Chopra
A question about the 'me' keyword and ipfw: The man page for ipfw states 
the following:

 me  matches any IP address configured on an interface in the
system.  The address list is evaluated at the time the
packet is analysed.
If I set my oif to 'rl0' (a nic in my system) and I set the oip to 'me', 
what should the onet address be set to?  Can I set the onet address to 
'me' also?  The oif has its address assigned by DHCP.

-R

Lowell Gilbert wrote:

Rishi Chopra [EMAIL PROTECTED] writes:

 

Perhaps someone can help me with this small part of rc.firewall:

[Ss][Ii][Mm][Pp][Ll][Ee])
   
   # This is a prototype setup for a simple firewall.  Configure this
   # machine as a named server and ntp server, and point all the machines
   # on the inside at this machine for those services.
   
   # set these to your outside interface network and netmask and ip
   oif=ed0
   onet=192.0.2.0
   omask=255.255.255.0
   oip=192.0.2.1
   # set these to your inside interface network and netmask and ip
   iif=ed1
   inet=192.0.2.1
   imask=255.255.255.0
   iip=192.0.2.17
I'm curious about the difference between 'inet' and 'iip', what each
one stands for, and how to configure 'onet/oip' if the outside
interface network is configured via DHCP.
   

Look a little more closely at the comment right before those lines.
'iif' is Inside InterFace, 'inet' is Inside NETwork, 'imask' is
Inside netMASK, and 'iip' is Inside IP address.
If your ouside address is assigned by DHCP, you can't set those in the
script.  You can use the me keyword (see man 8 ipfw), or set up
the firewall in a DHCP hook, or just skip the address (it doesn't
actually give you any extra security if you've got a single address on
a single Ethernet network).
 

I'm also curious about this little snippet (under the 'simple' profile):

   # Everything else is denied by default, unless the
   # IPFIREWALL_DEFAULT_TO_ACCEPT option is set in your kernel
   # config file.
What happens if this option is set in my kernel config file?  Can I
safely comment out this line and use the 'simple' profile without
affecting natd?
   

It doesn't affect natd either way.  Defaulting to deny is definitely
the way to configure a firewall for security purposes -- don't accept
anything you haven't explicitly configured yourself to let in.
 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to Select Compiler Version when Installing Port

2004-01-14 Thread Scott W
Daniel J Cain Jr. wrote:

I am trying to get vmailmgr-0.96.9 to build from the ports collection of
FreeBSD 5.1-RELEASE.  I 'think' it will work if I can have the port use
a different compiler version during the build.  I have been unable to
figure/find out how (if?) this is possible.  By default it seems to use
gcc 3.2.2, and I have the port install of gcc 2.9.5 available I just
don't know how to make 'make' use the older version.
I am pretty spoiled with the ports collection in that I almost never
have to compile anything without using a port.  But I have managed to
alter the source in work/ to get past a couple of the errors
(missing/incorrect includes).  Still getting stumped by lots of errors
along the lines of this:
-
../lib/libvmailmgr.a(cdb_get.o): In function `cdb_reader::get(mystring
const)':
cdb_get.o(.text+0x355): undefined reference to `operator new(unsigned)'
-
I don't know how to work through those errors, and from what I've found
on the net it doesn't compile with gcc 3+.  So now I would like to try
and using gcc 2.9.5 and see if that doesn't clear up the final
(hopefully) issue.
Any insight you can provide would be greatly appreciated.  Thanks in
advance for your time.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

you should be able to set the value of CC in the environment, or pass it 
through as a Make environment variable to use your choice of compiler...

normally you can execute:
CC=/usr/local/gcc-N.NN/bin/gcc make target
although with the BSD ports system, you may need to do it differently, 
either in the top level Makefile or via:
make -E CC=/usr/local/gcc-N.NN/bin/gcc

Scott

Scott

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Information

2004-01-14 Thread Scott W
Quintin Riis wrote:

Berkeley Software Distribution
Advanced Micro Devices
Scalable Processor ARChitecture
Quintin

Kevin R. Lee wrote:

Hello, I was wondering what BSD stands for? Also what does AMD and 
Ultra SPARC stand for? Any information would be very helpful..

Umm, and what does Google stand for?  Anyone?  It _surely_ isn't a 
search engine, right?

Sorry, really couldn't help it.  People often enough (including myself) 
ask on lists for info that could be dug up in the Handbook or some list 
searching, but asking after obviously not even bothering to even attempt 
to do any 'homework' on Google (or other search engine) can quickly take 
a very useful mailing list and turn it into a waste of spaceeven 
moreso when 'abused' (IMHO of course) by several more followups, any one 
of which could have been found in less time than it took to get a 
response from the (overly gracious) list

Scott

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Loading balancing with more than one ISP.

2004-01-14 Thread Antoine Jacoutot
On Wednesday 14 January 2004 21:42, Tillman Hodgson wrote:
 If you're using IPFilter, you might be interested in the HOWTO:

   http://www.obfuscation.org/ipf/ipf-howto.html

 The section on the to keyword is unfortunately very brief.

Yes I already checked this and as you said, it was poor concerning my issue.
Thanks.

Antoine

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Solution to Routing Networks

2004-01-14 Thread Nicolás de Bari Embríz G . R .

Hi all thanks for all your answers.

The solution that i found was to add to my ipnat.rules this lines:

map dc1 192.168.10.0/24 - 0/32 portmap tcp/udp auto
map dc1 192.168.10.0/24 - 0/32

and to my rc.conf this :

static_routes=linux
route_linux=192.168.0.0/16 192.168.1.3



regards.



Hi all, I need some help routing or making Nat on a LAN.

I have something like this:


  I N T E R N E T
 -
^ ^
| |
fxp0  public IP   public IP
| |
 FreeBSD server  LINUX server
| |
dc0   192.168.10.1|
dc1   192.168.1.1 ^   192.168.1.3
^ |   ^
| |   |
| |   |
   
  |   Switch/Hub   |
   
   |   |
-- -
   |  LAN  A  |   | LAN  B  |
   | 192.168.10.2-254 |   | 192.168.1.4-100 |
-- -

I have running a FreeBSD server as a gateway and DHCP, the server share
the Internet to all the computers on LAN A (192.168.10.0/24).

The server have 3 network cards:

fxp0 is public IP.
dc0  is the gateway for the LAN A 192.168.10.1.
dc1  has IP 192.168.1.1 ( need help with this ).


Right now i am just using fxp0 and dc0 so any computer on the LAN A
192.168.10.2-254 can have Internet, my ipnat.rules file looks like this:

--
map fxp0 192.168.10.1/24 - 0/32 portmap tcp/udp auto
map fxp0 192.168.10.1/24 - 0/32
--

until that point everything just work OK.

There is another network, I will call it LAN B, this LAN make the same
thing that i am doing with the FreeBSD Server, but instead it uses LINUX,
the m achine have 2 network cars.

eth0 has a public IP.
eth1 is the gateway for the LAN B 192.168.1.3


Both networks are connected to the same switch/hub, but now i need that
the computers of LAN A can see ping computers on LAN B.

If I configure the third nick dc1  on the FreeBSD server to have an IP
on the range of LAN B for example with ip 192.168.1.1, then I can see all
the computers from both LAN's, I can ping, telnet, ssh etc. to both
192.168.10.X and 192.168.1.X. networks standing on the FreeBSD server.


What i want to do is that a computer on LAN A with an IP on the range of 
192.168.10.2-254 can ping, telnet, ssh, etc. to a computer on LAN B
192.168.1.X.

How can i solve this problem, is this is a route or Nat problem ?

There is one more issue, I can't touch the LINUX SERVER I can just be a
client or join the LAN by configure a nic with a IP on the range of
192.168.1.0/24.


I have been trying to fix this with static routes but i am not having luck.


Any help will be apreciated.


regards.


-- 
[EMAIL PROTECTED]
key ID 1EF56FDC


-- 
[EMAIL PROTECTED]
key ID 1EF56FDC


-- 
[EMAIL PROTECTED]
key ID 1EF56FDC


-- 
[EMAIL PROTECTED]
key ID 1EF56FDC
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: -HUP 1 command

2004-01-14 Thread Christian Laursen
Jez Hancock [EMAIL PROTECTED] writes:

 On Tue, Jan 13, 2004 at 08:53:44PM -0500, fbsd_user wrote:
  After making changes to syslog.conf and newsyslog.conf 
  what is the command to enable the changes.
  
  Is it  Kill -HUP 1
 Note that process with PID 1 is usually the init process - sending a HUP
 signal to it will produce undesirable effects similar to restarting the
 whole server.  Have a go and see what happens if it's not a production
 server :P

I usually kill init with a SIGHUP after editing /etc/ttys and it has so
far never caused me any trouble.

Actually this is also explained in the init(8) manpage:

 Line status (on, off, secure, getty, or window information) may be
 changed in the ttys(5) file without a reboot by sending the signal SIGHUP
 to init with the command ``kill -HUP 1''.  On receipt of this signal,
 init re-reads the ttys(5) file.

-- 
Best regards
Christian Laursen
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ERROR: Unable to write data to disk idad1

2004-01-14 Thread Didier Wiroth
Hi,

I run freebsd 5.2 on a compaq proliant ml 350 with raid smartarray 221 controller.

I'm running the system with two (hardware) virtual volumes (4 disks).

I tried to add a partition (with /stand/sysinstall) to idad1s1. This should become 
idad1s1f but when I try to write the changes to disk the following error appears:
ERROR: Unable to write data to disk idad1!
Unfortunately I'm not able to add any new partitions, why, what's wrong?

P.S I'm doing this over ssh network access, so please don't tell me I have to 
physically be present at the machine to restart in single mode ;-)

thx  a lot

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


killall -HUP xyz

2004-01-14 Thread Didier Wiroth
Hi,
This might sound stupid but I was asking myself as a newbie, when I launch:
chroot /chroot/httpd /usr/local/apache/bin/httpd
I change the config file and execute
killall -HUP httpd
Is apache now still executed in the chroot environment?

thx a lot



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Driver compilation problem

2004-01-14 Thread jason
Admin wrote:

When I try to run /usr/share/examples/drivers/make_device_driver.sh to
generate the skeleton driver, it stops due to compilation errors caused by
the rman.h file. The errors are logged into err_log file and are attached as
sy3b1.zip file.
Would you please advise a.s.a.p why these errors are happening and how they can be corrected?

Regards

Gurdial Chandra
Sycos AES
 



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

If that is the same example I looked at serval months ago, I think it 
was written for an isa decive a while back.  Look for a time and date in 
the source files, if it is too old it may no longer compile on a new 
machine.  I am just guessing here.
Jason

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ml350 smart array 641

2004-01-14 Thread jr315
I've been asked by a customer to setup a freebsd
server on a brand new compaq ml350 with a Smart Array
641. need to run raid 5. 
has anyone had any luck with this server/raid controller???

__
Do you Yahoo!?
Yahoo! Hotjobs: Enter the Signing Bonus Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


changing hostname

2004-01-14 Thread Marco Beishuizen

Hi,

I would like to change the hostname of one of my machines without a
reboot. Is it enough to change my rc.conf and run the /etc/netstart script
or do I have to do something else?

Thanks,

Marco

-- 
Please ignore previous fortune.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


sshd, how is this possible, security bug?

2004-01-14 Thread Didier Wiroth
Hi,

using freebsd 5.2 release.

Below you can see what is not commented out in my sshd_config file, which is almost 
the default:
#$FreeBSD: src/crypto/openssh/sshd_config,v 1.33 2003/09/24 19:20:23 des Exp $
#VersionAddendum FreeBSD-20030924
Protocol 2
ListenAddress x.y.z.x
LoginGraceTime 60
PubkeyAuthentication yes
PasswordAuthentication no
PermitEmptyPasswords no
PrintMotd yes
PrintLastLog yes
AllowGroups ssh
Banner /usr/local/etc/ssh/banner
Subsystem   sftp/usr/libexec/sftp-server

I'm using ssh windows client version 3.2.9 from:
http://www.ssh.com
I get a passphrase prompt, I enter xyz, press enter, than I'm prompted to enter my 
password, I enter the password and I have my prompt:
[EMAIL PROTECTED]:

Is this a security bug, a misconfiguration or what?

I thought I had disabled password authentication with: PasswordAuthentication no

thx a lot

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


trouble mounting a zip drive on parallel port

2004-01-14 Thread Alex
Here's on of those things that should be simple but is
giving me a surprising number of headachs...

I'm trying to mount a parallel zip drive on FreeBSD
4.8. I did re-configure my kernel to include the vpo
driver and I get the following message on dmesg:

vpo0: Iomega VPI0 Parallel to SCSI interface on
ppbus0
vpo0: EPP mode
vpo0: VP0 error/timeout (5)
vpo0: VP0 error/timeout (5)

The errors are a little worrying, but it does seem to
be seeing the drive. Then, when trying to mount it, I
get this error:

mount_msdos: /dev/da0s4: Device not configured

I'm sure there's something very small and simple that
I'm doing wrong, and I'd be grateful if someone would
kindly point it out.

Thanks a lot,
Alex

 

__
Do you Yahoo!?
Yahoo! Hotjobs: Enter the Signing Bonus Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Anyone got MythTV or Freevo working on FreeBSD?

2004-01-14 Thread Richard Coleman
I'm building a PVR (personal video recorder) right now that will be 
based on either MythTV or Freevo.  I'm building it using the WinTV PVR 
350 card.  From looking at the web pages and documentation for each 
project, it seems that both of these projects are heavily Linux-centric.

Has anybody had success in building either of these packages on a 
FreeBSD system?

Richard Coleman
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: sshd, how is this possible, security bug?

2004-01-14 Thread Jonathan T. Sage
Didier Wiroth wrote:

Hi,

using freebsd 5.2 release.

Below you can see what is not commented out in my sshd_config file, which is almost 
the default:
#$FreeBSD: src/crypto/openssh/sshd_config,v 1.33 2003/09/24 19:20:23 des Exp $
#VersionAddendum FreeBSD-20030924
Protocol 2
ListenAddress x.y.z.x
LoginGraceTime 60
PubkeyAuthentication yes
PasswordAuthentication no
PermitEmptyPasswords no
PrintMotd yes
PrintLastLog yes
AllowGroups ssh
Banner /usr/local/etc/ssh/banner
Subsystem   sftp/usr/libexec/sftp-server
I'm using ssh windows client version 3.2.9 from:
http://www.ssh.com
I get a passphrase prompt, I enter xyz, press enter, than I'm prompted to enter my 
password, I enter the password and I have my prompt:
[EMAIL PROTECTED]:
Is this a security bug, a misconfiguration or what?

I thought I had disabled password authentication with: PasswordAuthentication no

thx a lot

you did.  from ssh's point of view.  however, pam is enabled, and it 
allows password authentication.  to do what you're asking, edit 
sshd_config again, and toggle this line

# Change to no to disable PAM authentication
ChallengeResponseAuthentication no
this is my fix, it allows only pubkey logins.  i'm sure this is also 
possible with PAM, and actually, would love to know how that works too :)

hope this helps ~j



pgp0.pgp
Description: PGP signature


Re: changing hostname

2004-01-14 Thread Jonathan T. Sage
Marco Beishuizen wrote:

Hi,

I would like to change the hostname of one of my machines without a
reboot. Is it enough to change my rc.conf and run the /etc/netstart script
or do I have to do something else?
man hostname(1):

NAME
 hostname -- set or print name of current host system
SYNOPSIS
 hostname [-s] [name-of-host]
a simple

# hostname new.host.name

should do what you're asking.  also add it to rc.conf so the changes 
stay on next reboot

~j



pgp0.pgp
Description: PGP signature


Re: Xsane, HP ScanJet 2200C, and a grinding noise...

2004-01-14 Thread Joe Altman

On Mon, Jan 05, 2004 at 06:59:48PM -0500, Joe Altman wrote:
 Has anyone seen any issues with XSane and a scanner using the Plustek
 bits? The scanner I use has an LM9832 National SemiConductor/Plustek
 chip; the scanner is USB, and prior to an upgrade to Sane it never
 made a grinding noise. It never core dumped, either.
 

An updated port has eliminated the core dump. A preview scan still
elicits/causes a grinding noise, but scanning works just fine, so
far.

-- 
The George W. Bush Five Point Economic Recovery Plan:
  Hunt, Kill, Eat, Hump, Shit.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Anyone got MythTV or Freevo working on FreeBSD?

2004-01-14 Thread Anish Mistry
On Wednesday 14 January 2004 08:43 pm, Richard Coleman wrote:
 I'm building a PVR (personal video recorder) right now that will be 
 based on either MythTV or Freevo.  I'm building it using the WinTV PVR 
 350 card.  From looking at the web pages and documentation for each 
 project, it seems that both of these projects are heavily Linux-centric.
 
 Has anybody had success in building either of these packages on a 
 FreeBSD system?
 
There is a skeleton for freevo that is in the PR database waiting to be 
committed.  You can grab that and drop it in your ports and compile and it 
should work, at least it did for me about a month ago.  There is also a 
driver to use the hardware mpeg encoder on your card.  Check the 
multimedia mailing list archives for your card name.

-- 
Anish Mistry


pgp0.pgp
Description: signature


Re: choice of boot manager

2004-01-14 Thread Rob
Lee Shackelford wrote on Thursday January 15, 2004:

 I am planning a multiple operating system installation on a Compaq
Proliant
 5000.  The purpose of the installation is hobbyist and instructional. The
 computer does not provide network management services.  The proposed
 operating systems are Windows 95, FreeBSD, and Windows 2000 Server.  A
 fourth operating system may be added at a later date.  Have you had any
 experience with any of the following boot manager programs that may
suggest
 their relative applicability to this project?  The boot manager programs I
 am considering include the following:  LILO, GRUB, MATT, NTLDR/BOOT.INI,
 RANISH, and the boot loader that comes with FreeBSD, the name of which I
do
 not know.  Any information about positive or negative experiences with any
 of these programs in a multiple operating system configuration would be
 appreciated.  Your truly, Lee Shackelford

The standard FreeBSD boot loader can boot Windows systems. Its main problem
is cosmetic - Linux and FreeBSD slices are recognised, but Windows is
displayed as '???' and these labels cannot be customised.

I use grub-0.92 (/usr/ports/sysutils/grub/ or a package on the 3rd CD). It's
thoroughly customisable and supports a wide range of operating systems -
some Linux distributions use it instead of LILO.

After installing the package, you have to copy a few files and run the
grub(8) program to install it on the MBR. In an attempt to be OS-neutral,
grub uses its own naming scheme for disks: (hd0,0,a) is the first BSD
filesystem on the first slice of the first disk.

Here's my boot menu:

  # defaults
  color   light-gray/black white/blue
  default saved
  timeout 10

  # Desktop
  title   FreeBSD 4.9-RELEASE
  root(hd0,a)
  kernel  /boot/loader
  savedefault

  # Win2k
  title   Windows 2000 Professional
  root(hd0,1)
  chainloader +1
  savedefault

  # shutdown
  title   (power off)
  halt

The 'savedefault' feature is handy - whichever OS you select will be the
default next time. Without this, rebooting the non-default OS is a real
pain.

I've had a couple of tries at using the NT boot.ini method. The procedure
has been well documented by many people, but it never went smoothly for me -
I always had the feeling that Windows didn't really want to boot another OS.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: changing hostname

2004-01-14 Thread Marco Beishuizen
On stardate Wed, 14 Jan 2004, the wise Jonathan T. Sage entered:

 a simple

 # hostname new.host.name

 should do what you're asking.  also add it to rc.conf so the changes
 stay on next reboot

Well, I did this and it looks fine now. Thanks!

Marco

-- 
Man is the only animal that can remain on friendly terms with the
victims he intends to eat until he eats them.
-- Samuel Butler
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


  1   2   >