[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.27 and 1.37

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

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