On Monday July 11 2005 21:51, Shannon Roddy spake:
> On 7/11/05, Tim Fournet <[EMAIL PROTECTED]> wrote:
> > I, for one, and thankful that they're blocking those ports.
>
> I hate to agree, but I do.  The folks that know enough to secure their
> own systems are also usually the ones who know how to get around port
> blocks.

Well, as long as Eatel sells non-restricted service too, like Cox does, I'm 
cool with it.

-- 
Joey Kelly
< Minister of the Gospel | Linux Consultant >
http://joeykelly.net

"I may have invented it, but Bill made it famous."
 --- David Bradley, the IBM employee that invented CTRL-ALT-DEL
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : /pipermail/general_brlug.net/attachments/20050711/a901fe7f/attachment.bin
From [EMAIL PROTECTED]  Wed Jul 13 14:27:12 2005
From: [EMAIL PROTECTED] (Ryan McCain)
Date: Wed Jul 13 14:27:40 2005
Subject: [brlug-general] syslog-ng.conf file??  FIXED
Message-ID: <[EMAIL PROTECTED]>


I installed using the SUSE RPM off the CDs rather than compiling from source 
and all worked fine.  No idea why it didn't work, but it's working now!
 
>>>[EMAIL PROTECTED] 07/11/05 10:19 am >>> 
I'm trying to implement syslog-ng so I can have a central log host.  However, I 
am not getting any logs from other servers logged to my syslog-ng server.  For 
those who have used syslog-ng, could you look over this config file and let me 
know if you see any typos? 
 
options { 
       long_hostnames(off); 
       sync(0); 
       stats(43200); 
       dns_cache(yes); 
       use_fqdn(no); 
       keep_hostname(yes); 
       use_dns(yes); 
}; 
 
source local { 
       unix-stream("/dev/log"); 
       internal(); 
}; 
 
source gateway { 
       udp(ip(0.0.0.0) port(514)); 
 
source tcpgateway { 
       tcp(ip(0.0.0.0) port(514) max_connections(1000)); 
}; 
 
destination hosts { 
       file("/var/log/syslogs/$HOST" owner(root) group(root) perm(0600) dir_per 
                          m(0700) create_dirs(yes)); 
 
}; 
 
log { 
       source(gateway); 
       destination(hosts); 
}; 
 
log { 
       source(local); 
       destination(hosts); 
}; 
 
log { 
       source(tcpgateway); 
       destination(hosts); 
}; 
 
 
If any debug output is needed, let me know.. 
 
 
..thanks, Ryan 
 
 
General mailing list 
General@brlug.net 
http://brlug.net/mailman/listinfo/general_brlug.net 

Reply via email to