09-20-2012 04:33 PM
Is there a way to view the contents of the .exp file generated from exporting the configuration from RV082?
I've got a couple of RV082 that have the same rules, but want to compare the configuration.
09-24-2012 03:14 PM
Good afternoon Keith Uhlmann
Thanks for using our forum
From 4th byte the rest is the zipped config. try it:
#! /usr/bin/perl -w
use Compress::Zlib;
open(FH, $ARGV[0]);
binmode FH;
seek FH, 4, 0;
sysread FH, $_, (-s $ARGV[0]) - 4;
print uncompress($_);
close(FH);
I hope you find this answer useful, if it was satisfactory for you, please mark the question as Answered.
Greetings,
Johnnatan Rodriguez Miranda
09-26-2012 03:00 PM
Thanks for the information. i'm curious about how to action the script you've included
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide