FBBR – Troubleshooting – HTTP
November 24, 2023
FBBR – Troubleshooting – HTTPS Retention
November 26, 2023
FBBR – Troubleshooting – HTTP
November 24, 2023
FBBR – Troubleshooting – HTTPS Retention
November 26, 2023

FBBR – Troubleshooting – HTTPS Backup

Default Port: 443 tcp

HTTPS is HTTP with encryption. The only difference between the two protocols is that HTTPS uses TLS (SSL) to encrypt normal HTTP requests and responses. As a result, HTTPS is far more secure than HTTP. A website that uses HTTP has http:// in its URL, while a website that uses HTTPS has https://.

The first step of troubleshooting a HTTPS Server is that you should be able to view the contents of the HTTPS Server by just entering the URL and authenticating with the username and password.

Using WinSCP

WinSCP can be used to check File Upload and Download from a HTTP File Server.

File protocol: WebDAV

Encryption: TLS/SSL Implicit encryption

Test directory creation with creating a New Directory.

Test File Creation by creating a new file.

Using curl

To validate the connectivity and also list the contents of the HTTPS, use the below command.

# curl -v -k -u <Username> https://<WebDAV_Server>:443/<DIRECTORY>

To create a directory,

# curl -v -k -u <Username> -X MKCOL 'https://<WebDAV_Server>:443/<DIRECTORY>'

To upload a file,

# curl -v -k -u <Username> -T <Local_File_name> 'https://<WebDAV_Server>/<Directory>/'

In the Series:

Leave a Reply

Your email address will not be published. Required fields are marked *