Monthly Archives :

  • F5 – iRule Rewrite URL

    —URL Rewrite Paste the following text ////The following rule saysIf you come in on https://www.xxxxxx.com.au/-> Rewrite the url to https://www.xxxxxx.com.au/Rosteronprod///Part twoIf you come in on https://www.xxxxx.com.au/Mobile-> Rewrite the url to https://www.xxxxxx.com.au/Rosteronprod/RosteronProdMobile when HTTP_REQUEST {if { [HTTP::uri] equals “/” } {HTTP::uri “/CompanyOnProd”}if { [HTTP::uri] equals “/Mobile” } {HTTP::uri “/Company/Mobile”}}

    READ MORE
  • F5 – Client and Server SSL Termination

    —-SSL Termination (Client)SSL Termination is the PC going to the VIP on the F5. //Configuring CLIENT SSL Termination 3.Import the key (I had an issue) so follow the below guide.System -> File management -> SSL Certificate LIST -> import-Choose certificate-> Paste the Base64 text in the textbox-> Click finished —-SSL Termination (Server)SSL Termination is the […]

    READ MORE
  • Cisco – DMVPN with Spoke to Spoke

    —DMVPN Conceptsshow ip nhrpdebug ip nhrp There are phase 2 DMVPN’s where Spokes can have dynamic IP addresses and register with a HUB and let all traffic flow through the HUBThere are phase 3 DMVPN’s where Spokes can communicate directly with each other after registering with the NextHop Server. NHRP is a protocol which once […]

    READ MORE
  • Azure – Connect MacOS Storage Share SMB

    —-Mounting a storage as a SMB File share on MAC—– Open a share to smb://storagecloud2web.file.core.windows.net/XXX Found under storage -> File Shares Username: “Your storage name” Found under keys Password: Key1 “Key” Found under keys

    READ MORE
  • Arcserve – Bare Metal Recovery

    —-Notes—– —–If Backup was incomplete rename this file on the CLIENT C:\Program Files\Arcserve\Unified Data Protection\Engine\Configuration\IncompleteStatus.ini —ESX Network adapter isnt detected Must use E1000 or 1000e adapter —-Hard drive is not detected by BMR Disk must be SATA not SCSI ————-Performing the recovery——————- Step1. Burn the BMR iso to a USB using Rufus Note there is […]

    READ MORE
  • Azure – Connecting from Powershell from MacOS

    brew install powershell pwsh //Launch Powershell install-module -name Az -AllowClobber -Repository PSGallery -Force connect-azaccount

    READ MORE
  • Cisco – Routing Table Order Of Operations

    show ip route will list the best routes installed in the routing table. The first route to be chosen is the most specific prefix, eg10.0.0.0 /24 beats 10.0.0.0 /16 The next choice is the Administrative distance. Lower is better.A static route has a administrative distance of 1While OSPF has an admistrative distance of 110. Therefor […]

    READ MORE
  • Windows IIS – Find IP and binding

    netstat -ano >appcmd list site

    READ MORE
  • iMAC Commands

    ——–—Find a process ID and directory lsof -d cwd ———-Map a process to a port sudo lsof -i | grep http ——–—Terminal set proxy server export http_proxy=’http://proxyServerSddress:proxyPort’    export https_proxy=’https://proxyServerSddress:proxyPort’ and use the following commands to disable proxy unset http_proxy unset https_proxy ———–Install Putty Brew install gtk+3 brew install –build-from-source putty —–Install ftp server brew install pure-ftpd brew […]

    READ MORE
  • Cisco Netflow Configuration

    ———-Configuration——— flow record FLOW-RECORD  description record to monitor network traffic  match ipv4 tos  match ipv4 protocol  match ipv4 source address  match ipv4 destination address  match transport source-port  match transport destination-port  match interface input  match interface output  collect routing source as  collect routing destination as  collect routing next-hop address ipv4  collect transport tcp flags| b  collect […]

    READ MORE