AIX 5.2 Syslog : Help needed


 
Thread Tools Search this Thread
Operating Systems AIX AIX 5.2 Syslog : Help needed
# 1  
Old 11-21-2005
AIX 5.2 Syslog : Help needed

Hi all,

I am trying to get the authentication logs of FTP,Telnet,SSH,inetd from the syslog file. But my output for every type of authentications - success & failure keep differing everytime i view them.

The output does not show the priority code (emerg, or 0, in any case). How do I get the priority code to be listed in the log as well so I can get my log viewer to differentiate message priority?

Regards
Kamadana
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. AIX

AIX Hardware Migration w/ HACMP...Advice Needed

Hello Everyone, Hope you all are doing great! As you can see by the title on top, we are in the process of migrating alot of our servers from Power5 (physical) to Power8 (Virtual). Now it's turn for servers with HACMP Cluster on it. Let me lay out the environment like: OLD ENVIRONMENT: ... (12 Replies)
Discussion started by: uzair_rock
12 Replies

2. AIX

Power5 9111-520 reload of AIX 6.1 - help needed

Hello all, I am hoping someone can point me in the right direction here. We had a machine running AIX 6.1 that someone completely corrupted, so we decided to re-load it from media. I was able to boot into DVD media, select options for complete (destructive) install, AIX standard, etc. The... (0 Replies)
Discussion started by: JamesNJ
0 Replies

3. AIX

AIX equivalent return codes needed

Hi, I have a script which is written for solaris x86 system. trap 'echo "$(date):$(who am i | cut -d" " -f1) menu exec" >> /tmp/hist/.menu_history.$(who am i | cut -d" " -f1).$(uname -n).$(date +%y%m%d);exit' 1 2 3 15 trap 'echo "$(who am i | cut -d" " -f1) menu" >>... (1 Reply)
Discussion started by: boehnke
1 Replies

4. AIX

AIX TL updates not including all packages needed

In trying to resolve my issue, I downloaded TL 11 and trying to update to it. Why the heck does not the TL fix have the required files in it? Thats another 1.+ GB download. I am also sure that when I go to install that package it will complain about rsct not being updated. MISSING... (1 Reply)
Discussion started by: mrmurdock
1 Replies

5. AIX

Help needed with AIX 6.1

Hi, We have just purchased an ibm Power 520 express box with AIX 6.1 preloaded onto it. Using a null modem cable we have connected this upto a Windows 2003 server. From this Windows 2003 server we can using hyperterminal connect to it. I can aslo connect to the Advanced System Management... (16 Replies)
Discussion started by: yfayyaz
16 Replies

6. AIX

help needed on aix ksh

i am trying to convert .ksh script to .bat in windows box , it says awk is not recognized as internal or external command. this is the sample .ksh script , even if i change awk to gawk it does not work its giving me syntax error, at line one ---- it's pointing ":" and "fund:" some one plzz help.... (0 Replies)
Discussion started by: 2.5lt V8
0 Replies

7. AIX

Help needed for ps command in AIX

folks; I'm trying to run the command "stime" I couldn't get it to work right, but it seems like it's controlled by LANG variables, how can I change the LANG variables to make the result of stime or start_time appear right (if I use stime I get letter "A" under STIME & if I use "start_time" in my... (0 Replies)
Discussion started by: moe2266
0 Replies

8. UNIX for Advanced & Expert Users

AIX + disk redundency input needed

OK guys & gals this is the issue: i am trying to sort out all the disks in all of our AIX servers. 12 hdisks w/ mirroring (so only 6 disks in uses @ any time) 2 volume groups (rootvg, vg1) this does include muliple informix databases and misc. data. Do you think it would be wise to... (1 Reply)
Discussion started by: Optimus_P
1 Replies
Login or Register to Ask a Question
Sys::Syslog(3pm)					 Perl Programmers Reference Guide					  Sys::Syslog(3pm)

NAME
Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl interface to the UNIX syslog(3) calls SYNOPSIS
use Sys::Syslog; # all except setlogsock, or: use Sys::Syslog qw(:DEFAULT setlogsock); # default set, plus setlogsock setlogsock $sock_type; openlog $ident, $logopt, $facility; syslog $priority, $format, @args; $oldmask = setlogmask $mask_priority; closelog; DESCRIPTION
Sys::Syslog is an interface to the UNIX syslog(3) program. Call "syslog()" with a string priority and a list of "printf()" args just like syslog(3). Syslog provides the functions: openlog $ident, $logopt, $facility $ident is prepended to every message. $logopt contains zero or more of the words pid, ndelay, nowait. The cons option is ignored, since the failover mechanism will drop down to the console automatically if all other media fail. $facility specifies the part of the system syslog $priority, $format, @args If $priority permits, logs ($format, @args) printed as by "printf(3V)", with the addition that %m is replaced with "$!" (the latest error message). setlogmask $mask_priority Sets log mask $mask_priority and returns the old mask. setlogsock $sock_type [$stream_location] (added in 5.004_02) Sets the socket type to be used for the next call to "openlog()" or "syslog()" and returns TRUE on success, undef on failure. A value of 'unix' will connect to the UNIX domain socket returned by the "_PATH_LOG" macro (if your system defines it) in syslog.ph. A value of 'stream' will connect to the stream indicated by the pathname provided as the optional second parameter. A value of 'inet' will connect to an INET socket (either tcp or udp, tried in that order) returned by getservbyname(). 'tcp' and 'udp' can also be given as values. The value 'console' will send messages directly to the console, as for the 'cons' option in the logopts in openlog(). A reference to an array can also be passed as the first parameter. When this calling method is used, the array should contain a list of sock_types which are attempted in order. The default is to try tcp, udp, unix, stream, console. Giving an invalid value for sock_type will croak. closelog Closes the log file. Note that "openlog" now takes three arguments, just like openlog(3). EXAMPLES
openlog($program, 'cons,pid', 'user'); syslog('info', 'this is another test'); syslog('mail|warning', 'this is a better test: %d', time); closelog(); syslog('debug', 'this is the last test'); setlogsock('unix'); openlog("$program $$", 'ndelay', 'user'); syslog('notice', 'fooprogram: this is really done'); setlogsock('inet'); $! = 55; syslog('info', 'problem was %m'); # %m == $! in syslog(3) SEE ALSO
syslog(3) AUTHOR
Tom Christiansen <tchrist@perl.com> and Larry Wall <larry@wall.org>. UNIX domain sockets added by Sean Robinson <robinson_s@sc.maricopa.edu> with support from Tim Bunce <Tim.Bunce@ig.co.uk> and the perl5-porters mailing list. Dependency on syslog.ph replaced with XS code by Tom Hughes <tom@compton.nu>. Code for constant()s regenerated by Nicholas Clark <nick@ccl4.org>. Failover to different communication modes by Nick Williams <Nick.Williams@morganstanley.com>. perl v5.8.0 2002-06-01 Sys::Syslog(3pm)