- To verify existing allowed subnets use the below command from F5 CLI:
tmsh list /sys httpd allow
- To modify the existing allowed IP’s or subnets for F5 webui access use the below command.
tmsh modify /sys httpd allow add { <IP address or IP address range> }
tmsh modify /sys httpd allow add {1.1.1.1}
tmsh modify /sys httpd allow add {172.1.0.0/255.255.0.0}
After updating the subnets save the configuration using the below command.
tmsh save /sys config
- To replace all the existing values use the below command.
tmsh modify /sys httpd allow replace-all-with { <IP address or IP address range> }
tmsh modify /sys httpd allow replace-all-with { 172.2.0.0/255.255.255.0 }
After updating the subnets save the configuration using the below command.
tmsh save /sys config