Re: Network configuration

2004-07-09 Thread Thomas Farrell
Hello,
 I see you have a problem here.  First what kind of  connectivity does your
DSL provider use? Companies like Covad, VerizonEast, Earthlink & AOL use
pppoe.  So the first thing is to figure out what you provider requires DHCP,
Static, or pppoe. Then it is very simple to begin nating between the two
Networks.


biggreenwall#ipfw add divert natd all from any to any via rl0

biggreenwall# cat /etc/dhcpd.conf
subnet 192.168.50.0 netmask 255.255.255.0 {
range 192.168.50.2 192.168.50.254;
option routers 192.168.50.1;
}

biggreenwall#dhcpd rl1 -q


biggreenwall# ifconfig -a
rl0: flags=8843 mtu 1500
inet 66.24.50.87 netmask 0xff00 broadcast 66.24.50.255
inet6 fe80::230:bdff:fe26:4b28%rl0 prefixlen 64 scopeid 0x1
ether 00:30:bd:26:4b:28
media: Ethernet autoselect (100baseTX )
status: active
rl1: flags=8843 mtu 1500
inet 192.168.50.1 netmask 0xff00 broadcast 192.168.50.255
inet6 fe80::230:bdff:fe28:295b%rl1 prefixlen 64 scopeid 0x2
ether 00:30:bd:28:29:5b
media: Ethernet autoselect (10baseT/UTP)
status: active
biggreenwall# cat /etc/rc.conf
"cut to save space"
defaultrouter="66.24.50.1"
gateway_enable="YES"
hostname="biggreenwall"
ifconfig_rl0="inet 66.24.50.87netmask 255.255.255.0"
ifconfig_rl1="inet 192.168.50.1 netmask 255.255.255.0"
router_enable="YES"
sendmail_enable="NO"
natd_enable="YES"
natd_interface="rl0"   # the id of your public NIC card
natd_flags="-m"
biggreenwall#


RFC1918


- Original Message -
From: "Nathan Kinkade" <[EMAIL PROTECTED]>
To: "Terrence Koeman" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, July 08, 2004 1:49 PM
Subject: Re: Network configuration




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


Re: Redirection with a bridge ?

2004-06-19 Thread Thomas Farrell
You can do it with a cisco like this. You can pickup a used 250x series
cheap. Just make sure you are using IOS 12 >

ip nat pool trans 10.10.10.0 10.10.10.254 netmask 255.255.255.0
ip nat inside source list 1 interface Ethernet0 overload
ip nat inside source static tcp 10.10.10.13 110 interface Ethernet0 110
ip nat inside source static tcp 10.10.10.13 80 interface Ethernet0 80
ip nat inside source static tcp 10.10.10.13 25 interface Ethernet0 25
ip classless
ip route 0.0.0.0 0.0.0.0 Ethernet0

- Original Message -
From: "Matt Juszczak" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 18, 2004 7:05 PM
Subject: Redirection with a bridge ?


> Hello all,
>
> Is there a way to do IP redirection without using layer 3? (IPNAT or
> routing)?  I have a bridge setup and want to redirect any port 80
> traffic outgoing through the bridge to a specific server  but it
> seems I can only do this with ipfw's forward/fwd or ipnat's rdr commands
> ... which are all layer 3 oriented and dont work with just a bridge...
>
> Any ideas?
>
> Thank you in advance for anyone's help,
>
> Matt
> ___
> [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]"


how to extract 512 bytes from a file

2004-06-18 Thread Thomas Farrell
  I am trying to recover some files which were on a windowz system,
which crashed go figure so someone wiped out the drive format and then
relized that they had important files on the drive. They then used sometype
of recovery software to extract them and now I have them. These files are
supposed to be AVI format but when I open them in a hex editor and extract
sections they are not part of an AVI file.  It looks like the recovery
software just read entire sectors and called them an avi file. I can clearly
see the html of cached web pages, and pointers to applications. I do have
some files that seem to be almost intact and in the correct format but the
header preamble of the file is missing . I was thinking I could take a
working avi and extract the first 512 bytes and insert it into the beginning
of a bogus file. Does anyone think this may work ? Any idea how I can
accomplish this ? I have tried with my hex editor extracting the first 512
bytes to a file like 1st512 and then  "cat corruptfile >> 1st512" and then
"mv 1st512  goodmovie.avi" but this is not working.  Am I wasting my time ?
Do I smoke too much weed ? Is this the wrong list for this question ?


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


Re: sendmail issues

2004-06-16 Thread Thomas Farrell
Not sure totally understand question.  I will take a stab at it.  sendmail
uses a file /etc/mail/access to controll relaying. It actually does not use
this file it uses /etc/mail/access.db  but this is a database file "hash"
which cannot be edited by people of ordinary intelligents or at least not
me.   Most probable cause of (of f network) users not being able to sendmail
is a relaying restriction. You may want to look into pop b4 smtp. Pop b4
smtp work's by clients authenticate against pop3 first the source IP of
client is added to  /etc/mail/access, access is turned into access.db
"makemap"  and sendmail is restarted and then client sends.

pop-before-smtp
http://popbsmtp.sourceforge.net/


All configuration files for sendmail are located in /etc/mail/
Example startup/stop script is located in /usr/local/etc/rc.d
Or you can just type  "Shell>ps -auxwww | grep send"  and then run "kill -9
PID"  to stop and "kill -HUP PID" to just restart.

- Original Message -
From: "Bernard Rice" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 16, 2004 9:17 PM
Subject: sendmail issues


> Hello all,
>
>
>
> I'm having problems sending and receiving mail to and from my outside
> network.  All interfaces are up,and DNS is operating fine.  I've done not
to
> the setting.  I have rebooted the system which did not help. My
relay-domain
> addresses are still intact.
>
>
>
> The server is running 5.1 release. There are some patches on the system. I
> do not know a lot about Freebsd and less about sendmail as I inherited
this
> system from the ex-admin.
>
>
>
> Any HELP is appreciated
>
> ___
> [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: 3com 3c905 watchdog error

2004-06-15 Thread Thomas Farrell
Is that an ISA card? If so 3com use to have a utility to change IRQ & DMA. I
have used it with building LRP boxes. It may be quicker to test with another
card you may find there is someother problem.

- Original Message -
From: "Pat Hayes" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 15, 2004 6:02 PM
Subject: 3com 3c905 watchdog error


> Undoubtedly this problem has been covered many times. I am not very savy
> with Freebsd.
>
>
>
>
>
> I am using Freebsd 4.9 compiled for use with smp. The system has a Promise
> Fasttrak tx2 100 raid card using 4x40 in a raid 0, which is currently
acting
> as a small file server for my lan. Whenever I copy large files or a large
> number of smaller files (mp3's) off the server the system reboots or worse
> yet it reboots. The system has a 3com 3c905b-tx nic in the system. I have
> noticed that if I set my other machine, to which I wish to copy the files
> to, to run at 10mbit's and leave the freebsd box at 100mbit/sec the crash
> takes much longer to happen. Normally it would crash within 3-5 minutes,
so
> not immediately, and much longer, say 20 minutes if I copy at 10mbit/sec.
I
> have also noticed that if I copy 1 600 meg file off, it will not crash,
yet
> if I copy 100 mp3's off, it crashes. The system is also running apache,
> sendmail and bind. Initially I was getting xl0 timeout errors. After doing
> some googling I discovered the possibility of a irq conflict. I
immediately
> took out any other cards in the system, sound/decoder, and moved the
network
> card and promise raid controllers around in slots until the bios post
screen
> showed no irq sharing or conflict. Yet the problem still remains. It is
here
> now that I've noticed that occasionally instead of locking up, it will
just
> reboot, although still most of the time it locks up.
>
>
>
> System information is:
>
>
>
> Abit Bp6 with dual Celeron 366's.
>
> Standard ide boot drive
>
> 4 ide 40 gig western digital drives on promise fasttrak tx2 100 raid
> controller
>
> 3com 3c905b-tx nic
>
> Nvidia geforce 2 video
>
>
>
> I think that's about all the standard stuff, nothing else in there.
>
>
>
>
>
> Any help would really be appreciated
>
>
>
> Pat
>
>
>
>
>
> P.S. Please accept in advance my apologies if this seems too simple or a
> dead subject, as I have just joined the mailing list. I really enjoy using
> freebsd, just seems easier than all the linux distro's.
>
>
>
> ___
> [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: limiting where a user can log in from

2004-06-13 Thread Thomas Farrell
What is the ip address of this server? and what accounts have no passwords?
you may want to take a look at the file /etc/hosts.allow
- Original Message -
From: "dave" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, June 13, 2004 9:26 PM
Subject: limiting where a user can log in from


> Hello,
> I've got a box that has two user's on it with no passwords, yes i know
i
> know that's a bad idea, but there it is. I only want them logging on via
the
> local network and not from telnet/ssh/anything related to the external
> interface which is rl0. I believe i should use something to do with
> login.access or login.conf, but am unsure as to what?
> Thanks.
> Dave.
>
> ___
> [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: Help With Selection of Database Application

2004-06-13 Thread Thomas Farrell
You might want to look at MySQL. There is tons of online resources. Here are
a few places to get started.
http://dev.mysql.com/doc/
http://www.cs.wcupa.edu/~rkline/mysqlEZinfo/perl_dbi.html
http://216.239.39.104/search?q=cache:YUq8C0ZDFEkJ:miner.chem.purdue.edu/Lect
ures/Lecture24.pdf++DBI+mysql+DBI+insert+data&hl=en&ie=UTF-8

http://www.info.lk/techweb/mysql/mysql_tutor.htm

http://perl.about.com/library/weekly/aa021401c.htm


Check out CGI/perl & learn a little about cpan and the DBI mdoule.











- Original Message -
From: "Bob Perry" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, June 13, 2004 7:48 PM
Subject: Help With Selection of Database Application


> I've had extensive experience with MS Access as a user
> and would like to port a comparable system into my FreeBSD
> box. Can anyone recommend a database application similar to
> Access?  I've looked through the ports but can't seem
> to readily make that distinction without the expertise
> of a DBA.
>
> If this is not the type of question supported by this
> mailing list, please disregard.
>
> Bob Perry
>
>
> --
> I've learned that whatever hits the fan will not be evenly
> distributed.
>
> FreeBSD 4.9-RELEASE-p2 #0
> ___
> [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: Problem with samba - windows clients reboot when saving.

2004-06-11 Thread Thomas Farrell
This behavior could be caused by  a virus/ trojan or worm. Sasser will
reboot windowz boxes. Get some AV software update it and scan your system.
If you only see this when your attempting to save files to the samba server
try shutting down application in an attempt to locate the bad process. You
might want to check the event log and  check with the samba peeps and
windows geeks. Also upgrade to samba 3

Latez



- Original Message -
From: "admin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 11, 2004 10:55 AM
Subject: Problem with samba - windows clients reboot when saving.


> hello:
>
> Freebsd 4.9
> Recent install world and kernel after cvsup
> Samba 2.2.8a
>
> The clients have files in their home directories and on a common share on
> the BSD box.
> Every so often when they make a change to a file and save it the client
> machine reboots.
> Clients run win98 and office XP with SP2.
>
> error for the log.smbd:
>   smbd version 2.2.8a started.
>   Copyright Andrew Tridgell and the Samba Team 1992-2002
> [2003/10/15 08:04:55, 0] lib/util_sock.c:read_data(436)
>   read_data: read failure for 4. Error = Connection reset by peer
> [2003/10/15 08:17:43, 0] lib/util_sock.c:read_socket_with_timeout(300)
>   read_socket_with_timeout: timeout read. read error = Connection reset by
> peer.
> [2003/10/15 08:17:43, 0] smbd/oplock.c:oplock_break(794)
>   oplock_break: receive_smb error (Connection reset by peer)
>   oplock_break failed for file HONDE OORLASTE.doc (dev = 27406, inode =
> 2861321, file_id = 3).
> [2003/10/15 08:17:43, 0] smbd/oplock.c:oplock_break(879)
>   oplock_break: client failure in break - shutting down this smbd.
> [2003/10/15 08:18:11, 0] lib/util_sock.c:read_data(436)
>   read_data: read failure for 4. Error = Connection reset by peer
> [2003/10/15 08:18:15, 0] smbd/oplock.c:request_oplock_break(1011)
>   request_oplock_break: no response received to oplock break request to
pid
> 934 on port 1127 for dev = 27406, inode = 2861321, file_id = 3
> [2003/10/15 08:20:21, 0] lib/util_sock.c:read_data(436)
>   read_data: read failure for 4. Error = Connection reset by peer
> [2003/10/15 08:38:18, 0] lib/util_sock.c:read_data(436)
>   read_data: read failure for 4. Error = Connection reset by peer
> [2003/10/15 08:42:08, 0] lib/util_sock.c:read_data(436)
>   read_data: read failure for 4. Error = Connection reset by peer
> [2003/10/15 08:49:09, 0] lib/util_sock.c:read_data(436)
>   read_data: read failure for 4. Error = Connection reset by peer
>
> There have been a lot more reboots that don't appear in the log - don't
know
> why.
>
> smb.conf :
> # Global parameters
> [global]
> workgroup = MATZIKAMA
> netbios name = BSD1
> encrypt passwords = Yes
> unix password sync = Yes
> preferred master = Yes
> domain master = Yes
> admin users = %S
> create mask = 0777
> directory mask = 0777
>
> [homes]
> valid users = %S
> read only = No
> browseable = No
>
> [shared]
> path = /usr/home/shared
> read only = No
> guest ok = Yes
> vfs object = /usr/local/lib/samba/recycle.so
> vfs options = /usr/local/etc/recycle.conf.default
>
> [printers]
> path = /var/spool/samba
> guest ok = Yes
> printable = Yes
> browseable = No
> [hp5000]
> comment = Hp 5000 at Amanda
> path = /var/spool/lpd/hp5000
> read only = No
> guest ok = Yes
> printable = Yes
> printer name = hp5000
> oplocks = No
> . and six more printers identical to this one.
>
> The problem appeared about 2 months after i upgraded to 2.2.8a
>
> I have set the permissions on the users files to 777 and checked ownership
> just to be sure. Still does the same.
> I'm not sure if the problem lies on samba office xp or win98. All
antivirus
> software on the clients have been disabled.
>
> Any help is needed urgently.
> Thanks in advance leon.
>
>
> ___
> [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: DNS + DHCP auto host updates.

2004-06-11 Thread Thomas Farrell
Here you go.  Here is an example of a dhcpd.conf entry

subnet 4.10.10.0 netmask 255.255.252.0 {
dynamic-dhcp range 4.10.10.2 4.10.13.254 {
option subnet-mask 255.255.252.0;
option domain-name "dsl-verizon.net";
option domain-name-servers 4.2.2.4,4.2.2.5,4.2.2.6;
option routers 4.10.10.1;
option dhcp-lease-time 14400;
option dhcp-renewal-time 7200;
option dhcp-rebinding-time 12600;
}
}
- Original Message -
From: "Ben Timby" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 11, 2004 12:02 PM
Subject: DNS + DHCP auto host updates.


> Hello, does anyone have a good guide for setting up DNS updates using
> ISC DHCP server? I want hosts on my network to become registered with
> DNS server when they recieve network configuration. I have not been able
> to find a guide or more information than what is in the man pages for
> dhcpd and bind. Any help is appreciated. Please reply to the list.
>
> Thanks.
> ___
> [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: Improper shutdown of system / Fragmentation Problems / Boot logs

2004-06-08 Thread Thomas Farrell
Sometimes  the power goes out and my machine shuts off . when I power it
backup it fails at check root file system. and drops me into a shell I run
fsck /dev/da0s1a   and answer yes to fixing of fragmented inodes.  figure
out what drive/partition root is mounted of  by typing df and then run fsck
on it.

ssigc# df
Filesystem  1K-blocks UsedAvail Capacity  Mounted on
/dev/da0s1a   1813422  1323568   344478239%/
ssigc#fsck /dev/da0s1a


- Original Message -
From: "Bruce Hunter" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 08, 2004 2:01 AM
Subject: Improper shutdown of system / Fragmentation Problems / Boot logs


> I am kinda new to FBSD, still kinda learning stuff. Anyway, when my
> system boots i see all kinda fragmentation information. How do I correct
> this? Any good reading material? Also, what should I do when I shutdown
> my system incorrectly and boot up again? Last questions! I promise. Is
> there a file that shows the data printed to screen durning boot?
> Probably, a log file.
>
> Thanks guys,
> Bruce
>
> ___
> [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: Anti-Spam app for sendmail

2004-06-08 Thread Thomas Farrell
Yes Mailscanner is good but you may have to jump through hoops to get it to
work with BSD . No matter what OS you will still need to install a bunch of
perl modules for mailscanner & spamassasin. If thats ok with you then they
are pretty good.  First your going to need a licensed version of sometype of
antivirus application you can always get freeB's  but they will eventually
run out. some of the AV for BSD  are panda, kaspersky,. macfee, and Sophos
& fprot . Both Fprot & Sophos have evaluation versions both are easy to
install and use. Your next choice is what mailscanner application to use. I
have setup mailscanner with the fprot & sweep succesfully on 4.8 could not
get it to work on 5.0 . I did not even try spamassasin because of all the
cpan mods needed.   I am using mailmonitor & sophos sweep works great I can
block files or file extentions types, block subject content,  quarantine
infected attachments, attempt to clean them.  You can go to sophos.com and
fill out evalutaions for both mailmonitor & sweep . One thing mailmonitor
needs to be run in linux compatibility mode and you need to install the
linux versions of sweep & mailmonitor .  They actually make software
packages for BSD. unfourtunatly mailmonitor is targeted to linux ,solaris &
Windoz .

PS  I had rambled on about sophos & mailmonitor in another bsd question here
is the link  and here is a response from some guy in Germany or something .
I guess he is using some other mailscanning software  check it out.
http://www.mail-archive.com/[EMAIL PROTECTED]/msg65212.html

http://www.mail-archive.com/[EMAIL PROTECTED]/msg65240.html

 I wonder who should ever need mailmonitor in FreeBSD
> Here we are running Sophos on several FBSD machines and we use amavis to
make it scan and filter
> our mails. That works perfectly and so I see no need for mailmonitor at
all.

- Original Message -
From: "Chris" <[EMAIL PROTECTED]>
To: "FreeBSD Questions" <[EMAIL PROTECTED]>
Sent: Tuesday, June 08, 2004 11:35 AM
Subject: Anti-Spam app for sendmail


> Any comments on a good anti-spam app that works with sendmail for a mail
> server?
>
> --
> Best regards,
> Chris
> ___
> [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: Changing SendMail Port Number

2004-06-06 Thread Thomas Farrell
The answer to your question is:
/etc/mail/sendmail.cf
change this option & restart sendmail
O DaemonPortOptions=Port=25

- Original Message -
From: "Gerard Seibert" <[EMAIL PROTECTED]>
To: "freebsd-questions" <[EMAIL PROTECTED]>
Sent: Saturday, June 05, 2004 7:49 PM
Subject: Changing SendMail Port Number


> This is probably a stupid question, but how do I change the SMTP port
> number that SendMail listens in on? I want to change it to something else,
> like perhaps 24. My ISP is blocking 25 and I want to get around that
> problem.
>
> Thanks!
>
> Gerard Seibert
> [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: voice talk between 2 FBSD boxs

2004-06-06 Thread Thomas Farrell
I have used teamspeak running server on FreeBSD 5.0 and the clients on
windows. You can get everything  at

http://www.teamspeak.org/

I think I run my version in linux compat . Haven't used it in a while but it
did work quite well.

- Original Message -
From: "JJB" <[EMAIL PROTECTED]>
To: "[EMAIL PROTECTED] ORG" <[EMAIL PROTECTED]>
Sent: Sunday, June 06, 2004 1:13 PM
Subject: voice talk between 2 FBSD boxs


> The talk command is not really voice talk but what is normally
> considered as console text chat these days.
>
> Is there an 2 way voice talk command or port application between 2
> unix type systems with an ms/windows version?
>
> ___
> [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: help me make a Mail Server choice

2004-06-05 Thread Thomas Farrell
You should check out puremessage from ActiveState & Sophos. Other choices
are mailscanner & spamassasin, as for free scanners most of these still
require sometype of an AV engine. You can download an evaluation of sophos
savi it will work for about three months. Most free software like
mailscanner will  utilize savi , fprot, Mcafee.  Other mail scanning
software types are mimesweeper, mailmarshal, Qwava.

http://www.sophos.com/products/sav/eval/

http://freshmeat.net/projects/mailscanner/

SpamAssasin
/usr/ports/mail/spamass-milter

type "make && make install"




http://sophos.com/
- Original Message -
From: "Perica Veljanovski" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 04, 2004 7:39 AM
Subject: help me make a Mail Server choice


> Hi again
>
> It turned out to be a public mail server as well! The choice for the MTA
> on fell on postfix :) Now I have to chose POP/IMAP and Virus/Spam.
>
> I would appreciate if you can give me some input on your experience with
> Cyrus or Courier, since they are my choices for pop/imap. Also I'd like
> some suggestions on what to use for virus/spam protection, and how they
> are implemented in postfix?
>
> --
--
> My first mail on the subject from 2004-06-01:
>
> I have some trouble choosing between "postfix" and "qmail" for the new
> corporate mail server I'll be making. I'm looking for the one with least
> administrative overhead (since I run a one man show) and security is a
> big issue. Also, I'm looking for some guidance (choices) for POP, IMAP
> and webMail interface as well as Virus and SPAM (preferably free)
> protection.
>
> Another issue is the FreeBSD version. Should I stay with the 4.x-STABLE
> or should I go with the 5.x. If I set up a 5.2-Release, will the upgrade
> to 5.3-STABLE be enough, or is there a possibility that I will have to
> reformat and do a clean 5.3 install.
> --
--
>
> 10x ahead
> --
>  <>
>
>
> ___
> [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: Firestarter or equivalent?

2004-06-03 Thread Thomas Farrell
Here is a snippet of a startup script I use for a BSD firewall nat box

/sbin/ipfw add divert natd all from any to any via rl0
dhcpd rl1 -q


The first line nats all traffic via interface rl0
The second line starts up a dhcpd server on the lan interface rl1. Of course
you'll need a /etc/dhcpd.conf   file. Mine looks like this


authoritative;
ddns-update-style none;
log-facility local7;

subnet 192.168.10.0 netmask 255.255.255.0 {
dynamic-dhcp range 192.168.10.2 192.168.10.254 {
option subnet-mask 255.255.255.0;
option domain-name "yourdomain.com";
option domain-name-servers 4.2.2.4,4.2.2.5,4.2.2.6;
option routers 192.168.10.1;
option dhcp-lease-time 14400;
option dhcp-renewal-time 7200;
option dhcp-rebinding-time 12600;
}
}


If you don't have dhcpd installed just go into this directory
/usr/ports/net/isc-dhcp3/  and type "make && make install"  you will have it
after this, provided the machine is connected to the internet.


good luck

Tom




- Original Message -
From: "Thomas Farrell" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, June 03, 2004 11:38 PM
Subject: Re: Firestarter or equivalent?


> man ipfw
>
> kldstat
> kldload /boot/kernel/ipfw.ko
>
> Thats it !
>
> - Original Message -
> From: "Ron & Ariane Joordens" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, June 04, 2004 7:31 PM
> Subject: Firestarter or equivalent?
>
>
> >
> > Hello FreeBSDers,
> >
> > Two questions really.
> >
> > 1. I share my internet connection via a router running NAT only. ie. no
> SPI
> > firewall, etc. In this situation should each of the workstation
computers
> > run a personal firewall?
> >
> > 2. If yes, is there a FreeBSD port that is similar to Firestarter for
> > Linux? I have no firewall experience and am looking for the simplest way
> to
> > set one up
> >
> > Thanks for any help.
> >
> > Ron
> > http://www.jeack.com.au
> > ___
> > [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: Firestarter or equivalent?

2004-06-03 Thread Thomas Farrell
man ipfw

kldstat
kldload /boot/kernel/ipfw.ko

Thats it !

- Original Message -
From: "Ron & Ariane Joordens" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 04, 2004 7:31 PM
Subject: Firestarter or equivalent?


>
> Hello FreeBSDers,
>
> Two questions really.
>
> 1. I share my internet connection via a router running NAT only. ie. no
SPI
> firewall, etc. In this situation should each of the workstation computers
> run a personal firewall?
>
> 2. If yes, is there a FreeBSD port that is similar to Firestarter for
> Linux? I have no firewall experience and am looking for the simplest way
to
> set one up
>
> Thanks for any help.
>
> Ron
> http://www.jeack.com.au
> ___
> [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: Networking w/ FreeBSD

2004-06-01 Thread Thomas Farrell
I just add an entry in /etc/fstab like this


/sbin/mount_smbfs   //[EMAIL PROTECTED]/interchk/mnt/interchk

  I use this command to mount my sophos em library share running on XP to my
BSD 5.0 machine and then symbolically link the /mnt/interchk to the root of
webserver for remote update via http.

- Original Message -
From: "Kevin Stevens" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, June 01, 2004 2:14 PM
Subject: Re: Networking w/ FreeBSD


> On Tue, 1 Jun 2004 [EMAIL PROTECTED] wrote:
>
> > I have two computers systems in my network. The first system is a
headless
> > FreeBSD 5.2.1 system. This system stores my mp3's, datafiles and runs
mysql and
> > apache. I recently, got rid of windows off my laptop and installed
FreeBSD
> > 5.2.1. When I had windows on the laptop, I was able to Map a Network
drive to
> > the headless system via Samba runing on the server.
> >
> > My question is this: How would I set something up to perform the same
> > functionality, as when I had windows? I'm just not sure what needs to be
> > installed on either system? Any ideas or comments would be great!
>
> You can run the Samba client software on the laptop, or change the file
> sharing on the server to NFS.  Or, of course, you could change both to
> some third sharing solution.  Which depends on your assessment of the
> pros/cons of each; performance, interoperability (do you potentially have
> other machines that need to reach those resources?), security , etc.
>
> For the short term, running smbclient on the laptop is probably the
> quickest way to get your connectivity back with the fewest config changes,
> if that helps.
>
> KeS
> ___
> [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: Requesting Info

2004-06-01 Thread Thomas Farrell
You can run a server. I run teamfortress on my FreeBSD 5.0 366Mhz 256MB, and
can have 16 people cranking away no problem.  Just download
hlds_l_3110_full.tar.gz   and get the counterstike mods.

- Original Message -
From: "Ernesto Ortiz" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 01, 2004 5:30 PM
Subject: Requesting Info


> I recently bought FreeBSD and i wanted to know if it was possible to run
> Counter Strike. "Steam" If you have an answer i would like to know becuase
i
> want to use FreeBSD but i am not sure that i can do both.
>
> Thanks for your time
>
> Sincerly Armando Juarez
>
>
> ___
> [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: Odd one: my root account disappears into hyperspace.

2004-05-26 Thread Thomas Farrell
try man su
I think a modifier to like -l"L" would make difference.
"L"
- Original Message -
From: "Andy Holyer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 26, 2004 10:06 AM
Subject: Odd one: my root account disappears into hyperspace.


> Here's a really odd one.
>
> I ssh into my server as myself, and then su to root. At which point
> something odd happens:
>
> a) the output of some shell commands seems to be redirected somewhere
> other then my xterm;
> b) when I try to run emacs or vi, I get: "emacs: standard input is not
> a tty"
>
> This doesn't happen when I log in as another user and try it. I've
> tried comparing the contents of our two home directories, and there
> appears no difference.
>
> Anyone seen this before?
> ---
> Andy Holyer, Technical stuff
> Hedgehog Broadband, 11 Marlborough Place Brighton BN1 1UB
> 08451 260895 x 241
>
> ___
> [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]"


sophos anti virus and mailmonitor on freebsd

2004-05-23 Thread Thomas Farrell
Mailmonitor will work on BSD.  I have it running you have to build a symbolic link to 
the libsavi.so.3 library in /compat/linux/lib/ . Like this

ln -s  /usr/local/sav/lib/libsavi.so.3   /compat/linux/lib/libsavi.so.2  . Keep in 
mind that this is in linux compat mode 
so once it starts up all your  mmsmtp stuff will be located in 
/compat/linux/var/spool/mmsmtp  

I know Sophos states it won't work but thats just who your talking too, If you had got 
me on the phone I would have had you up and running.


Oh by the way if you still have the same problem after applying the symbolic link try 
running the un-installer that comes with mmsmtp . then run the install script to 
re-install. Delete the symbolic link and then linnk the library which comes with the 
sav-install script.  in my case I have my latest sav-install script located in /tmp  . 
I link the  larger of the two libraries and it works fine.  

ssigc# ls -la | grep lib
-r-xr-xr-x  1 root  wheel   957904 Jul  7  2003 libsavi.so.3.2.05.035
-r-xr-xr-x  1 root  wheel  1384632 Feb  9 05:04 libsavi.so.3.2.07.054  < Link this 
one as libsavi.so.2 
ssigc# pwd
/tmp/sav-install
ssigc# 

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