Generate Diagnostic File in Arbor using WinSCP

1. Access the Device using SSH. admin@Test-Leader:/# 2. Generate the Diag File using command:-system diagnostics Generating…………………………… ………..done Diagnostics package saved to: DiagFile-Test-Leader-KEXY.tbz2 Note: Generating Diag file will takr 5 to 20 Min. 3. Then use following set of command: #shell >cd /base/data/files > ls -lr >ls -lt >pwd >passwd root […]

Sending syslogs to remote server from F5

In order to enable syslog on F5, the following steps need to be completed: Log in to tmsh by entering the following command:tmsh To log to the remote syslog server using the TCP protocol, use the following command syntax:    modify /sys syslog include “destination remote_server {tcp(\”<remote syslog server IP>\” port […]

LDAP authentication configuration on F5 BIG-IP

F5 BIG-IP can be configured to authenticate with LDAP server based on freeipa. We can do the same by configuring the autentication settings as such: Web interface: System > Users > Authentication User Directory: Remote – LDAP Host: ipa.example.com <This is the ip or hostname of the LDAP server reachable […]

Automatic Backup of WordPress Website for Free

Install and Activate the plugins – UpdraftPlus Go to Settings and then select GoogleDrive Make the required selection like weekly backup and save the setting Allow the credentials as of GoogleDrive Once everything is done. Go to Backup/Restore Select Backup Now This will enable the backup of all the files […]

NextCloud Full Setup In Ubuntu 18.4 LTS and ARM

Nextcloud is a suite of client-server software for creating and using file hosting services. step 1:- Install Mysql server. Step 2:- Install MariaDB Step 3:- sudo Mysql NextCloud database Setup Step 4:-Mysql> CREATE DATABASE nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; Mysql> GRANT ALL ON nextcloud.* TO ‘nextclouduser’@’localhost’ IDENTIFIED BY ‘change-with-strong-  […]

Website Search Bar Malfunction using CloudFlare SSL

The issue can be resolved by using the Cloudflare Flexible SSL.  This is pretty straight forward. Find the below steps. Install the Cloudflare Flexible SSL plugins. Activate the installed plugins. Enable the Your SSL/TLS encryption mode in Flexible. Make sure to enable the below setting. Always Use HTTPS : Redirect all […]

Ring Version Mismatch Error In Panorama – Palo Alto Tshoot

SYMPTOMS Deploying Panorama in Panorama/Log Collector Combination in HA Mode on the Panorama Managed Log Collectors tab results in the following error: Ring version mismatch. DIAGNOSIS Resolution To resolve this mismatch, the configuration needs to be committed to both Panorama and the log collector group: Perform local commit on Panorama Perform commit […]

ZoneRunner-managed zone – zrsh – F5 Networks

We could also use zrsh as a workaround, but kindly take note this is not officially supported by F5 Technical support and we don’t have official document published for this tool. ******************************************* There’re two types of DNS records in the customer’s RPZ blacklist zone – normal DNS record – wildcard […]

Palo Alto Networks Update Server Failed

Symptom Users sometimes change the content update URL to static to prevent back-end failures. But this practice doesn’t prevent failures, and because of security posture and rules, should only be used on a specific address. This document offers a recommended updates server configuration. Environment update server configuration is set properly updates are failing on the firewall […]

IRule to log to custom file

This is a simple IRule that logs the URLs tried to be accesed in the virtual server where the IRule has been applied: when HTTP_REQUEST { log local0.info “[IP::client_addr] [HTTP::host][HTTP::uri]” } As expected, this lines would be logged to /var/log/ltm file To send those messages to the custom log file, […]

Problem with Panorama shared context

Every Panorama commit shows me Warning: Disabled applications in shared: intercall google-spaces-base google-spaces-posting zenefits gitlab-base gitlab-uploading jumpshare-base jumpshare-uploading xfinity-tv newton-mail cylance directv ms-teams quip filestack-base filestack-downloading filestack-uploading In Panorama CLI use this command for affected apps: request set-application-status-recursive enable-dependent-apps <yes|no> application <value> status <enabled|disabled>

Check the Missing Service Value in Palo Alto Configuration Push

Error : Operation : Commit Status : Completed Result : Failed Details : vsys1 Error: Missing service value Error: Failed to parse security policy (Module: device) Commit failed Warnings How to view the logs : admin@NAKKHU-USER-FW0(active)> tail follow yes mp-log devsrv.log 2019-08-21 00:24:02.919 +0545 Loading PaloAltoNetworks URL categories… 2019-08-21 00:24:02.919 […]

iRule to Log the CLIENTSSL_HANDSHAKE and SERVERSSL_HANDSHAKE- F5 Networks

Use the Below snippet to rewrite the http request. Associate it with the required VS. when CLIENTSSL_HANDSHAKE { log local0. “clientside {[IP::remote_addr]:[TCP::remote_port]} <–> clientside {[IP::local_addr]:[TCP::local_port]}” log local0. “RSA Session-ID:[SSL::sessionid] Master-Key:[SSL::sessionsecret]” } when SERVERSSL_HANDSHAKE { log local0. “serverside {[IP::local_addr]:[TCP::local_port]} <–> serverside {[IP::remote_addr]:[TCP::remote_port]}” log local0. “RSA Session-ID:[SSL::sessionid] Master-Key:[SSL::sessionsecret]” }