Reading AX.25 Traces

AX.25 2.2 packets are either “commands” or responses“. Commands can have a “P” poll bit set, and responses will echo that back as an “F” final bit.

Example flow:

  1. M7QQA>M7QQB <SABM C P> - M7QQA would like to open a connection to M7QQB.
  2. M7QQB>M7QQA <UA R F> - M7QQB confirms connection to M7QQA.
  3. M7QQB>M7QQA <I C P R0 S0> “Welcome to M7QQB.” - M7QQB sends a connection banner to M7QQA.
  4. M7QQA>M7QQB <RR R F R1> - M7QQA has received all messages before sequence 1, and is ready to receive more.
  1. The first field is the frame type.
  2. The second field is “C” for control, or “R” for response.
  3. The third field is “P”/“F” for poll/final, or omited if not set.
  4. R# means “I have received all packets before #.”
  5. S# means “This is packet sequence number #.”