Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
use Getopt::Long;
GetOptions(
"host=s" => \$host,
);
use Net::Telnet::Cisco;
$pass='loginpw';
$enable='enablepw';
my $session = Net::Telnet::Cisco->new(Host => $host);
$session->login('login', $pass);
$session->enable($enable);
$session->cmd("configure terminal");
$session->cmd("clock summer-time EDT recurring 2 Sun Mar 2:00 1 Sun Nov 2:00\n");
$session->cmd("end");
my @clock = $session->cmd("show clock\n");
$session->cmd("wr mem\n");
print "@clock\n";
exit;