Radware config translation
Problem this snippet solves: This is a simple Python script that translates Radware text configuration file and outputs as config snippet and certificate files.
$ ./rad2f5
Usage: rad2f5 <filen...
Updated Jun 06, 2023
Version 3.0PeteWhite
Employee
Joined May 16, 2019
Adriano_Pugedo1
Nov 05, 2019Altostratus
I think I found the issue: it was the size of the line
To run rad2f5 I had to break the line again:
Original
appdirector l7 farm-selection policy-table setCreate redirect_https 0 -m1 \
redirect_URL -pa PRSST=On|RDRS=www.mydomain.com.br|RDRC=PRMN|
After change
appdirector l7 farm-selection policy-table \
setCreate redirect_https 0 -m1 \
redirect_URL -pa PRSST=On|RDRS=www.mydomain.com.br|RDRC=PRMN|
But it did not recognize the certificates
LACP trunks:1
IP routes:22
Non-floating IP interfaces:8
Floating IP interfaces:7
Monitors:0
Virtual Servers:7
Pools:67
SSL Certificates: 0
SSL Keys: 0
SSL profiles: 48
SNAT Pools:6
Layer 7 rules:201
Layer 7 policies:0
Any ideas?