Hi,
I would like to setup a FOR loop script to find out all the existing linux workstation in the network w/ ip address, hostname and linux version.
I created a basic FOR loop script:
for i in $(seq 1 254)
do
echo 10.72.169.$i >> result
ssh -o ConnectTimeout=3 root@10.72.169.$i... (14 Replies)
I need some help to write a C++ code that read and write the register of a sequencer. I have to make a code that relate the objects with the physical address but I am a bit confuse. Could someone suggest me how to proceed? in which parts do I split the code?
thanks (1 Reply)
We want to use RADIUS to authenticate our AIX server logins. Can anybody tell me how to set on AIX server up to use a Radius server to authenticate or point me to documentation on setting up AIX to use Radius to authenticate user login.
Our problem is that we have a few users that access our... (1 Reply)
I guess I probably ask a dumb question but why use RADIUS for authentication as there are many ways to do it, as authentication is basically a user/password check?
What is the benifit(s) of using it ?
Thanks! (3 Replies)
Hi,
I have to parse the dhcp.lease file and have to keep the most recent entry and remove the rest and also the number of lines between any two leases might not always be the same.
eg:
lease 5.5.5.252 {
starts Wed Jul 27 09:48:39 2011
ends Wed Jul 27 21:48:39 2011
tstp Wed Jul... (1 Reply)
Hello everyone, I have a question in regards to connecting with wpa_cli to a Radius server. I can connect fine through WPA Enterprise and WPA2 Enterprise, but I'm lost on trying to connect to Radius.
wpa_cli -iwlan0 set_network 0 ssid '"ssid"'
wpa_cli -iwlan0 set_network 0 key_mgmt WPA-EAP... (0 Replies)
Hi all
I have no idea what I am doing, I think I am learning...the previous linux admin left the company and I volunteered to help.
My first task is to create a user (X) account in the radius. I was able to do that.. This user (X) will be login in to a cisco device same as user (Z) .
... (3 Replies)
Hi,
we have multiple database instances running on solaris server like db1, db2 and db3. Below shown ipcs -pmb shared memory segment output. Using cpid value I want to relate to the database instances db1, db2 and db3. Please let me know how to do this?
$ ipcs -pmb
IPC status from <running... (9 Replies)
Discussion started by: baladelaware73
9 Replies
LEARN ABOUT SUSE
log::dispatch::output
Log::Dispatch::Output(3) User Contributed Perl Documentation Log::Dispatch::Output(3)NAME
Log::Dispatch::Output - Base class for all Log::Dispatch::* objects
SYNOPSIS
package Log::Dispatch::MySubclass;
use Log::Dispatch::Output;
use base qw( Log::Dispatch::Output );
sub new
{
my $proto = shift;
my $class = ref $proto || $proto;
my %p = @_;
my $self = bless {}, $class;
$self->_basic_init(%p);
# Do more if you like
return $self;
}
sub log_message
{
my $self = shift;
my %p = @_;
# Do something with message in $p{message}
}
1;
DESCRIPTION
This module is the base class from which all Log::Dispatch::* objects should be derived.
CONSTRUCTOR
The constructor, "new", must be overridden in a subclass. See Output Classes for a description of the common parameters accepted by this
constructor.
METHODS
o _basic_init(%p)
This should be called from a subclass's constructor. Make sure to pass the arguments in @_ to it. It sets the object's name and
minimum level. It also sets up two other attributes which are used by other Log::Dispatch::Output methods, level_names and
level_numbers.
o name
Returns the object's name.
o min_level
Returns the object's minimum log level.
o max_level
Returns the object's maximum log level.
o accepted_levels
Returns a list of the object's accepted levels (by name) from minimum to maximum.
o log( level => $, message => $ )
Sends a message if the level is greater than or equal to the object's minimum level. This method applies any message formatting
callbacks that the object may have.
o _should_log ($)
This method is called from the "log()" method with the log level of the message to be logged as an argument. It returns a boolean
value indicating whether or not the message should be logged by this particular object. The "log()" method will not process the
message if the return value is false.
o _level_as_number ($)
This method will take a log level as a string (or a number) and return the number of that log level. If not given an argument, it
returns the calling object's log level instead. If it cannot determine the level then it will croak.
o add_callback( $code )
Adds a callback (like those given during construction). It is added to the end of the list of callbacks.
Subclassing
This class should be used as the base class for all logging objects you create that you would like to work under the Log::Dispatch
architecture. Subclassing is fairly trivial. For most subclasses, if you simply copy the code in the SYNOPSIS and then put some
functionality into the "log_message" method then you should be all set. Please make sure to use the "_basic_init" method as directed.
The actual logging implementation should be done in a "log_message" method that you write. Do not override "log"!.
AUTHOR
Dave Rolsky, <autarch@urth.org>
perl v5.12.1 2009-09-22 Log::Dispatch::Output(3)