[BACK]Return to Trango.pm CVS log [TXT][DIR] Up to [local] / trango / Net-Telnet-Trango / lib / Net / Telnet

Diff for /trango/Net-Telnet-Trango/lib/Net/Telnet/Trango.pm between version 1.4 and 1.32

version 1.4, 2005/12/30 20:26:41 version 1.32, 2007/02/02 18:59:50
Line 1 
Line 1 
 package Net::Telnet::Trango;  package Net::Telnet::Trango;
 # $RedRiver: Trango.pm,v 1.3 2005/12/30 19:26:06 andrew Exp $  # $RedRiver: Trango.pm,v 1.31 2007/02/02 18:54:22 andrew Exp $
 use strict;  use strict;
 use warnings;  use warnings;
 use base 'Net::Telnet';  use base 'Net::Telnet';
   
 =pod  =pod
   
 =head1 NAME  =head1 NAME
   
 Net::Telnet::Trango - Perl extension for accessing the Trango telnet interface  Net::Telnet::Trango
   - Perl extension for accessing the Trango telnet interface
 =head1 SYNOPSIS  
   =head1 SYNOPSIS
   use Net::Telnet::Trango;  
   my $t = new Net::Telnet::Trango ( Timeout => 5 );    use Net::Telnet::Trango;
       my $t = new Net::Telnet::Trango ( Timeout => 5 );
   my ($type, $version) = $t->open( Host => $fox );  
       $t->open( Host => $fox ) or die "Error connecting: $!";
   unless (defined $type && defined $version) {  
     die "Error connecting: $!";    $t->login('password') or die "Couldn't log in: $!";
   }  
     # Do whatever
   $t->login('password') or die "Couldn't log in: $!";  
       $t->exit;
   # Do whatever    $t->close;
     
   $t->exit;  =head1 DESCRIPTION
   $t->close;  
   Perl access to the telnet interface on Trango Foxes, SUs and APs.
 =head1 DESCRIPTION  
   Another handy feature is that it will parse the output from certain
 Perl access to the telnet interface on Trango Foxes, SUs and APs.  commands that is in the format "[key1] value1 [key2] value2" and put
   those in a hashref that is returned.  This makes using the output from
 Another handy feature is that it will parse the output from certain commands that is in the format "[key1] value1 [key2] value2" and put those in a hashref that is returned.  This makes using the output from things like sysinfo very easy to do.  things like sysinfo very easy to do.
   
 =head2 EXPORT  =head2 EXPORT
   
 None  None
   
 =cut  =head1 METHODS
   
 our $VERSION = '0.01';  =over
   
 my %PRIVATE = (  =cut
   is_connected => 0,  
   logged_in => 0,  our $VERSION = '0.01';
 );  
   my %PRIVATE = (
 =pod    is_connected => 0,
     logged_in => 0,
 =item new  );
   
 Same as new from L<Net::Telnet> but has defaults for the trango 'Prompt'  =pod
   
 =cut  =item B<new>
   
 sub new  - Creates a new Net::Telnet::Trango object.
 {  
   my $class = shift;          new([Options from Net::Telnet,]
               [Decode => 0,]);
   my %args;  
   if (@_ == 1) {  Same as new from L<Net::Telnet> but sets the default Trango Prompt:
     $args{'Host'} = shift;  '/#> *$/'
   } else {  
     %args = @_;  It also takes an optional parameter 'Decode'.  If not defined it
   }  defaults to 1, if it is set to 0, it will not decode the output and
   instead return a reference to an array of the lines that were returned
   $args{'Prompt'}  ||= '/#> *$/';  from the command.
   
   foreach my $key (keys %args) {  =cut
     $PRIVATE{$key} = $args{$key};  
   }  sub new
   {
   my $self = $class->SUPER::new(%args);    my $class = shift;
   bless $self if ref $self;  
     my %args;
   return $self;    if (@_ == 1) {
 }      $args{'Host'} = shift;
     } else {
 #  _password <new password> <new password>      %args = @_;
 #  ? [command]    }
 #  apsearch <secs> <ch#> <h|v> [<ch#> <h|v>]...  
 #  arp -bcast <on|off>    $args{'Prompt'}  ||= '/#> *$/';
 #  bcastscant <all|suid> <ch#> <h|v> [<ch#> <h|v> ...  
 #  bye    foreach my $key (keys %args) {
 #  cf2cf ap [default|<size>]      $PRIVATE{$key} = $args{$key};
 #  date    }
 #  date <month> <day> <year>    $PRIVATE{'Decode'} = 1 unless defined $PRIVATE{'Decode'};
 #  freq scantable    delete $args{'Decode'};
 #  freq channeltable  
 #  freq writescan [<ch#> <h|v>]    my $self = $class->SUPER::new(%args);
 #  freq writechannel [<ch#> <freq>] ...    bless $self if ref $self;
 #  freq <ch #> <h|v>  
 #  help [command]    return $self;
 #  heater [<on temp> <off temp>]  }
 #  ipconfig [<new ip> <new subnet mask> <new gateway>]  
 #  log [<# of entries, 1..179>]  #  _password <new password> <new password>
 #  log <sum> <# of entries, 1..179>  #  ? [command]
 #  logout  #  apsearch <secs> <ch#> <h|v> [<ch#> <h|v>]...
 #  opmode [ap [y]]  #  arp -bcast <on|off>
 #  password  #  bcastscant <all|suid> <ch#> <h|v> [<ch#> <h|v> ...
 #  ping <ip addr>  #  bye
 #  polar <h|v>  #  cf2cf ap [default|<size>]
 #  power <setism|setunii> <max|min|<dBm>>  #  date
 #  reboot  #  date <month> <day> <year>
 #  restart  #  freq scantable
 #  remarks [<str>]  #  freq channeltable
 #  rfrxthreshold [<ism|unii> <-90|-85|-80|-75|-70|-65>]  #  freq writescan [<ch#> <h|v>]
 #  rfrxth [<ism|unii> <-90|-85|-80|-75|-70|-65>]  #  freq writechannel [<ch#> <freq>] ...
 #  sysinfo  #  freq <ch #> <h|v>
 #  set suid <id>  #  help [command]
 #  set apid <id>  #  heater [<on temp> <off temp>]
 #  set baseid <id>  #  ipconfig [<new ip> <new subnet mask> <new gateway>]
 #  set defaultopmode [<ap|su> <min,0..10>]  #  log [<# of entries, 1..179>]
 #  set defaultopmode off  #  log <sum> <# of entries, 1..179>
 #  set snmpcomm [<read | write | trap (id or setall)> <str>]  #  logout
 #  set mir [on|off]  #  opmode [ap [y]]
 #  set mir threshold <kbps>  #  password
 #  set rssitarget [<ism|unii> <dBm>]  #  ping <ip addr>
 #  set serviceradius [<ism | unii> <miles>]  #  polar <h|v>
 #  ssrssi <ch #> <h|v>  #  power <setism|setunii> <max|min|<dBm>>
 #  su [<suid>|all]  #  reboot
 #  su changechannel <all|suid> <ch#> <h|v>  #  restart
 #  su ipconfig <suid> <new ip> <new subnet> <new gateway>  #  remarks [<str>]
 #  su [live|poweroff|priority]  #  rfrxthreshold [<ism|unii> <-90|-85|-80|-75|-70|-65>]
 #  su <ping|info|status> <suid>  #  rfrxth [<ism|unii> <-90|-85|-80|-75|-70|-65>]
 #  su powerleveling <all|suid>  #  sysinfo
 #  su reboot <all|suid>  #  set suid <id>
 #  su restart <all|suid>  #  set apid <id>
 #  su testrflink <all|suid> [r]  #  set baseid <id>
 #  su testrflink <setlen> [64..1600]  #  set defaultopmode [<ap|su> <min,0..10>]
 #  su testrflink <aptx> [20..100]  #  set defaultopmode off
 #  su sw <suid|all> <sw #> <on|off>  #  set snmpcomm [<read | write | trap (id or setall)> <str>]
 #  sudb [dload | view]  #  set mir [on|off]
 #  sudb add <suid> pr <cir,kbps> <mir,kbps> <device id,hex>  #  set mir threshold <kbps>
 #  sudb add <suid> reg <cir,kbps> <mir,kbps> <device id,hex>  #  set rssitarget [<ism|unii> <dBm>]
 #  sudb delete <all|<suid>>  #  set serviceradius [<ism | unii> <miles>]
 #  sudb modify <suid> <cir|mir> <kbps>  #  ssrssi <ch #> <h|v>
 #  sudb modify <suid> <su2su> <group id,hex>  #  su [<suid>|all]
 #  sudb view  #  su changechannel <all|suid> <ch#> <h|v>
 #  sulog [lastmins | sampleperiod <1..60>]  #  su ipconfig <suid> <new ip> <new subnet> <new gateway>
 #  sulog [<# of entry,1..18>]  #  su [live|poweroff|priority]
 #  survey <ism|unii> <time, sec> <h|v>  #  su <ping|info|status> <suid>
 #  sw [<sw #> <on|off>]  #  su powerleveling <all|suid>
 #  temp  #  su reboot <all|suid>
 #  tftpd [on|off]  #  su restart <all|suid>
 #  time  #  su testrflink <all|suid> [r]
 #  time <hour> <min> <sec>  #  su testrflink <setlen> [64..1600]
 #  save <mainimage|fpgaimage> <current chksum> <new chksum>  #  su testrflink <aptx> [20..100]
 #  save <systemsetting|sudb>  #  su sw <suid|all> <sw #> <on|off>
 #  updateflash <mainimage|fpgaimage> <current chksum> <new chksum>  #  sudb [dload | view]
 #  updateflash <systemsetting|sudb>  #  sudb add <suid> pr <cir,kbps> <mir,kbps> <device id,hex>
   #  sudb add <suid> reg <cir,kbps> <mir,kbps> <device id,hex>
 =pod  #  sudb delete <all|<suid>>
   #  sudb modify <suid> <cir|mir> <kbps>
 =head1 METHODS  #  sudb modify <suid> <su2su> <group id,hex>
   #  sudb view
 =head2 ACCESSORS  #  sulog [lastmins | sampleperiod <1..60>]
   #  sulog [<# of entry,1..18>]
 =over  #  survey <ism|unii> <time, sec> <h|v>
   #  sw [<sw #> <on|off>]
 =item Host  #  temp
   #  tftpd [on|off]
 returns the name of the host that you are accessing  #  time
   #  time <hour> <min> <sec>
 =item firmware_version  #  save <mainimage|fpgaimage> <current chksum> <new chksum>
   #  save <systemsetting|sudb>
 returns the firmware version on the trango if available otherwise undef.    #  updateflash <mainimage|fpgaimage> <current chksum> <new chksum>
 Available after a successful open()  #  updateflash <systemsetting|sudb>
 This is usually only set internally  
   =pod
 =item host_type  
   =back
 returns the type of host from the login banner for example M5830S or M5300S.    
 Available after a successful open()  =head2 ACCESSORS
 This is usually only set internally  
   These are usually only set internally.
 =item is_connected  
   =over
 returns 1 after a successful open() otherwise undef  
 This is usually only set internally  =item B<firmware_version>
   
 =item logged_in  - returns the firmware version
   
 returns 1 after a successful login() 0 if it failed and undef if  Returns the firmware version if available, otherwise undef.
 login() was never called  
 This is usually only set internally  It should be available after a successful open().
   
 =item login_banner  =item B<host_type>
   
 returns the banner that is displayed when first connected at login.  Only set after a successful open()  - return the type of host you are connected to.
   
 This is usually only set internally  returns the type of host from the login banner for example M5830S or M5300S.
   
 =item last_lines  Should be available after a successful open().
   
 returns the output from the last cmd() that was run as an array ref  =item B<is_connected>
 This is usually only set internally  
   - Status of the connection to host.
 =back  
   returns 1 when connected, undef otherwise.
 =head2 ALIASES  
   =item B<logged_in>
 =over  
   - Status of being logged in to the host.
 =item bye  
   returns 1 after a successful login(), 0 if it failed and undef if
 alias of exit()  login() was never called.
   
 =item restart  =item B<login_banner>
   
 alias of reboot()  - The banner when first connecting to the host.
   
 =back  returns the banner that is displayed when first connected at login.
   Only set after a successful open().
 =head2 COMMANDS  
   =item B<last_lines>
 Most of these are just shortcuts to C<cmd(String =E<gt> METHOD)>, as such they accept the same options as C<cmd()>.  Specifically they take a named paramater "args", for example:  
 C<tftpd(args =E<gt> 'on')> would enable tftpd  - The last lines of output from the last cmd().
   
 =over  returns, as an array ref, the output from the last cmd() that was run.
   
 =item tftpd  =item B<last_error>
   
 Returns a hash ref of the decoded output from the command.  - A text output of the last error that was encountered.
   
 Also see enable_tftpd() and disable_tftpd() as those check for correct output  returns the last error reported.  Probably contains the last entry in
   last_lines.
 =item ver  
   =back
 Returns a hash ref of the decoded output from the command.  
   =head2 ALIASES
 =item sysinfo  
   =over
 Returns a hash ref of the decoded output from the command.  
   =item B<bye>
 =item exit  
   - alias of L<exit()>.
 exits the command session with the trango and closes the connection  
   =item B<restart>
 =item reboot  
   - alias of L<reboot()>.
 reboots the trango and closes the connection  
   =back
 =item sulog  
   =head2 COMMANDS
 returns an array ref of hashes containing each log line.  
   Most of these are just shortcuts to C<cmd(String =E<gt> METHOD)>,
 =cut  as such they accept the same options as C<cmd()>.
   Specifically they take a named paramater "args", for example:
   C<tftpd(args =E<gt> 'on')> would enable tftpd
 my $success = 'Success.';  
 my %COMMANDS = (  =over
   tftpd       => { decode => 'all',   expect => $success },  
   ver         => { decode => 'all' },  =item B<tftpd>
   sysinfo     => { decode => 'all',   expect => $success },  
   updateflash => { decode => 'all',   expect => $success },  - Returns a hash ref of the decoded output from the
   sulog       => { decode => 'sulog', expect => $success },  command.
   'exit'      => { Prompt => '//', cmd_disconnects => 1 },  
   reboot      => { Prompt => '//', cmd_disconnects => 1 },  Also see enable_tftpd() and disable_tftpd() as those check that it was
   #su password???  successfully changed.
   #_bootloader  
   #temp  =item B<ver>
   #heater  
 );  - Returns a hash ref of the decoded output from the
   command.
 my %ALIASES = (  
   bye     => 'exit',  =item B<sysinfo>
   restart => 'reboot',  
 );  - Returns a hash ref of the decoded output from the
   command.
 my %ACCESS = map { $_ => 1 } qw(  
   firmware_version  =item B<exit>
   host_type  
   Host  - exits the command session with the Trango and closes
   is_connected  the connection
   logged_in  
   login_banner  =item B<reboot>
   Timeout  
   last_lines  - reboots the Trango and closes the connection
 );  
   =item B<remarks>
 sub AUTOLOAD  
 {  - Set or retrieve the remarks.
   my $self = shift;  
   Takes an optional argument, which sets the remarks.
   my ($method) = (our $AUTOLOAD) =~ /^.*::(\w+)$/  If there is no argument, returns the current remarks.
     or die "Weird: $AUTOLOAD";  
     my $old_remarks = $t->remarks();
   if (exists $ALIASES{$method}) {    $t->remarks($new_remarks);
     $method = $ALIASES{$method};  
     return $self->$method(@_);  =item B<sulog>
   }  
   - returns an array ref of hashes containing each log
   if (exists $COMMANDS{$method}) {  line.
     $method = shift if (@_ == 1);  
     $COMMANDS{$method}{'String'} ||= $method;  =item B<save_sudb>
     return $self->cmd(%{ $COMMANDS{$method} }, @_);  
   }  - returns true on success, undef on failure
   
   if (exists $ACCESS{$method}) {  =item B<syslog>
     my $prev = $PRIVATE{$method};  
     ($PRIVATE{$method}) = @_ if @_;  - returns the output from the syslog command
     return $prev;  
   }  =item B<pipe>
   
   $method = "SUPER::$method";  - returns the output from the pipe command
   return $self->$method(@_);  
 }  =item B<maclist>
   
 =pod  -  returns the output from the maclist command
   
 =item open  =item B<maclist_reset>
   
 Calls Net::Telnet::open() then makes sure you get a password prompt so you are ready to login() and parses the login banner so you can get host_type() and firmware_version()  - resets the maclist.
   
 =cut  No useful output.
   
 sub open  =item B<eth_list>
 {  
   my $self = shift;  - returns the output from the eth list command
   
   unless ( $self->SUPER::open(@_) ) {  =item B<su_info>
     #$! = "Couldn't connect to " . $self->Host . ":  $!";  
     return undef;  - returns information about the SU.
   }  
   You need to pass in the $suid and it will return the info for that suid.
   ## Get to login prompt  
   unless ($self->waitfor(    $t->su_info($suid);
       -match => '/password: ?$/i',  
       -errmode => "return",  =item B<su_testrflink>
     ) ) {  
     #$! = "problem connecting to host (" . $self->Host . "): " .  - tests the RF Link to an su
     #    $self->lastline;  
     return undef;    $t->su_testrflink($suid|'all');
   }  
   =item B<save_ss>
   $self->parse_login_banner($self->lastline);  
   - saves the config.
   $self->is_connected(1);  
   Returns 1 on success, undef on failure.
   return $self->is_connected;  
 }  =cut
   
 =pod  
   my $success = 'Success\\.';
 =item login  my %COMMANDS = (
     tftpd       => { decode => 'all',   expect => $success },
 Calls open() if not already connected, then sends the password and sets logged_in() if successful    ver         => { decode => 'all' },
     sysinfo     => { decode => 'all',   expect => $success },
 =cut    updateflash => { decode => 'all',   expect => $success },
     sulog       => { decode => 'sulog', expect => $success },
 sub login    'exit'      => { no_prompt => 1, cmd_disconnects => 1 },
 {    reboot      => { no_prompt => 1, cmd_disconnects => 1 },
   my $self = shift;    remarks     => { decode => 'all', expect => $success },
     save_sudb   => { String => 'save sudb', expect => $success },
   unless ($self->is_connected) {    syslog      => { expect => $success },
     $self->open or return undef;    'pipe'      => { }, # XXX needs a special decode
   }    maclist     => { decode => 'maclist' },
     maclist_reset => { String => 'maclist reset', expect => 'done' },
   my $password = shift;    eth_link    => { String => 'eth link', expect => $success },
     su_info     => { String => 'su info', decode => 'all', expect => $success },
   $self->print($password);    su_testrflink => { String => 'su testrflink', decode => 'each', expect => $success },
   unless ($self->waitfor(    save_ss     => { String => 'save ss', expect => $success },
     -match => $self->prompt,    opmode      => { decode => 'all',   expect => $success },
     -errmode => "return",    # eth r, w and reset???
   ) ) {    #su password???
     #$! = "login ($self->Host) failed: " . $self->lastline;    #_bootloader
     return undef;    #temp
   }    #heater
   );
   $self->logged_in(1);  
   my %ALIASES = (
   return $self->logged_in;    bye     => 'exit',
 }    restart => 'reboot',
     Host    => 'host',
 =pod  );
   
 =item parse_login_banner  my %ACCESS = map { $_ => 1 } qw(
     firmware_version
 Takes a login banner (what you get when you first connect to the Trango) or reads what is already in login_banner() then parses it and sets host_type() and firmware_version() as well as login_banner()    host_type
     is_connected
 =cut    logged_in
     login_banner
 sub parse_login_banner    Timeout
 {    last_lines
   my $self = shift;    last_vals
     last_error
   if (@_) {    Decode
     $self->login_banner(@_);  );
   }  
   sub AUTOLOAD
   my $banner = $self->login_banner;  {
     my $self = shift;
   my ($type, $ver) = $banner =~  
     /Welcome to Trango Broadband Wireless (\S+)[\s-]+(.+)$/i;    my ($method) = (our $AUTOLOAD) =~ /^.*::(\w+)$/
       or die "Weird: $AUTOLOAD";
   $self->login_banner($banner);  
   $self->host_type($type);    if (exists $ALIASES{$method}) {
   $self->firmware_version($ver);      $method = $ALIASES{$method};
       return $self->$method(@_);
   return 1;    }
 }  
     if (exists $COMMANDS{$method}) {
 =pod      my %cmd;
       foreach my $k (keys %{ $COMMANDS{$method} }) {
 =item enable_tftpd        $cmd{$k} = $COMMANDS{$method}{$k};
       }
 runs C<tftpd(args =E<gt> 'on')> and makes sure that Tftpd is now 'listen'ing      $cmd{'String'} ||= $method;
       $cmd{'args'}   .= ' ' . shift if (@_ == 1);
 =cut      return $self->cmd(%cmd, @_);
     }
 sub enable_tftpd  
 {    if (exists $ACCESS{$method}) {
   my $self = shift;      my $prev = $PRIVATE{$method};
       ($PRIVATE{$method}) = @_ if @_;
   my $vals = $self->tftpd( args => 'on' );      return $prev;
     }
   if ($vals->{'Tftpd'} eq 'listen') {  
     return $vals;    $method = "SUPER::$method";
   } else {    return $self->$method(@_);
     return undef;  }
   }  
 }  =pod
   
 =pod  =item B<open>
   
 =item disable_tftpd  - Open a connection to a Trango AP.
   
 runs C<tftpd(args =E<gt> 'off')> and makes sure that Tftpd is now 'disabled'  Calls Net::Telnet::open() then makes sure you get a password prompt so
   you are ready to login() and parses the login banner so you can get
 =cut  host_type() and firmware_version()
   
 sub disable_tftpd  =cut
 {  
   my $self = shift;  sub open
   {
   my $vals = $self->tftpd( args => 'off' );    my $self = shift;
   
   if (ref $vals eq 'HASH' && $vals->{'Tftpd'} eq 'disabled') {    unless ( $self->SUPER::open(@_) ) {
     return $vals;      $self->last_error("Couldn't connect to " . $self->host . ":  $!");
   } else {      return;
     return undef;    }
   }  
 }    ## Get to login prompt
     unless ($self->waitfor(
 =pod        -match => '/password: ?$/i',
         -errmode => "return",
 =item cmd      ) ) {
       $self->last_error("problem connecting to host (" . $self->host . "): " .
 This does most of the work.  At the heart, it calls Net::Telnet::cmd() but it also does some special stuff for Trango.          $self->lastline);
       return;
 Normally returns the last lines from from the command    }
   
 Also accepts these options:    $self->parse_login_banner($self->lastline);
   
 I<decode>    $self->is_connected(1);
 - if this is true, then it will send the output lines to _decode_lines() and then returns the decoded output  
     return $self->is_connected;
 I<cmd_disconnects>  }
 - if this is true, it then sets logged_in() to false, then it will close() the connection and then sets is_connected() to false  
   =pod
 I<expect>  
 - if this is set (usually to 'Success.') it will check for that in the last line of output and if it does not, will return undef because the command probably failed  =item B<login>
   
 I<args>  - Login to the AP.
 - a string containing the command line options that are passed to the command  
   Calls open() if not already connected, then sends the password and sets
 =cut  logged_in() if successful
   
 sub cmd  =cut
 {  
   my $self = shift;  sub login
   {
   my @valid_net_telnet_opts = qw(    my $self = shift;
     String  
     Output    unless ($self->is_connected) {
     Cmd_remove_mode      $self->open or return;
     Errmode    }
     Input_record_separator  
     Ors    my $password = shift;
     Output_record_separator  
     Prompt    $self->print($password);
     Rs    unless ($self->waitfor(
     Timeout      -match => $self->prompt,
   );      -errmode => "return",
     ) ) {
   my %cfg;      $self->last_error("login ($self->host) failed: " . $self->lastline);
   if (@_ == 2) {      return;
     $cfg{'String'} = shift;    }
   } elsif (@_ > 2) {  
     %cfg = @_;    $self->logged_in(1);
   }  
     return $self->logged_in;
   $cfg{'Timeout'} ||= $self->Timeout;  }
   
   unless ($cfg{'String'}) {  =pod
     #$! = "No command passed";  
     #warn "No command passed\n";  =item B<parse_login_banner>
     return undef;  
   }  - Converts the login_banner to some useful
   variables.
   unless ($self->is_connected) {  
     #$! = "Not connected";  Takes a login banner (what you get when you first connect to the Trango)
     #warn "Not connected\n";  or reads what is already in login_banner() then parses it and sets
     return undef;  host_type() and firmware_version() as well as login_banner()
   }  
   =cut
   unless ($self->logged_in) {  
     #$! = "Not logged in";  sub parse_login_banner
     #warn "Not logged in\n";  {
     return undef;    my $self = shift;
   }  
     if (@_) {
       $self->login_banner(@_);
   my %cmd;    }
   foreach (@valid_net_telnet_opts) {  
     if (exists $cfg{$_}) {    my $banner = $self->login_banner;
       $cmd{$_} = $cfg{$_};  
     }    my ($type, $sep1, $subtype, $sep2, $ver) = $banner =~
   }      /Welcome to Trango Broadband Wireless (\S+)([\s-]+)(\S+)([\s-]+)(.+)$/i;
   if ($cfg{'args'}) {  
     $cmd{'String'} .= ' ' . $cfg{'args'};    $type .= $sep1 . $subtype;
   }    $ver = $subtype . $sep2 . $ver;
   my @lines = $self->SUPER::cmd(%cmd);  
     $self->login_banner($banner);
   $self->last_lines(\@lines);    $self->host_type($type);
     $self->firmware_version($ver);
   my $vals = 1;  
   if ($cfg{'decode'}) {    return 1;
     if ($cfg{'decode'} eq 'each') {  }
       $vals = _decode_each_line(@lines);  
     } elsif ($cfg{'decode'} eq 'sulog') {  =pod
       $vals = _decode_sulog(@lines);  
     } else {  =item B<su_password>
       $vals = _decode_lines(@lines);  
     }  - Set the password on SUs connected to the AP.
   }  
   su_password('new_password'[, 'suid']) If no suid is specified,
   the default is "all".
   my $last = $self->lastline;  
     $t->su_password('good_pass', 5);
   if ((not $cfg{'expect'}) || $last =~ /$cfg{'expect'}$/) {  
     if ($cfg{'cmd_disconnects'}) {  =cut
       $self->logged_in(0);  
       $self->close;  sub su_password
       $self->is_connected(0);  {
     }    my $self     = shift;
     my $new_pass = shift || '';
     if ($cfg{'decode'}) {    my $su       = shift || 'all';
       return $vals;  
     } else {    unless (defined $new_pass) {
       return @lines;      $self->last_error("No new password");
     }      #return;
   } else {    }
     #$! = "Error with command ($cfg{'string'}): $last";  
     return undef;    return $self->cmd(String => 'su password ' .
   }                       $su . ' ' .
 }                       $new_pass . ' ' .
                        $new_pass,
 #=item _decode_lines                       expect => $success,
                       );
 sub _decode_lines  }
 {  
   my @lines = @_;  =pod
   
   my %conf;  =item B<su_ipconfig>
   
   my $key = '';  - Change IP configuration on SUs connected to
   my $val = '';  the AP.
   my $in_key = 0;  
   my $in_val = 0;  su_ipconfig( 'suid', 'new_ip', 'new_subnet', 'new_gateway' )
   
   foreach my $line (@lines) {    $t->su_ipconfig( 5, '10.0.1.5', '255.255.255.0', '10.0.1.1' );
     next if $line =~ /$success$/;  
   =cut
     my @chars = split //, $line;  
   sub su_ipconfig
     my $last_key = '';  {
     foreach my $c (@chars) {          my $self        = shift;
   
       if ($c eq '[' || $c eq "\r" || $c eq "\n") {          my $suid        = shift;
         if ($c eq '[') {          my $new_ip      = shift;
           $in_key = 1;          my $new_subnet  = shift;
           $in_val = 0;          my $new_gateway = shift;
         } else {  
           $in_key = 0;          if ($suid =~ /\D/) {
           $in_val = 0;                  $self->last_error("Invalid suid '$suid'");
         }                  return;
           }
         if ($key) {          unless ($new_ip) {
           $key =~ s/^\s+//;                  $self->last_error("no new_ip passed");
           $key =~ s/\s+$//;                  return;
           }
           $val =~ s/^\s+//;          unless ($new_subnet) {
           $val =~ s/\s+$//;                  $self->last_error("no new_subnet passed");
                   return;
           if ($key eq 'Checksum' && $last_key) {          }
             # Special case for these bastids.          unless ($new_gateway) {
             my $new = $last_key;                  $self->last_error("no new_gateway passed");
             $new =~ s/\s+\S+$//;                  return;
             $key = $new . " " . $key;          }
           }  
           # su ipconfig <suid> <new ip> <new subnet> <new gateway>
           $last_key = $key;          return $self->cmd(String => 'su ipconfig ' .
           $conf{$key} = $val;                       $suid       . ' ' .
           $key = '';                       $new_ip     . ' ' .
           $val = '';                       $new_subnet . ' ' .
         }                       $new_gateway,
                        expect => $success,
       } elsif ($c eq ']') {                      );
         $in_val = 1;  }
         $in_key = 0;  
         $c = shift @chars;  =pod
   
       } elsif ($in_key) {  =item B<sudb_view>
         $key .= $c;  
   - Returns the output from the sudb view command
       } elsif ($in_val) {  
         $val .= $c;  returns a reference to an array of hashes each containing these keys
       }  'suid', 'type', 'cir', 'mir' and 'mac'
     }  
   }  =cut
   
   if (%conf) {  sub sudb_view
     return \%conf;  {
   } else {    my $self = shift;
     return undef;  
   }    my $lines = $self->cmd( String => 'sudb view', expect => $success ) || [];
 }  
     return unless @{ $lines };
 #=item _decode_each_line  
     unless ($PRIVATE{'Decode'}) {
 sub _decode_each_line      return $lines;
 {    }
   my @lines = @_;  
   my @decoded;    my @sus;
   foreach my $line (@lines) {    foreach (@{ $lines }) {
     my $decoded = _decode_lines($line);      next unless $_;
     push @decoded, $decoded if defined $decoded;      if (/^\[(\d+)\]\s+(\d+)\s+(\d+)\s+(\d+)\s+([0-9A-Fa-f\s]+)$/) {
   }        my %s = (
   return \@decoded;          suid => $1,
 }          type => $2,
           cir  => $3,
 #=item _decode_sulog          mir  => $4,
           mac  => $5,
 sub _decode_sulog        );
 {  
   my @lines = @_;            $s{'mac'} =~ s/\s//g;
   my @decoded;            $s{'mac'} = uc($s{'mac'});
   my $last_tm;  
   foreach my $line (@lines) {        push @sus, \%s;
     my $decoded = _decode_lines($line);      }
     }
     if (defined $decoded) {  
       if ($decoded->{'tm'}) {    return \@sus;
         $last_tm = $decoded->{'tm'};  }
         next;  
       } else {  =pod
         $decoded->{'tm'} = $last_tm;  
       }  =item B<sudb_add>
       next unless $last_tm;  
   Takes the following paramaters
       push @decoded, $decoded if defined $decoded;  
     }          suid : numeric,
   }          type : (reg|pr)
   return \@decoded;          cir  : numeric,
 }          mir  : numeric,
           mac  : Almost any format, it will be reformatted,
 1;  
 __END__  and returns true on success or undef otherwise.
   
 =back    $t->sudb_add($suid, 'reg', $cir, $mir, $mac);
   
 =head1 SEE ALSO  You should save_sudb() after calling this, or your changes  will be lost
   when the AP is rebooted.
 Trango Documentation - http://www.trangobroadband.com/support/product_docs.htm  
   =cut
 L<Net::Telnet>  
   sub sudb_add
 =head1 TODO  {
           my $self = shift;
 There are still a lot of commands that are not accessed directly.  If you call them (as cmd("command + args") or whatever) and it works, please send me examples that work and I will try to get it incorporated into the next version of the script.          my $suid = shift;
           my $type = shift;
 I also want to be able to parse the different types of output from commands like su, sudb all and anything else that would be better available as a perl datastructure.          my $cir  = shift;
           my $mir  = shift;
 =head1 AUTHOR          my $mac  = shift;
   
 Andrew Fresh E<lt>andrew@rraz.netE<gt>          if ($suid =~ /\D/) {
                   $self->last_error("Invalid suid '$suid'");
 =head1 COPYRIGHT AND LICENSE                  return;
           }
 Copyright (C) 2005 by Andrew Fresh  
           unless (lc($type) eq 'reg' || lc($type) eq 'pr') {
 This library is free software; you can redistribute it and/or modify                  $self->last_error("Invalid type '$type'");
 it under the same terms as Perl itself, either Perl version 5.8.7 or,                  return;
 at your option, any later version of Perl 5 you may have available.          }
   
           if ($cir =~ /\D/) {
 =cut                  $self->last_error("Invalid CIR '$cir'");
                   return;
           }
   
           if ($mir =~ /\D/) {
                   $self->last_error("Invalid MIR '$mir'");
                   return;
           }
   
           my $new_mac = $mac;
           $new_mac =~ s/[^0-9A-Fa-f]//;
           unless (length $new_mac == 12) {
                   $self->last_error("Invalid MAC '$mac'");
                   return;
           }
           $new_mac = join ' ', $new_mac =~ /../g;
   
           my $string = 'sudb add ' .
                   $suid . ' ' .
                   $type . ' ' .
                   $cir  . ' ' .
                   $mir  . ' ' .
                   $new_mac;
   
   
           return $self->cmd( String => $string, expect => $success );
   }
   
   =pod
   
   =item B<sudb_delete>
   
   Takes either 'all' or the  suid of the su to delete
   and returns true on success or undef otherwise.
   
     $t->sudb_delete($suid);
   
   You should save_sudb() after calling this, or your changes  will be lost
   when the AP is rebooted.
   
   =cut
   
   sub sudb_delete
   {
           my $self = shift;
           my $suid = shift;
   
           #if (lc($suid) ne 'all' || $suid =~ /\D/) {
           if ($suid =~ /\D/) {
                   $self->last_error("Invalid suid '$suid'");
                   return;
           }
   
           return $self->cmd( String => 'sudb delete ' . $suid, expect => $success );
   }
   
   =pod
   
   =item B<sudb_modify>
   
   Takes either the  suid of the su to change
   as well as what you are changing, either "cir, mir or su2su"
   and returns true on success or undef otherwise.
   
   cir and mir also take a value to set the cir/mir to.
   
   su2su takes a group id parameter that is in hex.
   
     $t->sudb_modify($suid, 'cir', 512);
   
   You should save_sudb() after calling this, or your changes  will be lost
   when the AP is rebooted.
   
   =cut
   
   sub sudb_modify
   {
           my $self  = shift;
           my $suid  = shift;
           my $opt   = shift;
           my $value = shift;
   
           if ($suid =~ /\D/) {
                   $self->last_error("Invalid suid '$suid'");
                   return;
           }
   
           if (lc($opt) eq 'cir' or lc($opt) eq 'mir') {
                   if ($value =~ /\D/) {
                           $self->last_error("Invalid $opt '$value'");
                           return;
                   }
           } elsif (lc($opt) eq 'su2su') {
                   if ($value =~ /[^0-9A-Za-f]/) {
                           $self->last_error("Invalid MAC '$value'");
                           return;
                   }
           } else {
                   $self->last_error("Invalid option '$opt'");
                   return;
           }
   
           my $string = 'sudb modify ' . $suid . ' ' . $opt . ' ' . $value;
   
           return $self->cmd( String => $string, expect => $success );
   }
   
   =pod
   
   =item B<enable_tftpd>
   
   - enable the TFTP server
   
   runs C<tftpd(args =E<gt> 'on')> and makes sure that Tftpd is now 'listen'ing
   
   =cut
   
   sub enable_tftpd
   {
     my $self = shift;
   
     my $vals = $self->tftpd( args => 'on' );
   
     if ($vals->{'Tftpd'} eq 'listen') {
       return $vals;
     } else {
       return;
     }
   }
   
   =pod
   
   =item B<disable_tftpd>
   
   - disable the TFTP server
   
   runs C<tftpd(args =E<gt> 'off')> and makes sure that Tftpd is now 'disabled'
   
   =cut
   
   sub disable_tftpd
   {
     my $self = shift;
   
     my $vals = $self->tftpd( args => 'off' );
   
     if (ref $vals eq 'HASH' && $vals->{'Tftpd'} eq 'disabled') {
       return $vals;
     } else {
       return;
     }
   }
   
   =pod
   
   =item B<cmd>
   
   - runs a command on the AP.
   
   This does most of the work.  At the heart, it calls Net::Telnet::cmd()
   but it also does some special stuff for Trango.
   
   Normally returns the last lines from from the command
   
   If you are using this, rather than one of the "easy" methods above,
   you probably want to read through the source of this module to see how
   some of the other commands are called.
   
   In addition to the Net::Telnet::cmd() options, it also accepts these:
   
   I<decode>
   
   - if this is true, then it will send the output lines to _decode_lines()
   and then returns the decoded output
   
   I<no_prompt>
   
   - if this is true, it does not wait for a prompt, so you are not stuck
   waiting for something that will never happen.
   
   I<cmd_disconnects>
   
   - if this is true, it then sets logged_in() to false, then it will
   close() the connection and set is_connected() to false
   
   I<expect>
   
   - if this is set (usually to 'Success.') it will check for that in the
   last line of output and if it does not, will return undef because the
   command probably failed
   
   I<args>
   
   - a string containing the command line options that are passed to the
   command
   
           $t->cmd( String => 'exit', no_prompt => 1, cmd_disconnects => 1 );
   
   =cut
   
   sub cmd
   {
     my $self = shift;
   
     my @valid_net_telnet_opts = qw(
       String
       Output
       Cmd_remove_mode
       Errmode
       Input_record_separator
       Ors
       Output_record_separator
       Prompt
       Rs
       Timeout
     );
   
     my %cfg;
     if (@_ == 1) {
       $cfg{'String'} = shift;
     } elsif (@_ > 1) {
       %cfg = @_;
     }
   
     $cfg{'Timeout'} ||= $self->Timeout;
   
     unless ($cfg{'String'}) {
       $self->last_error("No command passed");
       return;
     }
   
     unless ($self->is_connected) {
       $self->last_error("Not connected");
       return;
     }
   
     unless ($self->logged_in) {
       $self->last_error("Not logged in");
       return;
     }
   
   
     my %cmd;
     foreach (@valid_net_telnet_opts) {
       if (exists $cfg{$_}) {
         $cmd{$_} = $cfg{$_};
       }
     }
     if ($cfg{'args'}) {
       $cmd{'String'} .= ' ' . $cfg{'args'};
     }
   
     my @lines;
     if ($cfg{'no_prompt'}) {
       $self->print($cmd{'String'});
       @lines = $self->lastline;
     } else {
       @lines = $self->SUPER::cmd(%cmd);
     }
   
     $self->last_lines(\@lines);
   
     my $vals = 1;
     if ($PRIVATE{'Decode'} && $cfg{'decode'}) {
       if ($cfg{'decode'} eq 'each') {
         $vals = _decode_each_line(@lines);
       } elsif ($cfg{'decode'} eq 'sulog') {
         $vals = _decode_sulog(@lines);
       } elsif ($cfg{'decode'} eq 'maclist') {
         $vals = _decode_maclist(@lines);
       } else {
         $vals = _decode_lines(@lines);
       }
     }
   
     $self->last_vals($vals);
   
   
     my $last = $self->lastline;
   
     if ((not $cfg{'expect'}) || $last =~ /$cfg{'expect'}$/) {
       if ($cfg{'cmd_disconnects'}) {
         $self->logged_in(0);
         $self->close;
         $self->is_connected(0);
       }
   
       if ($PRIVATE{'Decode'} && $cfg{'decode'}) {
         return $vals;
       } else {
         return \@lines;
       }
     } else {
       $self->last_error("Error with command ($cfg{'String'}): $last");
       return;
     }
   }
   
   #=item _decode_lines
   
   sub _decode_lines
   {
     my @lines = @_;
   
     my %conf;
   
     my $key = '';
     my $val = undef;
     my @vals;
     my $in_key = 0;
     my $in_val = 1;
   
     foreach my $line (@lines) {
       next if $line =~ /$success$/;
   
       my @chars = split //, $line;
   
       my $last_key = '';
       foreach my $c (@chars) {
   
         if ($c eq '[' || $c eq "\r" || $c eq "\n") {
           if ($c eq '[') {
             $in_key = 1;
             $in_val = 0;
           } else {
             $in_key = 0;
             $in_val = 1;
           }
   
           if ($key) {
             $key =~ s/^\s+//;
             $key =~ s/\s+$//;
   
             if ($val) {
               $val =~ s/^\s+//;
               $val =~ s/\s+$//;
             }
   
             if ($key eq 'Checksum' && $last_key) {
               # Special case for these bastids.
               my $new = $last_key;
               $new =~ s/\s+\S+$//;
               $key = $new . " " . $key;
             }
   
             $conf{$key} = $val;
             $last_key = $key;
             $key = '';
           } elsif ($val) {
                           push @vals, $val;
                   }
           $val = '';
   
         } elsif ($c eq ']') {
           $in_val = 1;
           $in_key = 0;
           $c = shift @chars;
   
         } elsif ($in_key) {
           $key .= $c;
   
         } elsif ($in_val) {
           $val .= $c;
         }
       }
     }
   
     unless ($key) {
       push @vals, $val;
     }
   
     if (@vals == 1) {
       $val = $vals[0];
     } elsif (@vals) {
       $val= \@vals;
     } else {
       $val = undef;
     }
   
     if (%conf) {
       $conf{_pre} = $val if $val;
       return \%conf;
     } else {
       return $val;
     }
   }
   
   #=item _decode_each_line
   
   sub _decode_each_line
   {
     my @lines = @_;
     my @decoded;
     foreach my $line (@lines) {
       my $decoded = _decode_lines($line);
       push @decoded, $decoded if defined $decoded;
     }
     return \@decoded;
   }
   
   #=item _decode_sulog
   
   sub _decode_sulog
   {
     my @lines = @_;
     my @decoded;
     my $last_tm;
     foreach my $line (@lines) {
       my $decoded = _decode_lines($line);
   
       if (defined $decoded) {
         if ($decoded->{'tm'}) {
           $last_tm = $decoded->{'tm'};
           next;
         } else {
           $decoded->{'tm'} = $last_tm;
         }
         next unless $last_tm;
   
         push @decoded, $decoded if defined $decoded;
       }
     }
     return \@decoded;
   }
   
   #=item _decode_maclist
   
   sub _decode_maclist
   {
           my @lines = @_;
           my @decoded;
           my $total_entries = 0;
           my $current_tm = 0;
           foreach my $line (@lines) {
                   $line =~ s/\r?\n$//;
                   my ($mac, $loc, $tm) = $line =~ /
                           ([0-9a-fA-F ]{17})\s+
                           (.*)\s+
                           tm\s+
                           (\d+)
                   /x;
   
                   if ($mac) {
                           $mac =~ s/\s+//g;
                           $loc =~ s/^\s+//;
                           $loc =~ s/\s+$//;
   
                           my $suid = undef;
                           if ($loc =~ /suid\s+=\s+(\d+)/) {
                                   $suid = $1;
                                   $loc = undef;
                           }
   
                           push @decoded, {
                                   mac  => $mac,
                                   loc  => $loc,
                                   tm   => $tm,
                                   suid => $suid,
                           };
                   } elsif ($line =~ /(\d+)\s+entries/) {
                           $total_entries = $1;
                   } elsif ($line =~ /current tm = (\d+)\s+sec/) {
                           $current_tm = $1
                   }
           }
   
           map { $_->{'cur_tm'} = $current_tm } @decoded;
   
           if (scalar @decoded == $total_entries) {
                   return \@decoded;
           } else {
                   # XXX we should have a way to set last error, not sure why we don't
                   return;
           }
   }
   
   1;
   __END__
   
   =back
   
   =head1 SEE ALSO
   
   Trango Documentation - http://www.trangobroadband.com/support/product_docs.htm
   
   L<Net::Telnet>
   
   =head1 TODO
   
   There are still a lot of commands that are not accessed directly.  If
   you call them (as cmd("command + args") or whatever) and it works,
   please send me examples that work and I will try to get it incorporated
   into the next version of the script.
   
   I also want to be able to parse the different types of output from
   commands like su, sudb all and anything else that would be better
   available as a perl datastructure.
   
   =head1 AUTHOR
   
   Andrew Fresh E<lt>andrew@rraz.netE<gt>
   
   =head1 COPYRIGHT AND LICENSE
   
   Copyright (C) 2005,2006,2007 by Andrew Fresh
   
   This library is free software; you can redistribute it and/or modify
   it under the same terms as Perl itself, either Perl version 5.8.7 or,
   at your option, any later version of Perl 5 you may have available.
   
   =cut

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.32

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>