Tim's IT-Blog

Just a blog about IT and IT-Problems…

How read a Sonicwall Configuration as plain text

by admin_import on 02/09/2008

First export the setting via Web-GUI as exp-File (System –> Settings –> Export Settings). Now create a new perl script for Base64-decoding on your host… #!/usr/bin/perl #Scriptname: decode use strict; use MIME::Base64; local($/) = undef; # slurp my $decoded = decode_base64(<STDIN>); $decoded =~ s/&/n/gms; print $decoded; … and decode the file with the Sonicwall configuration: […]