-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14ad717
commit 4771e3c
Showing
6 changed files
with
117 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -235,6 +235,12 @@ To copy one of the qkview files to the local client machine enter the following | |
POST https://{{rseries_appliance1_ip}}:8888/restconf/data/f5-utils-file-transfer:file/f5-file-download:download-file/f5-file-download:start-download | ||
For the **Headers** secion of the Postman request be sure to add the following headers: | ||
|
||
.. image:: images/rseries_diagnostics/headers.png | ||
:align: center | ||
:scale: 70% | ||
|
||
If you are using Postman, in the body of the API call select **Body**, then selct **form-data**. Then enter the **file-name**, **path**, and **token** as seen below. | ||
|
||
.. image:: images/rseries_diagnostics/downloadqkviewapi.png | ||
|
@@ -250,7 +256,7 @@ If you are using Postman, instead of clicking **Send**, click on the arrow next | |
Logging | ||
======= | ||
|
||
F5OS has extensive logging and diagnostic capabilities, logs are stored locally on disk and can optionally be be sent to a remote syslog server. In addition, there are multiple logging subsystems that can be tweaked to be more or less verbose via the **Software Component Log Levels**. Many functions inside the F5OS layer will log their important events to the default **platform.log** file that resides in the **/log/system/** path. This is the file that will also redirect all logs to a remote location (in addition to local disk) when **Remote Log Servers** are added. There are many other log files available local on the disk (some can also be redirected to be sent remotely) for various functions. As an example, there is an **snmp.log** which logs all SNMP requests and traps that the system send and receives. Another example is the **audit.log** that captures audit related information such as "who has logged in?", "What changes were made?", "Who made the changes?", and unsuccessful login attempts. This section will provide more details on the various logging subsystems, and how to configure them. | ||
F5OS has extensive logging and diagnostic capabilities, logs are stored locally on disk and can optionally be sent to a remote syslog server. In addition, there are multiple logging subsystems that can be tweaked to be more or less verbose via the **Software Component Log Levels**. Many functions inside the F5OS layer will log their important events to the default **platform.log** file that resides in the **/log/system/** path. This is the file that will also redirect all logs to a remote location (in addition to local disk) when **Remote Log Servers** are added. There are many other log files available local on the disk (some can also be redirected to be sent remotely) for various functions. As an example, there is an **snmp.log** which logs all SNMP requests and traps that the system sends and receives. Another example is the **audit.log** that captures audit related information such as "who has logged in?", "What changes were made?", "Who made the changes?", and unsuccessful login attempts. This section will provide more details on the various logging subsystems, and how to configure them. | ||
|
||
There are published error catalogs for each F5OS-A release here: | ||
|
||
|
@@ -434,6 +440,13 @@ In the body of the API call select **form-data**, and then enter the key/value p | |
:align: center | ||
:scale: 70% | ||
For the **Headers** secion of the Postman request be sure to add the following headers: | ||
.. image:: images/rseries_diagnostics/headers.png | ||
:align: center | ||
:scale: 70% | ||
If you are using Postman, instead of clicking **Send**, click on the arrow next to Send, and then select **Send and Download**. You will then be prompted to save the file to your local file system. | ||
.. image:: images/rseries_diagnostics/sendanddownload.png | ||
|
@@ -1786,8 +1799,14 @@ To copy one of the tcpdump files to the local client machine enter the following | |
POST https://{{rseries_appliance1_ip}}:8888/restconf/data/f5-utils-file-transfer:file/f5-file-download:download-file/f5-file-download:start-download | ||
For the **Headers** secion of the Postman request be sure to add the following headers: | ||
.. image:: images/rseries_diagnostics/headers.png | ||
:align: center | ||
:scale: 70% | ||
If you are using Postman, in the body of the API call select **Body**, then selct **form-data**. Then enter the **file-name**, **path**, and **token** as seen below. Note, that the path for downloading is currently **diags/shared/** and not the full path of **diags/shared/tcpdump/**. This may change in a future release. | ||
If you are using Postman, in the body of the API call select **Body**, then select **form-data**. Then enter the **file-name**, **path**, and **token** as seen below. Note, that the path for downloading is currently **diags/shared/** and not the full path of **diags/shared/tcpdump/**. This may change in a future release. | ||
.. image:: images/rseries_diagnostics/downloadtcpdumpapi.png | ||
:align: center | ||
|
@@ -1896,7 +1915,7 @@ The built-in terminal server will switch the connection to the appropriate tenan | |
.. code-block:: bash | ||
FLD-ML-00054045:~ jmccarron$ ssh [email protected] -p 7001 | ||
prompt$ssh [email protected] -p 7001 | ||
[email protected]'s password: | ||
Successfully connected to tenant1-1 console. The escape sequence is ^] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -268,7 +268,7 @@ In the body of the API call, add the virtual path you want to list. | |
"f5-utils-file-transfer:path": "configs/" | ||
} | ||
You should see output similar to the example below. | ||
You should see output like the example below. | ||
|
||
.. code-block:: json | ||
|
@@ -314,12 +314,19 @@ You should see output similar to the example below. | |
} | ||
} | ||
To download a specific config file use the following API call. | ||
To download a specific config file, use the following API call. | ||
|
||
.. code-block:: bash | ||
POST https://{{rseries_appliance1_ip}}:8888/restconf/data/f5-utils-file-transfer:file/f5-file-download:download-file/f5-file-download:start-download | ||
For the **Headers** secion of the Postman request be sure to add the following headers: | ||
|
||
.. image:: images/rseries_f5os_configuration_backup_and_restore/configheaders.png | ||
:align: center | ||
:scale: 70% | ||
|
||
In the body of the API call select **form-data**, and then enter the key/value pairs as seen below. The example provided will download the configuration file named **jim-july** file that resides in the **configs/** directory. | ||
|
||
.. image:: images/rseries_f5os_configuration_backup_and_restore/configfile.png | ||
|
@@ -442,7 +449,7 @@ The reset of the database will not completely wipe out the system configuration. | |
|
||
.. code-block:: bash | ||
FLD-ML-00054045:~ jmccarron$ ssh -l admin 10.255.0.133 | ||
prompt$ssh -l admin 10.255.0.133 | ||
[email protected]'s password: ***** | ||
You are required to change your password immediately (root enforced) | ||
Last failed login: Thu Jan 20 16:01:00 EST 2022 from 172.18.104.143 on ssh:notty | ||
|
@@ -462,7 +469,7 @@ After the password is changed for the admin account, you will be disconnected an | |
.. code-block:: bash | ||
FLD-ML-00054045:~ jmccarron$ ssh -l admin 10.255.0.133 | ||
prompt$ssh -l admin 10.255.0.133 | ||
[email protected]'s password: | ||
Last login: Thu Jan 20 16:01:04 2022 from 172.18.104.143 | ||
Welcome to the Management CLI | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1679,7 +1679,7 @@ The built-in terminal server will switch the connection to the appropriate tenan | |
.. code-block:: bash | ||
FLD-ML-00054045:~ jmccarron$ ssh [email protected] -p 7001 | ||
prompt$ssh [email protected] -p 7001 | ||
[email protected]'s password: | ||
Successfully connected to tenant1-1 console. The escape sequence is ^] | ||
|