Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

6.0.8 SMDR via Hyperterminal ? 1

Status
Not open for further replies.

kflounders

Programmer
Dec 8, 2002
694
US
I have the IPO set up and connected to Hyperterminal on port 23 for SMDR that I downloaded from Hillgreave because Win7 doesn't have it and I am trying to figure out how to roll the files daily to a file. I don't know what I am missing, but there does not seem to be a command to input daily roll over.

Kevin Flounders

 
Leave the IP address 0.0.0.0

System > SMDR tab > IP address 0.0.0.0

Login with Hypertrm or Teraterm (I use this on my Win7)

You can change port 23 into any other not used port on your PC i mostly use 888X (X=0-9)

Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged
___________________________________________
 
For daily logging;
If you use TeraTerm the look in Setup > Additional settings > Log tab.

Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged
___________________________________________
 
Just a suggestion, I downloaded Kiwi_Syslog_Server_9.1.0, and set this up to log the data, it runs as a service and is free in its native form, and is VERY stable.

Then I wrote a batch file:
rem Batch file to rename a file with date stamp
echo off
net stop "Kiwi Syslog Server"
set yy=%Date:~0,4%
set mm=%Date:~5,2%
set dd=%Date:~8,2%
cd\
cd "Program Files\SYSLOGD\LOGS"
ren smdr.csv smdr%yy%%mm%%dd%.csv
net start "Kiwi Syslog Server"


This batch file I schedule via windows scheduler to run everyday at 23:55, and there you have it, a file renamed on a daily basis, with a hassle free interface.

Hope this helps some people.

Cheers

Kevin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top