server_tftp
471
The server Commands
EXAMPLE #2 To display the status of the TFTP service for server_2, type:
$ server_tftp server_2 -service -status
server_2 :
Tftp Running
EXAMPLE #3 To modify a path on server_2 for TFTP service with read access for
all, and write access for nobody, type:
$ server_tftp server_2 -set -path /ufs1 -readaccess all -writeaccess none
server_2 : done
EXAMPLE #4 To display TFTP information for server_2, type:
$ server_tftp server_2 -info
server_2 :
path="/ufs1/" readaccess=all writeaccess=none
EXAMPLE #5 To display statistics for server_2, type:
$ server_tftp server_2 -service -stats
server_2 :
Attempted Transfers:28
Successful Transfers:27
createdthrds:28
deletedthrds:28
timedoutthrds:0
TotalBinds:28
TotalUnbinds:28
BindFailures:0
InvalidAttempts:0
AttemptedReadTransfers:19
SuccessfulReadTransfers:19
AttemptedWriteTransfers:9
SuccessfulWriteTransfers:8
Where:
Value Definition
Attempted Transfers total TFTP transfers attempted by that time.
Successful Transfers total number of successful TFTP transfers.
createdthrds total number of TFTP threads created (equal to total transfers).
deletedthrds total number of threads deleted (equal to total created threads).
timedoutthrds number of timed-out threads. For TFTP transfers, in case of any failures, each thread will
time out and free itself.
TotalBinds total number of binds.
TotalUnbinds total number of unbinds.
BindFailures number of bind failures. If the port we try to bind to is in use, the bind fails, and retries with
a different port.
InvalidAttempts invalid TFTP transfer requests from clients such as trying to transfer a non-existent file.
AttemptedReadTransfers total TFTP read transfers initiated.
SuccessfulReadTransfers total TFTP read transfers successfully completed.
AttemptedWriteTransfers total TFTP write transfers initiated.
SuccessfulWriteTransfers total TFTP write transfers successfully completed.