Command line programs are executed via a Command Line Prompt or via a batch file. They cannot be executed by double clicking or right click run
TMSS10Ping [-n count] [-P port] host
TMSS10Ping
sends dummy packets to a TapeTrack Framework Server and receives a reply packet.
TMSS10Ping
sends payload packets via the TCP/IP protocol. This means that even if a firewall is configured to block ping requests, if TapeTrack connections are allowed, then TMSS10Ping
packets will be successful.
The options which apply to the TMSS10Ping command are:
-n
This option sets the number of test packets to send, set as an Integer (default=4).-P
This option sets the TCP/IP port to, set as an Integer (default=5000).host
Host name(DNS) or dotted IP address of the TapeTrack Framework Server.stdout
Program messages indicating statistics from ping.This example tests a TapeTrack connection on port 443.
C:\>TMSS10Ping -P 443 tapetrack.ironmountain.com 44 bytes from 216.229.153.104: seq=1 time=58.00 ms 44 bytes from 216.229.153.104: seq=2 time=58.00 ms 44 bytes from 216.229.153.104: seq=3 time=58.00 ms 44 bytes from 216.229.153.104: seq=4 time=57.00 ms --- tapetrack.ironmountain.com TMSS10Ping statistics --- 4 packets transmitted round-trip min/avg/max = 0.00/57.75/58.00 ms
This example sends an email if a TapeTrack Server is down.
#!/bin/bash TMSS10Ping -P 443 tapetrack.ironmountain.com > /dev/null [ $? -ne 0 ]; then sendmail ..... fi
This example sends ping request via a proxy server, creates a trace file and displays the trace file.
set PROXYIP=192.168.1.10 set PROXYPORT=3128 set PROXYUSER= set PROXYPW= set TAPETRACKIP=server.databank.co.il set TAPETRACKPORT=443 set TMSSAPILOGDIR=%TEMP% set TMSSSERVERPROXY=%PROXYUSER%:-%PROXYPW%@%PROXYIP%:%PROXYPORT% del /Q "%TMSSAPILOGDIR%\TMSSAPILOG-*.txt" TMSS10Ping -P %TAPETRACKPORT% %TAPETRACKIP% type "%TMSSAPILOGDIR%\TMSSAPILOG-*.txt" pause
2015-08-24 | Changed hascontents to contentcount and change contentcount to a filter rather than bool |
2015-08-24 | Added iscontainer and hascontents to the config file filter logic |
2015-05-16 | Added environmental varialbe TMSSCANFILEUNQUALIFIED which will load and check volumes without Customer-ID and Media-ID qualifiers |
2015-05-16 | Added environmental varialbe TMSSSCANFILENOPARSE which will presume scanfile items are only Volumes and not parse them, saving time |
2015-05-16 | When loading scanfile from import definition, added CUSTOMER and MEDIA keywords to set defaults |
2015-05-16 | When loading scanfile from import definition, changed keyword from VOLUME to BARCODE |
2015-05-16 | Added TMSSUNQUALIFIEDVOLUME environmental variable which forces all barcodes to be printed without Customer-ID and Media-ID |
2015-05-04 | Added support for AD passwords to all command line programs (check for environmental variable TMSSNOMD5) |
2014-11-19 | Changed server argument parser to allow colon in password to support z/OS DD name files |
2014-10-26 | Upgraded development environment from Visual Studio 2012 to Visual Studio 2013 |
2014-08-07 | Added UNIX man page |