Difference between revisions of "F5 upgrade"
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
https://my.f5.com/manage/s/article/K34745165 | https://my.f5.com/manage/s/article/K34745165 | ||
+ | ## Get new image from https://my.f5.com/manage/s/downloads | ||
+ | ``` | ||
+ | cd /shared/images/ | ||
+ | curl "https://downloads-usw-f5.s3.us-west-1.amazonaws.com/big-ip/big-ip_v16.x/16.1.3/english/16.1.3.5/BIGIP-16.1.3.5-0.0.5.iso?response-content-disposition=attachment%3B%20filename%3DBIGIP-16.1.3.5-0.0.5.iso&X-Amz-Security-Token=..." -o BIGIP-16.1.3.5-0.0.5.iso | ||
+ | ``` | ||
+ | |||
+ | ## Upgrade inactive partition | ||
``` | ``` | ||
tmsh show sys software status | tmsh show sys software status | ||
tmsh list /sys software image | tmsh list /sys software image | ||
tmsh install /sys software image BIGIP-16.1.3.5-0.0.5.iso volume HD1.2 | tmsh install /sys software image BIGIP-16.1.3.5-0.0.5.iso volume HD1.2 | ||
+ | tmsh show sys software status | ||
``` | ``` | ||
+ | ## reboot to new partition when ready | ||
+ | ``` | ||
tmsh reboot volume HD1.2 | tmsh reboot volume HD1.2 | ||
``` | ``` | ||
+ | |||
+ | ## Notes | ||
+ | |||
+ | ### Delete volume | ||
+ | ``` | ||
+ | tmsh delete sys software volume HD1.2 | ||
+ | ``` | ||
+ | |||
``` | ``` | ||
tmsh install /sys software <hotfix | image> <software>.iso volume <volume_number> | tmsh install /sys software <hotfix | image> <software>.iso volume <volume_number> | ||
``` | ``` |
Latest revision as of 02:08, 8 August 2023
cli
https://my.f5.com/manage/s/article/K34745165
Get new image from https://my.f5.com/manage/s/downloads
cd /shared/images/ curl "https://downloads-usw-f5.s3.us-west-1.amazonaws.com/big-ip/big-ip_v16.x/16.1.3/english/16.1.3.5/BIGIP-16.1.3.5-0.0.5.iso?response-content-disposition=attachment%3B%20filename%3DBIGIP-16.1.3.5-0.0.5.iso&X-Amz-Security-Token=..." -o BIGIP-16.1.3.5-0.0.5.iso
Upgrade inactive partition
tmsh show sys software status tmsh list /sys software image tmsh install /sys software image BIGIP-16.1.3.5-0.0.5.iso volume HD1.2 tmsh show sys software status
reboot to new partition when ready
tmsh reboot volume HD1.2
Notes
Delete volume
tmsh delete sys software volume HD1.2
tmsh install /sys software <hotfix | image> <software>.iso volume <volume_number>