Regular Freezes

2007-06-24 Thread SigmaX asdf

Yo;

My FreeBSD 6.1 gateway box keeps freezing totally.  It seems to happen
when there's a large burst of network traffic on my internal interface
(i.e. download, flash movie, I-radio).

I've already done a memtest, and it came out clean.  Any ideas as to
what logs might help me trouble shoot?

Thanx,

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


Re: Question about FTP

2005-02-24 Thread SigmaX
Paul Schmehl wrote:
- Original Message - From: Shawn B [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Thursday, February 24, 2005 12:02 AM
Subject: Question about FTP

I am new to FreeBSD, and I am wondering what good,
easy-to-use and reliable FTP server FreeBSD can use. I
tried ProFTP, and had problem after problem. When I
figured out how to fix one error, I had another, after
another, after another. Are there any good
alternatives? I am using FreeBSD-4.8.
Also, how do you get Apache to point to a specific
directory? And, how would I use multipule domains on
the single machine, pointing them to a separate
directory? Would I need multipule domains?
I am attempting to use FreeBSD as a http server, ftp
server, PHPbb server, and possibly an IRC server. I
would be using at least two domains to start, and
possibly another two within a couple of months.
Well you're certainly biting off more than most people could chew.  
You not only are new to FreeBSD but also to ftp and http.  Hopefully 
you have some substantial Unix experience.  If not, then you need to 
stop now and find a knowledgeable friend.

You need to read the Apache config docs and learn how to create 
virtual domains on a web server.  You need to learn how to set up a 
server securely. Who's going to handle dns for this(these) domain(s)?  
If you're really going to run an IRC server, you need to be even 
*more* knowledgeable.

You have a lot of work ahead of you, and a lot of heatache if you 
don't do it right.

Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-newbies
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

   It's really not that bad, if you've got the time to tinker.  Almost 
brand new to UNIX I got an FTP, HTTP, and ASP .NET server running fine 
and securely, and granted it took some time and frustration, I learned 
alot (But still have alot more to learn, and that was on Linux anyway). 
   However, at this stage in my education (Read: none, not *NIX-wise, 
anyway), FreeBSD is proving to be too much for me (Still haven't managed 
to get the firewall to do what I thought I told it to do, haven't even 
tried to setup FTP yet, ASP .NET server doesn't work period, etc) to 
chew :-).  I think FreeBSD is an awesome OS, and I'm sure I'll come back 
to it later, but this week I'm moving my server back to Debian 'till I 
learn a bit more about the nitty-gritty stuff.
 Cheerio!
  SigmaX

--
Registered Linux Freak #: 366,862
If you think of MS-DOS as mono, and Windows as stereo, then Linux is Dolby 
Pro-Logic Surround Sound with Bass Boost and all the music is free.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


IPFW config

2005-02-20 Thread SigmaX
Heya;
I have a FreeBSD 5.3 server that I access over SSH.  I followed the 
handbook guide to loading the ipfw kernel module to setup a firewall.  I 
made the mistake the other day of loading the firewall, which defaults 
to block all, and rebooting, so I couldn't get into the system again 
(Had to drive in and fix it :-P).  Anyway, what I need to know is how to 
edit the ruleset manually BEFORE enabling the firewall.  I need to set 
the rules, then load the kernel module, not vise versa.  I've never 
dealt with ipfw without webmin, so I need some explicit answers :-).
What I need to do its this:

Set IPFW to allow traffic on ports 80, 1, and 23 (That's the default 
SSH port, right?)
Then start IPFW with the kernel module (I know how to do this)

   Thanx,
SigmaX
--
Registered Linux Freak #: 366,862
If you think of MS-DOS as mono, and Windows as stereo, then Linux is Dolby 
Pro-Logic Surround Sound with Bass Boost and all the music is free.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IPFW config

2005-02-20 Thread SigmaX
Paul Schmehl wrote:
- Original Message - From: SigmaX [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org
Sent: Monday, February 21, 2005 12:01 PM
Subject: IPFW config
Set IPFW to allow traffic on ports 80, 1, and 23 (That's the 
default SSH port, right?)
Then start IPFW with the kernel module (I know how to do this)

fwcmd=/sbin/ipfw
myip=x.x.x.x
mymask=255.255.255.0
setup_loopback
# Allow icmp
${FWCMD} add pass icmp from any to any icmptypes 0,3,8,11,12,13,14 via 
xl0

# Setup dynamic rules
${fwcmd} add check-state
${fwcmd} add deny tcp from any to any via xl0 established
# Allow DNS queries out to the world
${fwcmd} add allow udp from ${ip} to any via xl0 keep-state
${fwcmd} add deny udp from any to any
# Allow all outbound traffic
${fwcmd} add allow ip from ${myip} to any via xl0 setup keep-state

# Allow inbound http, ssh and port 1
${fwcmd} add allow tcp from any to ${myip} http via xl0 setup keep-state
${fwcmd} add allow tcp from any to ${myip} ssh via xl0 setup keep-state
${fwcmd} add allow tcp from any to ${myip} 1 via xl0 setup keep-state
# Allow IP fragments to pass through
${fwcmd} add pass all from any to any frag via xl0
# Deny everything else
${fwcmd} add deny ip from any to any via xl0
Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu/
Well... *ahem*...  I put the above script into /etc/ipfw.rules and did 
kldload ipfw.ko  sh /etc/ipfw.rules.  I lost connectivity to the 
server.  Did the above script only open those ports to localhost or 
something?  I can go in tonight and fix it from the local computer, but 
I'd like to know what to do when I get there.  I need to have 
connectivity to said ports from the internet... apparently I don't :-P.
   Cheerio,
   SigmaX

--
Registered Linux Freak #: 366,862
If you think of MS-DOS as mono, and Windows as stereo, then Linux is Dolby 
Pro-Logic Surround Sound with Bass Boost and all the music is free.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ASP .NET on FreeBSD?

2005-02-02 Thread SigmaX
Tom McLaughlin wrote:
On Tue, 2005-02-01 at 12:21 -0500, Lowell Gilbert wrote:
 

SigmaX [EMAIL PROTECTED] writes:
   

I'm fairly new to FreeBSD (Former Linux user), and I have a FreeBSD
5.3 server.  Pretty soon I'm going to need ASP .NET on the server, but
understand that XSP/mod_mono have some major issues with FreeBSD that
need to be worked out.  Are there any alternatives I can use in place
of/while I'm waiting for the BSD# project to get XSP functional?
 

I don't know anything about this subject, but a quick 
cd /usr/ports;make search name=xsp indicates that
it's ported to FreeBSD.
   

He means Mono's XSP webserver for ASP .NET which is different than the
ports found in the www category.  I have a port for XSP but a page
request causes Mono to crash so it's not very usable right now.
Tom
 

yeah... That's the only BSD port of XSP or the like I've heard of.  I 
wish I had the knowledge to help out with the debugging process, but I'm 
fairly new to the programming world myself, and am just hanging on to 
FreeBSD until it's mature.  If the process takes to long I suppose I'll 
have to set up a Linux server to run it and keep my clients happy :-D.
  Cheerio,
  SigmaX

--
Registered Linux Freak #: 366,862
My ISP won't talk to me after lodging a support call for helping gettting ADSL 
hooked up to a WinXP install running under VMWare under Linux on my XBox.
'Anonymous Coward,' in a post on slashdot.org
For the eyes of the Lord range throughout the earth to strengthen those whose 
hearts are fully commited to him.
2 Chronicles 16:9a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ASP .NET on FreeBSD?

2005-01-31 Thread SigmaX
Hey;
I'm fairly new to FreeBSD (Former Linux user), and I have a FreeBSD 5.3 
server.  Pretty soon I'm going to need ASP .NET on the server, but 
understand that XSP/mod_mono have some major issues with FreeBSD that 
need to be worked out.  Are there any alternatives I can use in place 
of/while I'm waiting for the BSD# project to get XSP functional?  
Theoretically I could substitute GTK# client applications to my clients' 
Windows machines, but I'd prefer to have the application(s) web based.
 Thanx,
   SigmaX

--
Registered Linux Freak #: 366,862
My ISP won't talk to me after lodging a support call for helping gettting ADSL 
hooked up to a WinXP install running under VMWare under Linux on my XBox.
'Anonymous Coward,' in a post on slashdot.org
For the eyes of the Lord range throughout the earth to strengthen those whose 
hearts are fully commited to him.
2 Chronicles 16:9a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


PostgreSQL TCP sockets access?

2005-01-24 Thread SigmaX
Hey;
I have a fairly fresh installation of FreeBSD 5.3 running PostGreSQL.  I 
enabled TCP socket connection in the 
/usr/local/pgsql/data/postgresql.conf file (tcpip_socket = true), and 
allowed all hosts in pg_hba.conf (host all all 0.0.0.0 0.0.0.0 
trust)... but I still get a connection refused error when trying to 
access the server.
  Any help?
  SigmaX

--
Registered Linux Freak #: 366,862
My ISP won't talk to me after lodging a support call for helping gettting ADSL 
hooked up to a WinXP install running under VMWare under Linux on my XBox.
'Anonymous Coward,' in a post on slashdot.org
For the eyes of the Lord range throughout the earth to strengthen those whose 
hearts are fully commited to him.
2 Chronicles 16:9a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: let me just throw this out there..

2005-01-24 Thread SigmaX
Oliver Leitner wrote:
sounds like either powersurgery or you hit the wrong button to me...
also, are you the only one with root or power access to it?
maybe some coworker stepped over the cable, or some other one thought he 
could work with a bsd, and just did the shutdown -r now...

in case you might wanna check all the logs, also the ones including 
informations on who connected to that box.

Also, its only a thought, but how much space is left on that system, do a
df -h and have a closer look...
Greetings
Oliver Leitner
Technical Staff
http://www.shells.at
On Monday 24 January 2005 22:02, gabriel wrote:
 

Has it ever happened to anyone here where your computer (in this case,
my gateway running ipfw+natd) just restarts out of nowhere. It isnt
even a crash, it just restarted. Then when the computer came back up
nothing was running, dhcpd, natd, cupsd everything was just not
running. Weird.
   

Used to happent o me all the time w/ Windows 2000.  That's the reason I 
switched to FreeBSD ;-) (e pluribus unim).
Cheerio,
   SigmaX

--
Registered Linux Freak #: 366,862
My ISP won't talk to me after lodging a support call for helping gettting ADSL 
hooked up to a WinXP install running under VMWare under Linux on my XBox.
'Anonymous Coward,' in a post on slashdot.org
For the eyes of the Lord range throughout the earth to strengthen those whose 
hearts are fully commited to him.
2 Chronicles 16:9a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Glib/libgthread?

2005-01-22 Thread SigmaX
Heya;
I'm trying to run the XSP (mono's ASP .NET server) Linux binary under 
FreeBSD 5.3, but it's complaining about not being able to find 
libgthread-2.0.so.0, which I understand is part of the glib package.  
Could anybody give me some pointers on getting this set up right?  Or is 
there a port for XSP?  I know there's been work on Mono in generall... 
but whatabout XSP or mod_mono?
  Thanx,
  SigmaX

--
Registered Linux Freak #: 366,862
My ISP won't talk to me after lodging a support call for helping gettting ADSL 
hooked up to a WinXP install running under VMWare under Linux on my XBox.
'Anonymous Coward,' in a post on slashdot.org
For the eyes of the Lord range throughout the earth to strengthen those whose 
hearts are fully commited to him.
2 Chronicles 16:9a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Webmin setup?

2005-01-21 Thread SigmaX
Hey;
I just installed FreeBSD 5.3 on my old Celeron testbed/backup server 
(First-time FreeBSD user here, Linux before).  I did 'pkg_add -r webmin' 
to install webmin, and I added 'webmin_enable=YES' to /etc/rc.conf, 
but haven't a clue what to do now to set it up.
   Any help?
Thanx,
 SigmaX
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]