Tested manually on x86_64 RHEL-8.10. Common Setup: ------------- ## Create files for upload tests # dd if=/dev/urandom of=test_big_file_sos count=1 bs=1100M iflag=fullblock # echo "Hello Upload" > test_small_file_sos # ls -lh test_* -rw-r--r--. 1 root root 1.1G Jun 11 07:46 test_big_file_sos -rw-r--r--. 1 root root 13 Jun 11 07:34 test_small_file_sos ## Plant big file to also test 'sos report --upload' via 'lvm2' plugin # mkdir /etc/lvm # ln -s /root/test_big_file_sos /etc/lvm/test_big_file_sos ## Print checksums for fast verification of uncorrupted upload # sha256sum test_* ebcbf74e3a1e3a514c8480b916f0a44529427f007cb72dc4cf085efb1ee80e16 test_big_file_sos 625f922fd5b31c9cbdea7c4d2e3a1e7ba7fb607f32c8affcd5aa878d119b007b test_small_file_sos TEST AREA: Upload subcommand tests ---------------------------------- Old: ==== ## Upload subcommand not supported (NO NEED TO SHOW ANY MORE) # rpm -q sos sos-4.8.2-1.el8_10.noarch # sos upload test_small_file_sos usage: sos [options] Available components: report, rep Collect files and command output in an archive clean, cleaner, mask Obfuscate sensitive networking information in a report help Detailed help infomation collect, collector Collect an sos report from multiple nodes simultaneously sos: error: argument component: invalid choice: 'upload' (choose from 'report', 'rep', 'clean', 'cleaner', 'mask', 'help', 'collect', 'collector') New: ==== # rpm -q sos sos-4.9.1-2.el8_10.noarch _## |TEST CASE: sos upload give ID below 1GB => Upload to portal (http protocol). ## |External User # sos upload test_small_file_sos . . . Optionally, please enter the case id that you are generating this report for: 03093474 Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=UIGJ-BDRR Device authorized correctly. Uploading file to Red Hat Customer Portal File test_small_file_sos uploaded successfully ## I can see the file attached to the test case. Correct content. ## |Internal User # sos upload test_small_file_sos . . . Optionally, please enter the case id that you are generating this report for: 03093474 Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=EGSP-VART Device authorized correctly. Uploading file to Red Hat Customer Portal File test_small_file_sos uploaded successfully ## I can see the file attached to the test case. Correct content. _## |TEST CASE: sos upload give ID over 1 GB => Message and fallback to SFTP (attach). ## |External User # sos upload test_big_file_sos . . . Optionally, please enter the case id that you are generating this report for: 03093474 Upload target set to Red Hat Upload Target Size of archive is bigger than Red Hat Customer Portal limit for uploads of 1.0G via sos http upload. Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=PICK-KOLH Device authorized correctly. Uploading file to Red Hat Secure FTP File test_big_file_sos uploaded successfully ## I can see the file attached to the test case. SFTP method in the description. Correct content. ## |Internal User (fails now, known issue) # sos upload test_big_file_sos . . . Optionally, please enter the case id that you are generating this report for: 03093474 Upload target set to Red Hat Upload Target Size of archive is bigger than Red Hat Customer Portal limit for uploads of 1.0G via sos http upload. Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=XLJU-MFGO Device authorized correctly. Uploading file to Red Hat Secure FTP Upload attempt failed: Unable to write archive to destination ## |Internal User (--upload-directory workaround) # sos upload test_big_file_sos --upload-directory=internal_user . . . Optionally, please enter the case id that you are generating this report for: 03093474 Upload target set to Red Hat Upload Target Size of archive is bigger than Red Hat Customer Portal limit for uploads of 1.0G via sos http upload. Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=NTLN-VFNF Device authorized correctly. Uploading file to Red Hat Secure FTP File test_big_file_sos uploaded successfully ## I can see the file attached to the test case. SFTP method in the description. Correct content. ## |TEST CASE: sos upload give ID below 1GB --upload-protocol=sftp => Upload to sftp attach. ## |External User # sos upload --upload-protocol=sftp test_small_file_sos . . . Optionally, please enter the case id that you are generating this report for: 03093474 Upload target set to Red Hat Upload Target Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=RDWW-ASTH Device authorized correctly. Uploading file to Red Hat Secure FTP File test_small_file_sos uploaded successfully ## I can see the file attached to the test case. SFTP method in the description. ## |Internal User (will fail like in previous case) ## |Internal User (--upload-directory workaround) # sos upload --upload-protocol=sftp --upload-directory=internal_user test_small_file_sos . . . Optionally, please enter the case id that you are generating this report for: 03093474 Upload target set to Red Hat Upload Target Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=NBZU-LXUR Device authorized correctly. Uploading file to Red Hat Secure FTP File test_small_file_sos uploaded successfully ## I can see the file attached to the test case. SFTP method in the description. ## |TEST CASE: sos upload no ID below 1GB => Upload to user's SFTP directory, no attach. ## |External User # random_small_file=$(mktemp test_small_file_sos_XXXX); echo $random_small_file; cat test_small_file_sos > $random_small_file test_small_file_sos_w84R # sos upload --upload-protocol=sftp $random_small_file . . . Optionally, please enter the case id that you are generating this report for: Upload target set to Red Hat Upload Target No case id provided, uploading to SFTP Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=LYRI-TUUS Device authorized correctly. Uploading file to Red Hat Secure FTP File test_small_file_sos_w84R uploaded successfully sftp> get users/external_user/test_small_file_sos_w84R # cat test_small_file_sos_w84R Hello Upload ## |Internal User (will fail like in previous case) ## |Internal User (--upload-directory workaround) # random_small_file=$(mktemp test_small_file_sos_XXXX); echo $random_small_file; cat test_small_file_sos > $random_small_file test_small_file_sos_4bTx # sos upload --upload-protocol=sftp --upload-directory=internal_user $random_small_file . . . Optionally, please enter the case id that you are generating this report for: Upload target set to Red Hat Upload Target No case id provided, uploading to SFTP Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=ECJM-IBNS Device authorized correctly. Uploading file to Red Hat Secure FTP File test_small_file_sos_4bTx uploaded successfully sftp> get internal_user/test_small_file_sos_4bTx # cat test_small_file_sos_4bTx Hello Upload ## |TEST CASE: sos upload --case-id below 1GB deny both device auth requests => Fallback to anonymouse SFTP. ## |External User # sos upload --case-id 03093474 test_small_file_sos . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=REDV-FYXS Upload to Red Hat Customer Portal failed due to (400, '{"error":"access_denied","error_description":"The end user denied the authorization request"}'). Trying sftp://sftp.access.redhat.com Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=RQEJ-QLEK Device token authorization has been cancelled by the user. User EmweDQti used for anonymous upload. Please inform your support engineer so they may retrieve the data. File test_small_file_sos uploaded successfully sftp> get anonymous/users/EmweDQti/03093474_test_small_file_sos # cat 03093474_test_small_file_sos Hello Upload ## |Internal User # sos upload --case-id 03093474 test_small_file_sos . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=HNTA-WNMA Upload to Red Hat Customer Portal failed due to (400, '{"error":"access_denied","error_description":"The end user denied the authorization request"}'). Trying sftp://sftp.access.redhat.com Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=UXGN-BXHJ Device token authorization has been cancelled by the user. User yURfcKTb used for anonymous upload. Please inform your support engineer so they may retrieve the data. File test_small_file_sos uploaded successfully sftp> get anonymous/users/yURfcKTb/03093474_test_small_file_sos # cat 03093474_test_small_file_sos Hello Upload ## |TEST CASE: sos upload --case-id below 1GB timeout both device auth requests => Fallback to anonymouse SFTP. ## |User does not apply here # sos upload --case-id 03093474 test_small_file_sos . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=EEMQ-FQBV Upload to Red Hat Customer Portal failed due to (400, '{"error":"expired_token","error_description":"Device code is expired"}'). Trying sftp://sftp.access.redhat.com Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=BPSO-QRSE User PBkxnpHZ used for anonymous upload. Please inform your support engineer so they may retrieve the data. File test_small_file_sos uploaded successfully sftp> get anonymous/users/PBkxnpHZ/03093474_test_small_file_sos # cat 03093474_test_small_file_sos Hello Upload ## |TEST CASE: sos upload --case-id below 1GB --upload-user => always print deprecation ## |External User # sos upload --case-id 03093474 --upload-user external_user --upload-pass somespass test_small_file_sos . . . Upload target set to Red Hat Upload Target The option --upload-user has been deprecated in favour of device authorization in RHEL The option --upload-pass has been deprecated in favour of device authorization in RHEL Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=TRHR-XQAV Device authorized correctly. Uploading file to Red Hat Customer Portal File test_small_file_sos uploaded successfully ## I can see the file attached to the test case. ## |Internal User # sos upload --case-id 03093474 --upload-user internal_user --upload-pass somespass test_small_file_sos . . . Upload target set to Red Hat Upload Target The option --upload-user has been deprecated in favour of device authorization in RHEL The option --upload-pass has been deprecated in favour of device authorization in RHEL Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=GGQA-JHXX Device authorized correctly. Uploading file to Red Hat Customer Portal File test_small_file_sos uploaded successfully ## I can see the file attached to the test case. ## |TEST CASE: sos upload no ID below 1GB --batch timeout device auth requests => Fallback to anonymouse SFTP. ## |External User (Internal skipped for brevity) # sos upload --batch test_small_file_sos . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=EBMP-NSVO User jDbdrDLm used for anonymous upload. Please inform your support engineer so they may retrieve the data. File test_small_file_sos uploaded successfully sftp> get anonymous/users/jDbdrDLm/test_small_file_sos # cat test_small_file_sos Hello Upload TEST AREA: Report with --upload tests (confirmation it still works) ------------------------------------------------------------------- New (only): =========== _## |TEST CASE: sos upload give ID below 1GB => Upload to portal (http protocol). ## |External User # sos report -o host --upload . . . Optionally, please enter the case id that you are generating this report for: 03093474 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=FVLO-FQFX Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-03093474-2025-06-12-upjgqjz.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. Correct content. ## |Internal User # sos report -o host --upload . . . Optionally, please enter the case id that you are generating this report for: 03093474 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=MQAM-RZXD Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-03093474-2025-06-12-dqlbsuw.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. Correct content. _## |TEST CASE: sos upload give ID over 1 GB => Message and fallback to SFTP (attach). ## |External User # sos report -o lvm2 --all-logs --upload . . . Optionally, please enter the case id that you are generating this report for: 03093474 . . . Upload target set to Red Hat Upload Target Size of archive is bigger than Red Hat Customer Portal limit for uploads of 1.0G via sos http upload. Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=GDTP-EQMG Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-03093474-2025-06-12-cceusqy.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. SFTP method in the description. Correct content. ## |Internal User (fails now, known issue) # sos report -o lvm2 --all-logs --upload . . . Optionally, please enter the case id that you are generating this report for: 03093474 . . . Upload target set to Red Hat Upload Target Size of archive is bigger than Red Hat Customer Portal limit for uploads of 1.0G via sos http upload. Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=NIAY-PTBK Device authorized correctly. Uploading file to Red Hat Secure FTP Upload attempt failed: Unable to write archive to destination ## |Internal User (--upload-directory workaround) # sos report -o lvm2 --all-logs --upload --upload-directory=internal_user . . . Optionally, please enter the case id that you are generating this report for: 03093474 . . . Upload target set to Red Hat Upload Target Size of archive is bigger than Red Hat Customer Portal limit for uploads of 1.0G via sos http upload. Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=IWAF-RDHC Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-03093474-2025-06-12-vlaiydl.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. SFTP method in the description. Correct content. ## |TEST CASE: sos upload give ID below 1GB --upload-protocol=sftp => Upload to sftp attach. ## |External User # sos report -o host --upload --upload-protocol=sftp . . . Optionally, please enter the case id that you are generating this report for: 03093474 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=GLNW-QZPQ Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-03093474-2025-06-12-loqraff.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. SFTP method in the description. ## |Internal User (will fail like in previous case) ## |Internal User (--upload-directory workaround) # sos report -o host --upload --upload-protocol=sftp --upload-directory=internal_user . . . Optionally, please enter the case id that you are generating this report for: 03093474 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=CXDO-XKZK Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-03093474-2025-06-12-uynhhnr.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. SFTP method in the description. ## |TEST CASE: sos upload no ID below 1GB => Upload to user's SFTP directory, no attach. ## |External User # sos report -o host --upload . . Optionally, please enter the case id that you are generating this report for: . . . sha256 dca1717dd764e148ca5debe225bef84c6fbbfe6a1365f734e9c84a01f3deefc3 . . . Upload target set to Red Hat Upload Target Optionally, please enter the case id that you are generating this report for: No case id provided, uploading to SFTP Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=NXWZ-NMBX Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-2025-06-12-iyatktb.tar.xz uploaded successfully Uploaded archive successfully sftp> get users/external_user/sosreport-2025-06-12-iyatktb.tar.xz # sha256sum sosreport-2025-06-12-iyatktb.tar.xz dca1717dd764e148ca5debe225bef84c6fbbfe6a1365f734e9c84a01f3deefc3 sosreport-2025-06-12-iyatktb.tar.xz ## |Internal User (will fail like in previous case) ## |Internal User (--upload-directory workaround) # sos report -o host --upload --upload-directory=internal_user . . . Optionally, please enter the case id that you are generating this report for: . . . sha256 e20140c78a4f7edc5fd97e5c6f8fd3ac35897b0c7135d425029b6b1209ded244 . . . Upload target set to Red Hat Upload Target Optionally, please enter the case id that you are generating this report for: No case id provided, uploading to SFTP Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=XVMI-QLJF Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-2025-06-12-cusvsuu.tar.xz uploaded successfully Uploaded archive successfully sftp> get internal_user/sosreport-2025-06-12-cusvsuu.tar.xz # sha256sum sosreport-2025-06-12-cusvsuu.tar.xz e20140c78a4f7edc5fd97e5c6f8fd3ac35897b0c7135d425029b6b1209ded244 sosreport-2025-06-12-cusvsuu.tar.xz ## |TEST CASE: sos upload --case-id below 1GB deny both device auth requests => Fallback to anonymouse SFTP. ## |External User # sos report -o host --upload --case-id 03093474 . . . sha256 bf66eb7a8d5c32e4354a876e73b50b44cb8fda8488fe5525015b360ab1d59343 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=GWKI-FDRX Upload to Red Hat Customer Portal failed due to (400, '{"error":"access_denied","error_description":"The end user denied the authorization request"}'). Trying sftp://sftp.access.redhat.com Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=PDSD-RTYN Device token authorization has been cancelled by the user. User FxCgcqzX used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-03093474-2025-06-12-cjbeobt.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/FxCgcqzX/03093474_sosreport-03093474-2025-06-12-cjbeobt.tar.xz # sha256sum 03093474_sosreport-03093474-2025-06-12-cjbeobt.tar.xz bf66eb7a8d5c32e4354a876e73b50b44cb8fda8488fe5525015b360ab1d59343 03093474_sosreport-03093474-2025-06-12-cjbeobt.tar.xz ## |Internal User # sos report -o host --upload --case-id 03093474 . . . sha256 653a959bd0449ea84cc3292464350a1cb67e28a1541c2c5d29f82b666cfce129 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=BHBG-ZGCY Upload to Red Hat Customer Portal failed due to (400, '{"error":"access_denied","error_description":"The end user denied the authorization request"}'). Trying sftp://sftp.access.redhat.com Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=TMNM-MOQE Device token authorization has been cancelled by the user. User AttAtDoE used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-03093474-2025-06-12-isgdetn.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/AttAtDoE/03093474_sosreport-03093474-2025-06-12-isgdetn.tar.xz # sha256sum 03093474_sosreport-03093474-2025-06-12-isgdetn.tar.xz 653a959bd0449ea84cc3292464350a1cb67e28a1541c2c5d29f82b666cfce129 03093474_sosreport-03093474-2025-06-12-isgdetn.tar.xz ## |TEST CASE: sos upload --case-id below 1GB timeout both device auth requests => Fallback to anonymouse SFTP. ## |User does not apply here # sos report -o host --upload --case-id 03093474 . . . sha256 428b2c2e224976e4d72740e7218767f35b12f58675149c7676fe83bef95c1f00 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=WQPK-RBOL Upload to Red Hat Customer Portal failed due to (400, '{"error":"expired_token","error_description":"Device code is expired"}'). Trying sftp://sftp.access.redhat.com Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=RORK-LHFB User RjHLABeT used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-03093474-2025-06-12-labvwvf.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/RjHLABeT/03093474_sosreport-03093474-2025-06-12-labvwvf.tar.xz # sha256sum 03093474_sosreport-03093474-2025-06-12-labvwvf.tar.xz 428b2c2e224976e4d72740e7218767f35b12f58675149c7676fe83bef95c1f00 03093474_sosreport-03093474-2025-06-12-labvwvf.tar.xz ## |TEST CASE: sos upload --case-id below 1GB --upload-user => always print deprecation ## |External User # sos report -o host --upload --case-id 03093474 --upload-user external_user --upload-pass somespass . . . Upload target set to Red Hat Upload Target The option --upload-user has been deprecated in favour of device authorization in RHEL The option --upload-pass has been deprecated in favour of device authorization in RHEL Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=MUMD-XOJN Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-03093474-2025-06-12-kszgvsf.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. ## |Internal User # sos report -o host --upload --case-id 03093474 --upload-user internal_user --upload-pass somespass . . . Upload target set to Red Hat Upload Target The option --upload-user has been deprecated in favour of device authorization in RHEL The option --upload-pass has been deprecated in favour of device authorization in RHEL Attempting upload to Red Hat Customer Portal Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=INDQ-ZWXX Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-03093474-2025-06-12-zczqisc.tar.xz uploaded successfully Uploaded archive successfully ## I can see the file attached to the test case. ## |TEST CASE: sos upload no ID below 1GB --batch timeout device auth requests => Fallback to anonymouse SFTP. ## |User does not apply here # sos report -o host --upload --batch . . . sha256 d03856f8e28e9fea9aa670b8ce13517185f5ef23e08cfc9f27c1d66eba1c9c54 . . . Upload target set to Red Hat Upload Target Attempting upload to Red Hat Secure FTP Please visit the following URL to authenticate this device: https://sso.redhat.com/device?user_code=HCHY-SVOF User HwDuRAMD used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-2025-06-12-speueii.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/HwDuRAMD/sosreport-2025-06-12-speueii.tar.xz # sha256sum sosreport-2025-06-12-speueii.tar.xz d03856f8e28e9fea9aa670b8ce13517185f5ef23e08cfc9f27c1d66eba1c9c54 sosreport-2025-06-12-speueii.tar.xz