Quote:
Originally Posted by Santoshkb
Request for your help, Am i missing some configuration?
|
Code:
/etc/rsyslog.conf:
...
$ModLoad imudp
...
### Listener
$UDPServerRun 514
...
### Basic Security
$AllowedSender UDP, IP_0, IP_1
$AllowedSender is not in a stock rsyslog.conf so you can add it.
It is Basic Security only to keep unqualified senders from doing mischief to your system.
Is there a firewall activated? It may need port 514 opened if there is.
Code:
Example:
*.* @192.168.0.1
In the example above, messages are forwarded via UDP to the machine 192.168.0.1, the destination port defaults to 514
so the 514 is NOT required.
*.* @10.102.77.118 is perfectly valid.
but
Code:
$ModLoad imudp
...
### Listener
$UDPServerRun 514
are required to have the sending directive *.* @10.102.77.118 work.
Reference:
http://linux.die.net/man/5/rsyslog.conf
Version on the client and OS/release too please.
Code:
rsyslogd -version | head -1