Found this in log. ```log ... FX.25[0]: Frame length of 238 + overhead is too large to encode. Unable to send FX.25. Falling back to regular AX.25. ... ``` For reproduce you can send ping with large payload (i.e. 300 bytes): ```shell ping -i 1 -s 300 $IP ``` I've tried: - Increase/decrease `PACLEN n` and `/etc/ax25/axports paclen`. But it was not helps. - Change FX25_MAX_DATA = 512 in fx25.h (naive). Got next instead: ``` FX.25[0]: Could not find suitable format for requested 4 and data length 353. Unable to send FX.25. Falling back to regular AX.25. ``` How it can be fixed and use FX.25 for any packets?