I am hoping to have assistance with KiwiSyslog not working in my local VMware ESXi environment.<\/p>\n
I have installed the syslog server in application mode successfully on my system. I can generate syslog events using the send test message option from the syslog application as well as sending syslog from PowerShell using a System.Net.Sockets.UdpClient object to create the server and send a test message.<\/p>\n
$syslogServer = \"localhost\"\n$syslogPort = 514\n$message = \"<14>This is a PowerShell syslog message - using localhost\"\n$encoding = [System.Text.Encoding]::ASCII\n$data = $encoding.GetBytes($message)\n$udpClient = New-Object System.Net.Sockets.UdpClient\n$udpClient.Connect($syslogServer, $syslogPort)\n$udpClient.Send($data, $data.Length)\n<\/code><\/pre>\n
Advertisement
The interesting thing is I can only send a test message from PowerShell when using ‘localhost’ or ‘127.0.0.1’ but if I change the server to use the IP address of the system, the message is never logged.<\/p>\n
$syslogServer = \"172.21.28.130\"\n$syslogPort = 514\n$message = \"<14>This is a PowerShell syslog message - using 172.21.28.130\"\n$encoding = [System.Text.Encoding]::ASCII\n$data = $encoding.GetBytes($message)\n$udpClient = New-Object System.Net.Sockets.UdpClient\n$udpClient.Connect($syslogServer, $syslogPort)\n$udpClient.Send($data, $data.Length)\n$udpClient.Close()\n<\/code><\/pre>\nThe Windows firewall is disabled for the connected network, so this is not impacting syslog.<\/p>\n
I have tried using the Kiwi Syslog Message Generator tool v2.2.0, however this results in no syslog messages being received, regardless of whether the target IP address is 127.0.0.1, localhost or the system IP address.<\/p>\n
With this behaviour, I am unable to get syslog messages from any other system on the subnet.<\/p>\n
I need to use syslog for testing as our software can send data to a syslog, and a lot of customers that we have query syslog functionality. I need to purchase a working version of this so that I can use Secure UDP, however I am unable to get this working using secure on port 514.<\/p>\n
I have tried turning off network adapter options such as flow control, IPv4 checksum offload, large send offload, UDP checksum offload with no effect.<\/p>\n
Please help troubleshoot why syslog is not able to receive messages when using IP address.<\/p>","upvoteCount":2,"answerCount":5,"datePublished":"2025-06-23T06:08:43.335Z","author":{"@type":"Person","name":"adroit","url":"https://community.spiceworks.com/u/adroit"},"suggestedAnswer":[{"@type":"Answer","text":"
I am hoping to have assistance with KiwiSyslog not working in my local VMware ESXi environment.<\/p>\n
I have installed the syslog server in application mode successfully on my system. I can generate syslog events using the send test message option from the syslog application as well as sending syslog from PowerShell using a System.Net.Sockets.UdpClient object to create the server and send a test message.<\/p>\n
$syslogServer = \"localhost\"\n$syslogPort = 514\n$message = \"<14>This is a PowerShell syslog message - using localhost\"\n$encoding = [System.Text.Encoding]::ASCII\n$data = $encoding.GetBytes($message)\n$udpClient = New-Object System.Net.Sockets.UdpClient\n$udpClient.Connect($syslogServer, $syslogPort)\n$udpClient.Send($data, $data.Length)\n<\/code><\/pre>\nThe interesting thing is I can only send a test message from PowerShell when using ‘localhost’ or ‘127.0.0.1’ but if I change the server to use the IP address of the system, the message is never logged.<\/p>\n
$syslogServer = \"172.21.28.130\"\n$syslogPort = 514\n$message = \"<14>This is a PowerShell syslog message - using 172.21.28.130\"\n$encoding = [System.Text.Encoding]::ASCII\n$data = $encoding.GetBytes($message)\n$udpClient = New-Object System.Net.Sockets.UdpClient\n$udpClient.Connect($syslogServer, $syslogPort)\n$udpClient.Send($data, $data.Length)\n$udpClient.Close()\n<\/code><\/pre>\nThe Windows firewall is disabled for the connected network, so this is not impacting syslog.<\/p>\n
I have tried using the Kiwi Syslog Message Generator tool v2.2.0, however this results in no syslog messages being received, regardless of whether the target IP address is 127.0.0.1, localhost or the system IP address.<\/p>\n
With this behaviour, I am unable to get syslog messages from any other system on the subnet.<\/p>\n
I need to use syslog for testing as our software can send data to a syslog, and a lot of customers that we have query syslog functionality. I need to purchase a working version of this so that I can use Secure UDP, however I am unable to get this working using secure on port 514.<\/p>\n
I have tried turning off network adapter options such as flow control, IPv4 checksum offload, large send offload, UDP checksum offload with no effect.<\/p>\n
Please help troubleshoot why syslog is not able to receive messages when using IP address.<\/p>","upvoteCount":2,"datePublished":"2025-06-23T06:08:43.398Z","url":"https://community.spiceworks.com/t/kiwisyslog-is-not-working-in-my-local-vmware-esxi-lab/1217351/1","author":{"@type":"Person","name":"adroit","url":"https://community.spiceworks.com/u/adroit"}},{"@type":"Answer","text":"
Check if it is listening on the server ip address by using ‘netstat -a’ to see if port 514 is listening on 0.0.0.0 (or 172.21.28.130) and not just 127.0.0.1<\/p>","upvoteCount":2,"datePublished":"2025-06-23T10:40:26.905Z","url":"https://community.spiceworks.com/t/kiwisyslog-is-not-working-in-my-local-vmware-esxi-lab/1217351/2","author":{"@type":"Person","name":"matt7863","url":"https://community.spiceworks.com/u/matt7863"}},{"@type":"Answer","text":"
Hi m@ttshaw. Thanks for your reply. I had confirmed that, and it certainly is listening on UDP 0.0.0.0:514<\/p>\n
<\/p>","upvoteCount":0,"datePublished":"2025-06-23T23:55:42.554Z","url":"https://community.spiceworks.com/t/kiwisyslog-is-not-working-in-my-local-vmware-esxi-lab/1217351/3","author":{"@type":"Person","name":"adroit","url":"https://community.spiceworks.com/u/adroit"}},{"@type":"Answer","text":"
Does any Spiceworks company Kiwi Syslog engineer have any advice on this? I am not able to proceed with purchasing if the solution is not able to work as expected.<\/p>","upvoteCount":0,"datePublished":"2025-06-25T02:41:40.277Z","url":"https://community.spiceworks.com/t/kiwisyslog-is-not-working-in-my-local-vmware-esxi-lab/1217351/4","author":{"@type":"Person","name":"adroit","url":"https://community.spiceworks.com/u/adroit"}},{"@type":"Answer","text":"
Bump!<\/p>","upvoteCount":0,"datePublished":"2025-07-02T03:51:33.678Z","url":"https://community.spiceworks.com/t/kiwisyslog-is-not-working-in-my-local-vmware-esxi-lab/1217351/5","author":{"@type":"Person","name":"adroit","url":"https://community.spiceworks.com/u/adroit"}}]}}