The OpenNET Project / Index page

[ новости /+++ | форум | теги | ]

форумы  помощь  поиск  регистрация  майллист  ВХОД  слежка  RSS
"syslog & cisco"
Вариант для распечатки Архивированная нить - только для чтения! 
Пред. тема | След. тема 
Форумы OpenNET: Виртуальная конференция (Public)
Изначальное сообщение [Проследить за развитием треда]

"syslog & cisco"
Сообщение от nikolos emailИскать по авторуВ закладки on 04-Авг-03, 16:07  (MSK)
подскажите, задача с cisco пустить логи на syslog, все проситал, все понятно , только как в линуксе то syslog с ключиком "-r" запустить? вот это загадка...  кто сталкивался? дистриб mandrake 8.3
  Рекомендовать в FAQ | Cообщить модератору | Наверх

 Оглавление

Индекс форумов | Темы | Пред. тема | След. тема
Сообщения по теме

1. "syslog & cisco"
Сообщение от A Clockwork Orange Искать по авторуВ закладки on 04-Авг-03, 16:14  (MSK)
да не надо -r кинь сюда man syslog отлинукса,
на FreeBSD запускается для безопасности с -a <хост>:<порт>


  Рекомендовать в FAQ | Cообщить модератору | Наверх

2. "syslog & cisco"
Сообщение от nikolos emailИскать по авторуВ закладки on 04-Авг-03, 16:22  (MSK)
прошу прощения, можно поподробней...man глянул но пока не разобрался...
  Рекомендовать в FAQ | Cообщить модератору | Наверх

3. "syslog & cisco"
Сообщение от A Clockwork Orange Искать по авторуВ закладки on 04-Авг-03, 16:27  (MSK)
Я тебе скажу как в FreeBSD  а ты уж по свему переложи.
Переключателя -r нет.
По-умолчанию syslogd запускается с -s вроде как для безопасности.
Если запустишь просто syslogd то с кошки все будет приходить. И не только с кошки а кто пошлет и откуда пошлет.
Для чего в FreeBSD есит переключатель -a который позволяет задать откуда можно принимать и с какого порта можно принимать.
sun# man syslogd
SYSLOGD(8)              FreeBSD System Manager's Manual             SYSLOGD(8)

NAME
     syslogd - log systems messages

SYNOPSIS
     syslogd [-46Acdknsuv] [-a allowed_peer] [-b bind_address]
             [-f config_file] [-l path] [-m mark_interval] [-P pid_file]
             [-p log_socket]

DESCRIPTION
     The syslogd utility reads and logs messages to the system console, log
     files, other machines and/or users as specified by its configuration
     file.

     The options are as follows:

     -4      Force syslogd to use IPv4 addresses only.

     -6      Force syslogd to use IPv6 addresses only.

     -A      Ordinarily, syslogd tries to send the message to only one address
             even if the host has more than one A or AAAA record.  If this
             option is specified, syslogd tries to send the message to all
             addresses.

     -a allowed_peer
             Allow allowed_peer to log to this syslogd using UDP datagrams.
             Multiple -a options may be specified.

             Allowed_peer can be any of the following:

             ipaddr/masklen[:service]    Accept datagrams from ipaddr (in the
                                         usual dotted quad notation) with
                                         masklen bits being taken into account
                                         when doing the address comparison.
                                         ipaddr can be also IPv6 address by
                                         enclosing the address with `[' and
                                         `]'.  If specified, service is the
                                         name or number of an UDP service (see
                                         services(5)) the source packet must
                                         belong to.  A service of `*' allows
                                         packets being sent from any UDP port.
                                         The default service is `syslog'.  If
                                         ipaddr is IPv4 address, a missing
                                         masklen will be substituted by the
                                         historic class A or class B netmasks
                                         if ipaddr belongs into the address
                                         range of class A or B, respectively,
                                         or by 24 otherwise.  If ipaddr is
                                         IPv6 address, a missing masklen will
                                         be substituted by 128.

             domainname[:service]        Accept datagrams where the reverse
                                         address lookup yields domainname for
                                         the sender address.  The meaning of
                                         service is as explained above.

             *domainname[:service]       Same as before, except that any
                                         source host whose name ends in
                                         domainname will get permission.

             The -a options are ignored if the -s option is also specified.

     -b bind_address
             Specify one specific IP address or hostname to bind to.  If a
             hostname is specified, the IPv4 or IPv6 address which corresponds
             to it is used.

     -c      Disable the compression of repeated instances of the same line
             into a single line of the form ``last message repeated N times''
             when the output is a pipe to another program.  If specified
             twice, disable this compression in all cases.

     -d      Put syslogd into debugging mode.  This is probably only of use to
             developers working on syslogd.

     -f      Specify the pathname of an alternate configuration file; the
             default is /etc/syslog.conf.

     -k      Disable the translation of messages received with facility
             ``kern'' to facility ``user''.  Usually the ``kern'' facility is
             reserved for messages read directly from /dev/klog.

     -m      Select the number of minutes between ``mark'' messages; the
             default is 20 minutes.

     -n      Disable dns query for every request.

     -p      Specify the pathname of an alternate log socket to be used
             instead; the default is /var/run/log.

     -P      Specify an alternative file in which to store the process ID.
             The default is /var/run/syslog.pid.

     -l      Specify a location where syslogd should place an additional log
             socket.  Up to 19 additional logging sockets can be specified.
             The primary use for this is to place additional log sockets in
             /var/run/log of various chroot filespaces.

     -s      Operate in secure mode.  Do not log messages from remote
             machines.  If specified twice, no network socket will be opened
             at all, which also disables logging to remote machines.

     -u      Unique priority logging.  Only log messages at the specified pri-
             ority.  Without this option, messages at the stated priority or
             higher are logged.  This option changes the default comparison
             from ``=>'' to ``=''.

     -v      Verbose logging.  If specified once, the numeric facility and
             priority are logged with each locally-written message.  If speci-
             fied more than once, the names of the facility and priority are
             logged with each locally-written message.

     The syslogd utility reads its configuration file when it starts up and
     whenever it receives a hangup signal.  For information on the format of
     the configuration file, see syslog.conf(5).

     The syslogd utility reads messages from the UNIX domain socket
     /var/run/log, from an Internet domain socket specified in /etc/services,
     and from the special device /dev/klog (to read kernel messages).

     The syslogd utility creates its process ID file, by default
     /var/run/syslog.pid, and stores its process ID there.  This can be used
     to kill or reconfigure syslogd.

     The message sent to syslogd should consist of a single line.  The message
     can contain a priority code, which should be a preceding decimal number
     in angle braces, for example, `<5>'.  This priority code should map into
     the priorities defined in the include file <sys/syslog.h>.

     For security reasons, syslogd will not append to log files that do not
     exist; therefore, they must be created manually before running syslogd.

FILES
     /etc/syslog.conf     configuration file
     /var/run/syslog.pid  default process ID file
     /var/run/log         name of the UNIX domain datagram log socket
     /dev/klog            kernel log device

SEE ALSO
     logger(1), syslog(3), services(5), syslog.conf(5)

HISTORY
     The syslogd utility appeared in 4.3BSD.

     The -a, -s, -u, and -v options are FreeBSD 2.2 extensions.

BUGS
     The ability to log messages received in UDP packets is equivalent to an
     unauthenticated remote disk-filling service, and should probably be dis-
     abled by default.  Some sort of inter-syslogd authentication mechanism
     ought to be worked out.  To prevent the worst abuse, use of the -a option
     is therefore highly recommended.

     The -a matching algorithm doesn't pretend to be very efficient; use of
     numeric IP addresses is faster than domain name comparison.  Since the
     allowed peer list is being walked linearly, peer groups where frequent
     messages are being anticipated from should be put early into the -a list.

     The log socket was moved from /dev to ease the use of a read-only root
     file system.  This may confuse some old binaries so that a symbolic link
     might be used for a transitional period.

FreeBSD 4.8                    November 24, 2001                   FreeBSD 4.8
sun#  

  Рекомендовать в FAQ | Cообщить модератору | Наверх

4. "syslog & cisco"
Сообщение от nikolos emailИскать по авторуВ закладки on 04-Авг-03, 17:09  (MSK)
спасибо, все сделал...работает, теперь буду думать что именно мне надо чтоб туда писалось (наверняка же есть варианты) или я неправ? информация о том что интерфейс поднят ценна, но хотелось бы большего....посоветуйте чего...
  Рекомендовать в FAQ | Cообщить модератору | Наверх

5. "syslog & cisco"
Сообщение от A Clockwork Orange Искать по авторуВ закладки on 04-Авг-03, 18:04  (MSK)
Кто то советует 7 уровень, это debug.
У меня notification.
Так полагаю чем выше уровень тем подробнее.
  Рекомендовать в FAQ | Cообщить модератору | Наверх

6. "syslog & cisco"
Сообщение от nikolos emailИскать по авторуВ закладки on 05-Авг-03, 09:42  (MSK)
про debug прочитал, ну уж слишком это...всмысле задачь таких нет....а вот про уровень notification...в тех хелпах что есть не нашел, подозреваю что это нечто среднее с записью входов на рутер и действия по егойнему firewall-у, так? расскажи как его установить, подозреваю что в моем случае он и нужен, пока с хелпами не разобрался окончательно...
спасибо за помощь!
  Рекомендовать в FAQ | Cообщить модератору | Наверх

7. "syslog & cisco"
Сообщение от A Clockwork Orange Искать по авторуВ закладки on 05-Авг-03, 09:45  (MSK)
на cisco

logging trap notification

Кажется так

  Рекомендовать в FAQ | Cообщить модератору | Наверх

8. "syslog & cisco"
Сообщение от nikolos emailИскать по авторуВ закладки on 05-Авг-03, 10:00  (MSK)
сделал, но в логе что то информации не прибавилось....буду разбираться...
еще раз спасибо...
  Рекомендовать в FAQ | Cообщить модератору | Наверх

9. "syslog & cisco"
Сообщение от lavr emailИскать по авторуВ закладки on 05-Авг-03, 11:03  (MSK)
>сделал, но в логе что то информации не прибавилось....буду разбираться...
>еще раз спасибо...

http://www.opennet.dev/base/cisco/unix_log.txt.html

http://www.opennet.dev/openforum/vsluhforumID1/32552.html

  Рекомендовать в FAQ | Cообщить модератору | Наверх


Удалить

Индекс форумов | Темы | Пред. тема | След. тема
Пожалуйста, прежде чем написать сообщение, ознакомьтесь с данными рекомендациями.




Партнёры:
PostgresPro
Inferno Solutions
Hosting by Hoster.ru
Хостинг:

Закладки на сайте
Проследить за страницей
Created 1996-2025 by Maxim Chirkov
Добавить, Поддержать, Вебмастеру