CMEncrypt.1 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .TH CMEncrypt 1 "Mar 2014" "plc-utils-2.1.6" "Qualcomm Atheros Powerline Toolkit"
  2. .SH NAME
  3. CMEncrypt - Send Encrypted Payload
  4. .SH SYNOPSIS
  5. .BR CMEncrypt
  6. .RI [ options ]
  7. .RI [ device ]
  8. .RI [ device ]
  9. .RI [ ... ]
  10. .SH DESCRIPTION
  11. Transmit a file over powerline using CM_ENCRYPTED_PAYLOAD messages.
  12. This program tests and demonstrates proper (or improper) message routing but does not support encrypted transmission.
  13. All payloads are sent unencrypted at this time.
  14. .SH OPTIONS
  15. .TP
  16. -\fBA\fI status\fR
  17. The AVLN Status.
  18. This indicates the current association status and capabilities of the sending station.
  19. Permitted values are \fB0\fR through \fB255\fR but only value 0 through 5 and 8 are recognized by the firmware.
  20. Values may be entered in decimal, hexadecimal or binary format.
  21. Hexadecimal value are prefixed with "\fB0x\fR" or "\fB0X\fR".
  22. Binary values are prefixed with "\fB0b\fR" or "\fB0B\fR".
  23. The default is \fB0\fR.
  24. .TP
  25. -\fBf\fI file\fR
  26. The name of the payload file.
  27. File content may be text or binary and forms the payload of one or more messages.
  28. Payloads are transmitted unencrypted when PID is 4 and PEKS is 15 which is default.
  29. .TP
  30. -\fBK \fIPEKS\fR
  31. The Payload Encryption Key Select.
  32. This value indicates the key used to encrypt the payload.
  33. Permitted values are \fB0\fR through \fB15\fR.
  34. Values may be entered in decimal, hexadecimal or binary format.
  35. Hexadecimal value are prefixed with "\fB0x\fR" or "\fB0X\fR".
  36. Binary values are prefixed with "\fB0b\fR" or "\fB0B\fR"..
  37. The default is \fB15\fR for "No Encryption".
  38. .TP
  39. -\fBP \fIPID\fR
  40. The Protocol Identifier.
  41. This value detemines how the payload is interpreted by powerline devices.
  42. Permitted values are \fB0\fR through \fB4\fR.
  43. The default is \fB4\fR for "HLE Protocol".
  44. .TP
  45. -\fBv\fR
  46. Print incoming and outgoing Ethernet frames in hex dump format on stdout.
  47. .TP
  48. .RB - ? ,-- help
  49. Print program help summary on stdout.
  50. This option takes precedence over other options on the command line.
  51. .TP
  52. .RB - ? ,-- version
  53. Print program version information on stdout.
  54. This option takes precedence over other options on the command line.
  55. Use this option when sending screen dumps to Atheros Technical Support so that they know exactly which version of the Linux Toolkit you are using.
  56. .SH ARGUMENTS
  57. .TP
  58. \fIdevice\fR
  59. The Media Access Control (MAC) address of a remote host, not a powerline device.
  60. Addresses are 6 hexadecimal octets optionally separated by colon.
  61. For example, the addresses "00b052000001", "00:b0:52:00:00:01" and "00b052:000001" are all valid and equivalent.
  62. For convenience, the symbolic address "\fBlocal\fR" resolves to "00:b0:52:00:00:01" and the symbolic addresses "\fBall\fR" and "\fBbroadcast\fR" both resolve to "ff:ff:ff:ff:ff:ff".
  63. .SH INTERNALS
  64. This program lets the user specify some CM_ENCRYPTED_PAYLOAD fields but not others.
  65. The following are fields that the user cannot specify.
  66. The program automatically computes these values.
  67. .TP
  68. .BR PRN
  69. The Protocol Run Number.
  70. This is a random number used to distinguish between runs having the same protocol.
  71. This program uses the system time variable.
  72. .TP
  73. .BR UUID
  74. The Universally Unique Identifier.
  75. This program uses the left-most 16 bytes of the SHA256 digest for the payload.
  76. .SH REFERENCES
  77. Consult the \fIHomePlug AV Specification\fR or \fIAtheros Firmware Technical Reference Manual\fR for more information.
  78. .SH EXAMPLES
  79. The following example transmits file \fBmyfile.txt\fR to host \fB00:85:73:00:94:01\fR in unecrypted format because that is the program default.
  80. The remote address is required and refers to the ultimate recipient, not the local device.
  81. .PP
  82. # CMEncrypt -f myfile.txt 00:85:73:00:94:01
  83. The next example does the same but specifies the program defaults.
  84. Observe that operands can be expressed in decimal, binary or hexadecimal format.
  85. .PP
  86. # CMEncrypt -f myfile.txt -A 0 -P 0b0100 -K 0x0F 00:85:73:00:94:01
  87. .SH DISCLAIMER
  88. Atheros HomePlug AV Vendor Specific Management Message structure and content is proprietary to Qualcomm Atheros, Ocala FL USA.
  89. Consequently, public information is not available.
  90. Qualcomm Atheros reserves the right to modify message structure or content in future firmware releases without any obligation to notify or compensate users of this program.
  91. .SH SEE ALSO
  92. None.
  93. .SH CREDITS
  94. Charles Maier <cmaier@qca.qualcomm.com>