I try to get the show log output, but it gives me partial output, expected output 65000 bytes. How do I fix this?
my $ua = LWP::UserAgent->new;
my $request = HTTP::Request->new('POST' => $url);
$request->content("command='term length 0, sh log'")
$request->protocol('HTTP/1.0');
my $respone = $ua->request($request);
warn Dumper($respone->content); #It only gives me the first page (I've included "term length 0" in my command).
This is the way to 'talk' to routers with
Net::Telnet: