Tested manually on x86_64 RHEL-10.0. Common Setup: ------------- ## Create files for upload tests # dd if=/dev/urandom of=test_big_file_sos count=1 bs=1100M # echo "Hello Upload" > test_small_file_sos # ls -lh test_* -rw-r--r--. 1 root root 1.1G Jun 6 10:24 test_big_file_sos -rw-r--r--. 1 root root 13 Jun 6 10:24 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_* 694724e443a881793e141de205a8fdbf27f6ccebcf1c59fed9fb848547dd01c3 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-2.el10.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.el10_0.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=SFYR-CCUF 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=TSJD-CDSF 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=WIRG-VMUZ 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=ROYD-LHUK 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=PMKA-IMYR 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=VFPW-JDGI 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=DOKG-WTBV 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_sd2X # 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=WIDI-MVTR Device authorized correctly. Uploading file to Red Hat Secure FTP File test_small_file_sos_sd2X uploaded successfully sftp> get users/external_user/test_small_file_sos_sd2X # cat test_small_file_sos_sd2X 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_xwPP # 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=HKQJ-AZKH Device authorized correctly. Uploading file to Red Hat Secure FTP File test_small_file_sos_xwPP uploaded successfully sftp> get internal_user/test_small_file_sos_xwPP # cat test_small_file_sos_xwPP 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=JRAW-XQIA 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=SCSS-UARO Device token authorization has been cancelled by the user. User NLZlPBUi 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/NLZlPBUi/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=VVEB-FLIQ 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=GHVW-IKPA Device token authorization has been cancelled by the user. User xgtKzKzr 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/xgtKzKzr/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=SZCF-NIVE 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=FUXP-YVSH User TsumDZsZ 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/TsumDZsZ/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=GCFR-MGNY 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=FLEV-GZBD 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=VTMS-EWJQ User kpoyaATS 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/kpoyaATS/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=CXAO-ZPJK Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-amxcgzw.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=AMUP-AUKT Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-klwluwm.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=ZZZD-XEZZ Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-vucgwsm.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=UWXR-XOKI 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=AZVO-EKSJ Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-vjjyown.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=WKME-AXYX Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-ndcskct.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=AGGW-RBIN Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-ldiancn.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 cb637ebf702f295cef755796d4f284ff6b841cc579ae103f26d2d7a6b8ad53cd . . . 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=JQCA-VOJO Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-rhel-10-2025-06-09-evmsbam.tar.xz uploaded successfully Uploaded archive successfully sftp> get users/external_user/sosreport-rhel-10-2025-06-09-evmsbam.tar.xz # sha256sum sosreport-rhel-10-2025-06-09-evmsbam.tar.xz cb637ebf702f295cef755796d4f284ff6b841cc579ae103f26d2d7a6b8ad53cd sosreport-rhel-10-2025-06-09-evmsbam.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 522bfdf846bb1545ae3cbf14e45074991945685d10585aba47082bf562dd19e1 . . . 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=KWBS-AWGP Device authorized correctly. Uploading file to Red Hat Secure FTP File /var/tmp/sosreport-rhel-10-2025-06-09-udtdesy.tar.xz uploaded successfully Uploaded archive successfully sftp> get internal_user/sosreport-rhel-10-2025-06-09-udtdesy.tar.xz # sha256sum sosreport-rhel-10-2025-06-09-udtdesy.tar.xz 522bfdf846bb1545ae3cbf14e45074991945685d10585aba47082bf562dd19e1 sosreport-rhel-10-2025-06-09-udtdesy.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 ebb95cab6aa9202bec9aea7ed3ad921f2e4bfb7b65c0be307bb5bae914a9f92f . . . 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=TNWD-KXLP 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=NSWP-TFBO Device token authorization has been cancelled by the user. User GwXPUzZu used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-xdevkap.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/GwXPUzZu/03093474_sosreport-rhel-10-03093474-2025-06-09-xdevkap.tar.xz # sha256sum 03093474_sosreport-rhel-10-03093474-2025-06-09-xdevkap.tar.xz ebb95cab6aa9202bec9aea7ed3ad921f2e4bfb7b65c0be307bb5bae914a9f92f 03093474_sosreport-rhel-10-03093474-2025-06-09-xdevkap.tar.xz ## |Internal User # sos report -o host --upload --case-id 03093474 . . . sha256 ae73e2a855d3c44356e2ad926ca141f44a5867fd95428f3ac47eee0a92c58476 . . . 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=LWXL-WGGM 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=DYMV-VUQO Device token authorization has been cancelled by the user. User EDccWXdZ used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-ufdpjhb.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/EDccWXdZ/03093474_sosreport-rhel-10-03093474-2025-06-09-ufdpjhb.tar.xz # sha256sum 03093474_sosreport-rhel-10-03093474-2025-06-09-ufdpjhb.tar.xz ae73e2a855d3c44356e2ad926ca141f44a5867fd95428f3ac47eee0a92c58476 03093474_sosreport-rhel-10-03093474-2025-06-09-ufdpjhb.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 9789ce1725068f32512fa0e621b3deffec64e6d8f21ddd5b856626d6ba80f777 . . . 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=OAEM-HFRW 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=VXBJ-RBMM User spRnkGmr used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-pnkmrbn.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/spRnkGmr/03093474_sosreport-rhel-10-03093474-2025-06-09-pnkmrbn.tar.xz $ sha256sum 03093474_sosreport-rhel-10-03093474-2025-06-09-pnkmrbn.tar.xz 9789ce1725068f32512fa0e621b3deffec64e6d8f21ddd5b856626d6ba80f777 03093474_sosreport-rhel-10-03093474-2025-06-09-pnkmrbn.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=KDUG-MYKS Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-ebfbtrv.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=RAYT-BLYW Device authorized correctly. Uploading file to Red Hat Customer Portal File /var/tmp/sosreport-rhel-10-03093474-2025-06-09-iawjtbk.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 75f7541d9a4368f07bf0df0cf7c072768a12d12d74d65f06e3543304d246bdf0 . . . 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=YVIR-NDXX User qGTNcBRX used for anonymous upload. Please inform your support engineer so they may retrieve the data. File /var/tmp/sosreport-rhel-10-2025-06-09-aahwtzs.tar.xz uploaded successfully Uploaded archive successfully sftp> get anonymous/users/qGTNcBRX/sosreport-rhel-10-2025-06-09-aahwtzs.tar.xz # sha256sum sosreport-rhel-10-2025-06-09-aahwtzs.tar.xz 75f7541d9a4368f07bf0df0cf7c072768a12d12d74d65f06e3543304d246bdf0 sosreport-rhel-10-2025-06-09-aahwtzs.tar.xz