[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.39 and 1.52

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

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.52

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