[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.36 and 1.59

version 1.36, 2007/02/05 21:09:26 version 1.59, 2009/07/31 22:44:33
Line 1 
Line 1 
 package Net::Telnet::Trango;  package Net::Telnet::Trango;
   
 # $RedRiver: Trango.pm,v 1.35 2007/02/05 21:03:40 andrew Exp $  # $RedRiver: Trango.pm,v 1.58 2009/07/13 16:33:45 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.05';
   
 my %PRIVATE = (  my $EMPTY = q{};
     is_connected => 0,  my $SPACE = q{ };
     logged_in    => 0,  
 );  =pod
   
 =pod  =head2 B<new> - Creates a new Net::Telnet::Trango object.
   
 =head2 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,]);  '/[\$#]>\s*\Z/'
   
 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 = ();
     my $class = shift;      if ( @_ == 1 ) {
           $args{'Host'} = shift;
     my %args;      }
     if ( @_ == 1 ) {      else {
         $args{'Host'} = shift;          %args = @_;
     }      }
     else {  
         %args = @_;      $args{'Prompt'} ||= '/[\$#]>\s*\r?\n?$/';
     }  
       my $decode = $args{'Decode'};
     $args{'Prompt'} ||= '/#> *$/';      delete $args{'Decode'};
   
     foreach my $key ( keys %args ) {      my $self = $class->SUPER::new(%args);
         $PRIVATE{$key} = $args{$key};      bless $self if ref $self;
     }  
     $PRIVATE{'Decode'} = 1 unless defined $PRIVATE{'Decode'};      $args{Decode}       = defined $decode ? $decode : 1;
     delete $args{'Decode'};      $args{is_connected} = 0;
       $args{logged_in}    = 0;
     my $self = $class->SUPER::new(%args);  
     bless $self if ref $self;      *$self->{net_telnet_trango} = \%args;
   
     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>  =head2 B<host_type> - return the type of host you are connected to.
 - 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>  returns 1 after a successful login(), 0 if it failed and undef if
 - Status of being logged in to the host.  login() was never called.
   
 returns 1 after a successful login(), 0 if it failed and undef if  =head2 B<login_banner> - The banner when first connecting to the host.
 login() was never called.  
   returns the banner that is displayed when first connected at login.
 =head2 B<login_banner>  Only set after a successful open().
 - The banner when first connecting to the host.  
   =head2 B<last_lines> - The last lines of output from the last cmd().
 returns the banner that is displayed when first connected at login.    
 Only set after a successful open().  returns, as an array ref, the output from the last cmd() that was run.
   
 =head2 B<last_lines>  =head2 B<last_error> - A text output of the last error that was encountered.
 - The last lines of output from the last cmd().  
   returns the last error reported.  Probably contains the last entry in
 returns, as an array ref, the output from the last cmd() that was run.  last_lines.
   
 =head2 B<last_error>  =head1 ALIASES
 - A text output of the last error that was encountered.  
   =head2 B<bye> - alias of exit()
 returns the last error reported.  Probably contains the last entry in  
 last_lines.  Does the same as exit()
   
 =head1 ALIASES  =head2 B<restart> - alias of reboot()
   
 =head2 B<bye>  Does the same as reboot()
 - alias of exit()  
   =head2 B<save_systemsetting> - alias of save_ss()
 Does the same as exit()  
   Does the same as save_ss()
 =head2 B<restart>  
 - alias of reboot()  =head1 COMMANDS
   
 Does the same as reboot()  Most of these are just shortcuts to C<cmd(String =E<gt> METHOD)>,
   as such they accept the same options as C<cmd()>.
 =head1 COMMANDS  Specifically they take a named paramater "args", for example:
   C<tftpd(args =E<gt> 'on')> would enable tftpd
 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<tftpd> - The output from the tftpd command
 Specifically they take a named paramater "args", for example:  
 C<tftpd(args =E<gt> 'on')> would enable tftpd  Returns a hash ref of the decoded output from the
   command.
 =head2 B<tftpd>  
 - The output from the tftpd command  Also see enable_tftpd() and disable_tftpd() as those check that it was
   successfully changed.
 Returns a hash ref of the decoded output from the  
 command.  =head2 B<ver> - The output from the ver command
   
 Also see enable_tftpd() and disable_tftpd() as those check that it was  Returns a hash ref of the decoded output from the
 successfully changed.  command.
   
 =head2 B<ver>  =head2 B<sysinfo> - The output from the sysinfo command
 - The output from the ver command  
   Returns a hash ref of the decoded output from the
 Returns a hash ref of the decoded output from the  command.
 command.  
   =head2 B<exit> - Exits the connection
 =head2 B<sysinfo>  
 - The output from the sysinfo command  exits the command session with the Trango and closes
   the connection
 Returns a hash ref of the decoded output from the  
 command.  =head2 B<reboot> - Sends a reboot command
   
 =head2 B<exit>  reboots the Trango and closes the connection
 - Exits the connection  
   ==head2 B<reset> <all|0..2> - Sends a reset command
 exits the command session with the Trango and closes  
 the connection  resets settings to default
   
 =head2 B<reboot>  =head2 B<remarks> - Set or retrieve the remarks.
 - Sends a reboot command  
   Takes an optional argument, which sets the remarks.
 reboots the Trango and closes the connection  If there is no argument, returns the current remarks.
   
 =head2 B<remarks>    my $old_remarks = $t->remarks();
 - Set or retrieve the remarks.    $t->remarks($new_remarks);
   
 Takes an optional argument, which sets the remarks.    =head2 B<sulog> - The output from the sulog command
 If there is no argument, returns the current remarks.  
   Returns an array ref of hashes containing each log
   my $old_remarks = $t->remarks();  line.
   $t->remarks($new_remarks);  
   =head2 B<save_sudb> - saves the sudb
 =head2 B<sulog>  
 - The output from the sulog command  Returns true on success, undef on failure
   
 Returns an array ref of hashes containing each log  =head2 B<syslog> - The output from the sulog command
 line.  
   Returns a hashref of the output from the syslog command
 =head2 B<save_sudb>  
 - saves the sudb  =head2 B<pipe> - the pipe command
   
 Returns true on success, undef on failure  Returns the output from the pipe command
   
 =head2 B<syslog>  =head2 B<maclist> - retrieves the maclist
 - The output from the sulog command  
   Returns the output from the maclist command
 Returns a hashref of the output from the syslog command  
   =head2 B<maclist_reset> - resets the maclist.
 =head2 B<pipe>  
 - the pipe command  No useful output.
   
 Returns the output from the pipe command  =head2 B<eth_link> - eth link command
   
 =head2 B<maclist>  Returns the output from the eth link command
 - retrieves the maclist  
   This command seems to cause some weird issues.  It often will cause the
 Returns the output from the maclist command  command after it to appear to fail.  I am not sure why.
   
 =head2 B<maclist_reset>  =head2 B<su_info> - gets the su info
 - resets the maclist.    
   Returns information about the SU.
 No useful output.  
   You need to pass in the $suid and it will return the info for that suid.
 =head2 B<eth_list>  
 - eth list command    $t->su_info($suid);
   
 Returns the output from the eth list command  =head2 B<su_testrflink> - tests the RF Link to an su
   
     $t->su_testrflink($suid|'all');
 =head2 B<su_info>  
 - gets the su info  =head2 B<save_ss> - saves the config.
   
 Returns information about the SU.  Returns 1 on success, undef on failure.
   
 You need to pass in the $suid and it will return the info for that suid.  =head2 B<set_baseid> - sets baseid
   
   $t->su_info($suid);      $t->set_baseid($baseid);
   
 =head2 B<su_testrflink>  =head2 B<set_suid> - sets baseid
 - tests the RF Link to an su  
       $t->set_suid($baseid);
   $t->su_testrflink($suid|'all');  
   =head2 B<set_defaultopmode> - sets default opmode
 =head2 B<save_ss>  
 - saves the config.        $t->set_defaultopmode(ap|su);
   
 Returns 1 on success, undef on failure.  =head2 B<opmode> - sets or returns the opmode
   
 =cut      $t->opmode([ap y|su y]);
   
 my $success  = 'Success\\.';  =head2 B<freq> - sets or returns the freq
 my %COMMANDS = (  
     tftpd       => { decode    => 'all',       expect          => $success },      $channel = '11 v';
     ver         => { decode    => 'all' },      $t->freq([$channel]);
     sysinfo     => { decode    => 'all',       expect          => $success },  
     updateflash => { decode    => 'all',       expect          => $success },  =head2 B<freq_writescan> - sets the freq writescan
     sulog       => { decode    => 'sulog',     expect          => $success },  
     'exit'      => { no_prompt => 1,           cmd_disconnects => 1 },      $channels = '11 v 11 h 12 v 12 h';
     reboot      => { no_prompt => 1,           cmd_disconnects => 1 },      $t->freq_writescan($channels);
     remarks     => { decode    => 'all',       expect          => $success },  
     save_sudb   => { String    => 'save sudb', expect          => $success },  =head2 B<freq_scantable> - returns the freq scantable
     syslog      => { expect    => $success },  
     'pipe'      => {},                        # XXX needs a special decode      $channels = $t->freq_scantable();
     maclist     => { decode => 'maclist' },      # now $channels eq '11 v 11 h 12 v 12 h';
     maclist_reset => { String => 'maclist reset', expect       => 'done' },  
     eth_link    => { String => 'eth link',     expect          => $success },  
     su_info     =>  =cut
       { String => 'su info',  decode => 'all', expect          => $success },  
     su_testrflink =>  my $success  = 'Success\\.';
       { String => 'su testrflink', decode => 'each', expect    => $success },  my %COMMANDS = (
     save_ss     => { String => 'save ss',      expect          => $success },      _clear      => { String    => "\n" },
     opmode      => { decode => 'all',          expect          => $success },      tftpd       => { decode    => 'all', expect => $success },
 );      ver         => { decode    => 'all' },
       sysinfo     => { decode    => 'all', expect => $success },
 my %ALIASES = (      updateflash => { decode    => 'all', expect => $success },
     bye     => 'exit',      sulog       => { decode    => 'sulog', expect => $success },
     restart => 'reboot',      'exit'      => { no_prompt => 1, cmd_disconnects => 1 },
     Host    => 'host',      reboot      => { no_prompt => 1, cmd_disconnects => 1 },
 );      'reset'   => {},
       remarks   => { decode => 'all', expect => $success },
 my %ACCESS = map { $_ => 1 } qw(      save_sudb => { String => 'save sudb', expect => $success },
   firmware_version      syslog  => { expect => $success },
   host_type      'pipe'  => {},      # XXX needs a special decode
   is_connected      maclist => { decode => 'maclist' },
   logged_in      maclist_reset => { String => 'maclist reset', expect => 'done' },
   login_banner      eth_link      => { String => 'eth link',      expect => $success },
   Timeout      su_info => { String => 'su info', decode => 'all', expect => $success },
   last_lines      su_testrflink =>
   last_vals          { String => 'su testrflink', decode => 'each', expect => $success },
   last_error      save_ss    => { String => 'save ss', expect => $success },
   Decode      set_baseid => {
 );          String => 'set baseid',
           decode => 'all',
 sub AUTOLOAD {          expect => $success
     my $self = shift;      },
       set_suid => {
     my ($method) = ( our $AUTOLOAD ) =~ /^.*::(\w+)$/          String => 'set suid',
       or die "Weird: $AUTOLOAD";          decode => 'all',
           expect => $success
     if ( exists $ALIASES{$method} ) {      },
         $method = $ALIASES{$method};      set_defaultopmode => {
         return $self->$method(@_);          String => 'set defaultopmode',
     }          decode => 'all',
           expect => $success
     if ( exists $COMMANDS{$method} ) {      },
         my %cmd;      opmode => { decode => 'all',  expect => $success },
         foreach my $k ( keys %{ $COMMANDS{$method} } ) {      freq   => { decode => 'freq', expect => $success },
             $cmd{$k} = $COMMANDS{$method}{$k};      freq_writescan =>
         }          { String => 'freq writescan', decode => 'all', expect => $success },
         $cmd{'String'} ||= $method;      freq_scantable =>
         $cmd{'args'} .= ' ' . shift if ( @_ == 1 );          { String => 'freq scantable', decode => 'all', expect => $success },
         return $self->cmd( %cmd, @_ );      arq => { decode => 'all' },
     }  );
   
     if ( exists $ACCESS{$method} ) {  my %ALIASES = (
         my $prev = $PRIVATE{$method};      bye               => 'exit',
         ( $PRIVATE{$method} ) = @_ if @_;      restart           => 'reboot',
         return $prev;      Host              => 'host',
     }      save_systemseting => 'save_ss',
   );
     $method = "SUPER::$method";  
     return $self->$method(@_);  my %ACCESS = map { $_ => 1 } qw(
 }      firmware_version
       host_type
 =pod      is_connected
       logged_in
 =head2 B<open>      login_banner
 - Open a connection to a Trango AP.      Timeout
       last_lines
 Calls Net::Telnet::open() then makes sure you get a password prompt so      last_vals
 you are ready to login() and parses the login banner so you can get      last_error
 host_type() and firmware_version()      Decode
   );
 =cut  
   sub AUTOLOAD {
 sub open {      my $self = shift;
     my $self = shift;  
       my ($method) = ( our $AUTOLOAD ) =~ /^.*::(\w+)$/
     unless ( $self->SUPER::open(@_) ) {          or die "Weird: $AUTOLOAD";
         $self->last_error( "Couldn't connect to " . $self->host . ":  $!" );  
         return;      if ( exists $ALIASES{$method} ) {
     }          $method = $ALIASES{$method};
           return $self->$method(@_);
     ## Get to login prompt      }
     unless (  
         $self->waitfor(      if ( exists $COMMANDS{$method} ) {
             -match   => '/password: ?$/i',          my %cmd;
             -errmode => "return",          foreach my $k ( keys %{ $COMMANDS{$method} } ) {
         )              $cmd{$k} = $COMMANDS{$method}{$k};
       )          }
     {          $cmd{'String'} ||= $method;
         $self->last_error( "problem connecting to host ("          $cmd{'args'} .= $SPACE . shift if ( @_ == 1 );
               . $self->host . "): "          return $self->cmd( %cmd, @_ );
               . $self->lastline );      }
         return;  
     }      if ( exists $ACCESS{$method} ) {
           my $s    = *$self->{net_telnet_trango};
     $self->parse_login_banner( $self->lastline );          my $prev = $s->{$method};
           ( $s->{$method} ) = @_ if @_;
     $self->is_connected(1);          return $prev;
       }
     return $self->is_connected;  
 }      $method = "SUPER::$method";
       return $self->$method(@_);
 =pod  }
   
 =head2 B<login>  =pod
 - Login to the AP.  
   =head2 B<open> - Open a connection to a Trango AP.
 Calls open() if not already connected, then sends the password and sets  
 logged_in() if successful  Calls Net::Telnet::open() then makes sure you get a password prompt so
   you are ready to login() and parses the login banner so you can get
 =cut  host_type() and firmware_version()
   
 sub login {  =cut
     my $self = shift;  
   sub open {
     unless ( $self->is_connected ) {      my $self = shift;
         $self->open or return;  
     }      unless ( $self->SUPER::open(@_) ) {
           $self->last_error( "Couldn't connect to " . $self->host . ":  $!" );
     my $password = shift;          return;
       }
     $self->print($password);  
     unless (      ## Get to login prompt
         $self->waitfor(      unless (
             -match   => $self->prompt,          $self->waitfor(
             -errmode => "return",              -match   => '/password: ?$/i',
         )              -errmode => "return",
       )          )
     {          )
         $self->last_error( "login ($self->host) failed: " . $self->lastline );      {
         return;          $self->last_error( "problem connecting to host ("
     }                  . $self->host . "): "
                   . $self->lastline );
     $self->logged_in(1);          return;
       }
     return $self->logged_in;  
 }      $self->parse_login_banner( $self->lastline );
   
 =pod      $self->is_connected(1);
   
 =head2 B<parse_login_banner>      return $self->is_connected;
 - Converts the login_banner to some useful  }
 variables.  
   =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<login> - Login to the AP.
 host_type() and firmware_version() as well as login_banner()  
   Calls open() if not already connected, then sends the password and sets
 =cut  logged_in() if successful
   
 sub parse_login_banner {  =cut
     my $self = shift;  
   sub login {
     if (@_) {      my $self = shift;
         $self->login_banner(@_);  
     }      unless ( $self->is_connected ) {
           $self->open or return;
     my $banner = $self->login_banner;      }
   
     my ( $type, $sep1, $subtype, $sep2, $ver ) =      my $password = shift;
       $banner =~  
       /Welcome to Trango Broadband Wireless (\S+)([\s-]+)(\S+)([\s-]+)(.+)$/i;      $self->print($password);
       unless (
     $type .= $sep1 . $subtype;          $self->waitfor(
     $ver = $subtype . $sep2 . $ver;              -match   => $self->prompt,
               -errmode => "return",
     $self->login_banner($banner);          )
     $self->host_type($type);          )
     $self->firmware_version($ver);      {
           $self->last_error( "login ($self->host) failed: " . $self->lastline );
     return 1;          return;
 }      }
   
 =pod      $self->logged_in(1);
   
 =head2 B<su_password>      return $self->logged_in;
 - Set the password on SUs connected to the AP.  }
   
 su_password('new_password'[, 'suid']) If no suid is specified,  =pod
 the default is "all".  
   =head2 B<parse_login_banner> - Converts the login_banner to something useful.
   $t->su_password('good_pass', 5);  
   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 su_password {  
     my $self     = shift;  =cut
     my $new_pass = shift || '';  
     my $su       = shift || 'all';  sub parse_login_banner {
       my $self = shift;
     unless ( defined $new_pass ) {  
         $self->last_error("No new password");      if (@_) {
           $self->login_banner(@_);
         #return;      }
     }  
       my $banner = $self->login_banner;
     return $self->cmd(  
         String => 'su password ' . $su . ' ' . $new_pass . ' ' . $new_pass,      my ( $type, $sep1, $subtype, $sep2, $ver )
         expect => $success,          = $banner
     );          =~ /Welcome to Trango Broadband Wireless,? (\S+)([\s-]+)(\S+)([\s-]+)(.+)$/i;
 }  
       $type .= $sep1 . $subtype;
 =pod      $ver = $subtype . $sep2 . $ver;
   
 =head2 B<su_ipconfig>      $self->login_banner($banner);
 - Change IP configuration on SUs connected to      $self->host_type($type);
 the AP.      $self->firmware_version($ver);
   
 su_ipconfig( 'suid', 'new_ip', 'new_subnet', 'new_gateway' )      return 1;
   }
   $t->su_ipconfig( 5, '10.0.1.5', '255.255.255.0', '10.0.1.1' );  
   =pod
 =cut  
   =head2 B<linktest> - Link test to SU
 sub su_ipconfig {  
     my $self = shift;  linktest('suid'[, 'pkt len, bytes'[, '# of pkts'[, '# of cycles']]]);
   
     my $suid        = shift;  Returns a hash reference to the results of the test
     my $new_ip      = shift;  
     my $new_subnet  = shift;  =cut
     my $new_gateway = shift;  
   sub linktest {
     if ( $suid =~ /\D/ ) {      my $self = shift;
         $self->last_error("Invalid suid '$suid'");      my $suid = shift;
         return;  
     }      # These numbers are what I found as defaults when running the command
     unless ($new_ip) {      my $pkt_len = shift || 1600;
         $self->last_error("no new_ip passed");      my $pkt_cnt = shift || 500;
         return;      my $cycles  = shift || 10;
     }  
     unless ($new_subnet) {      my %config = @_;
         $self->last_error("no new_subnet passed");  
         return;      # * 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
     unless ($new_gateway) {      # same as $pkt_len, and that might not be enough at slower speeds.
         $self->last_error("no new_gateway passed");      $config{Timeout} ||= int( ( $pkt_len * $pkt_cnt * $cycles * 2 ) / 1000 );
         return;  
     }      my $string = join $SPACE, 'linktest', $suid, $pkt_len, $pkt_cnt, $cycles;
       return $self->cmd(
     # su ipconfig <suid> <new ip> <new subnet> <new gateway>          %config,
     return $self->cmd(          String => $string,
         String => 'su ipconfig ' . $suid . ' ' . $new_ip . ' '          decode => 'linktest',
           . $new_subnet . ' '      );
           . $new_gateway,  
         expect => $success,  }
     );  
 }  =pod
   
 =pod  =head2 B<su_password> - Set the password on SUs connected to the AP.
   
 =head2 B<sudb_view>  su_password('new_password'[, 'suid']) If no suid is specified,
 - Returns the output from the sudb view command  the default is "all".
   
 returns a reference to an array of hashes each containing these keys    $t->su_password('good_pass', 5);
 'suid', 'type', 'cir', 'mir' and 'mac'  
   =cut
 =cut  
   sub su_password {
 sub sudb_view {      my $self     = shift;
     my $self = shift;      my $new_pass = shift || $EMPTY;
       my $su       = shift || 'all';
     my $lines = $self->cmd( String => 'sudb view', expect => $success ) || [];  
       unless ( defined $new_pass ) {
     return unless @{$lines};          $self->last_error("No new password");
   
     unless ( $PRIVATE{'Decode'} ) {          #return;
         return $lines;      }
     }  
       return $self->cmd(
     my @sus;          String => 'su password '
     foreach ( @{$lines} ) {              . $su
         next unless $_;              . $SPACE
         if (/^\[(\d+)\]\s+(\d+)\s+(\d+)\s+(\d+)\s+([0-9A-Fa-f\s]+)$/) {              . $new_pass
             my %s = (              . $SPACE
                 suid => $1,              . $new_pass,
                 type => $2,          expect => $success,
                 cir  => $3,      );
                 mir  => $4,  }
                 mac  => $5,  
             );  =pod
   
             $s{'mac'} =~ s/\s//g;  =head2 B<ipconfig> - Change IP configuration
             $s{'mac'} = uc( $s{'mac'} );  
   ipconfig( 'new_ip', 'new_subnet', 'new_gateway' )
             push @sus, \%s;  
         }    $t->ipconfig( '10.0.1.5', '255.255.255.0', '10.0.1.1' );
     }  
   =cut
     return \@sus;  
 }  sub ipconfig {
       my $self = shift;
 =pod  
       my $string = join $SPACE, 'ipconfig', @_;
 =head2 B<sudb_add>  
       if ( @_ == 3 ) {
 Takes the following paramaters          $self->print($string);
           my @lines = $self->waitfor( Match => '/save\s+and\s+activate/', );
     suid : numeric,          $self->print('y');
     type : (reg|pr)  
     cir  : numeric,          $self->logged_in(0);
     mir  : numeric,          $self->is_connected(0);
     mac  : Almost any format, it will be reformatted,  
           foreach my $line (@lines) {
 and returns true on success or undef otherwise.              if ( $line =~ s/New \s configuration:\s+//xms ) {
                   return _decode_lines($line);
   $t->sudb_add($suid, 'reg', $cir, $mir, $mac);              }
           }
 You should save_sudb() after calling this, or your changes  will be lost  
 when the AP is rebooted.          return {};
       }
 =cut  
       # ipconfig [ <new ip> <new subnet> <new gateway> ]
 sub sudb_add {      return $self->cmd( String => $string, expect => $success );
     my $self = shift;  }
     my $suid = shift;  
     my $type = shift;  =pod
     my $cir  = shift;  
     my $mir  = shift;  =head2 B<su_ipconfig> - Change IP configuration on SUs connected to the AP.
     my $mac  = shift;  
   su_ipconfig( 'suid', 'new_ip', 'new_subnet', 'new_gateway' )
     if ( $suid =~ /\D/ ) {  
         $self->last_error("Invalid suid '$suid'");    $t->su_ipconfig( 5, '10.0.1.5', '255.255.255.0', '10.0.1.1' );
         return;  
     }  =cut
   
     unless ( lc($type) eq 'reg' || lc($type) eq 'pr' ) {  sub su_ipconfig {
         $self->last_error("Invalid type '$type'");      my $self = shift;
         return;  
     }      my $suid        = shift;
       my $new_ip      = shift;
     if ( $cir =~ /\D/ ) {      my $new_subnet  = shift;
         $self->last_error("Invalid CIR '$cir'");      my $new_gateway = shift;
         return;  
     }      if ( $suid =~ /\D/ ) {
           $self->last_error("Invalid suid '$suid'");
     if ( $mir =~ /\D/ ) {          return;
         $self->last_error("Invalid MIR '$mir'");      }
         return;      unless ($new_ip) {
     }          $self->last_error("no new_ip passed");
           return;
     my $new_mac = $mac;      }
     $new_mac =~ s/[^0-9A-Fa-f]//;      unless ($new_subnet) {
     unless ( length $new_mac == 12 ) {          $self->last_error("no new_subnet passed");
         $self->last_error("Invalid MAC '$mac'");          return;
         return;      }
     }      unless ($new_gateway) {
     $new_mac = join ' ', $new_mac =~ /../g;          $self->last_error("no new_gateway passed");
           return;
     my $string =      }
       'sudb add ' . $suid . ' ' . $type . ' ' . $cir . ' ' . $mir . ' '  
       . $new_mac;      # su ipconfig <suid> <new ip> <new subnet> <new gateway>
       return $self->cmd(
     return $self->cmd( String => $string, expect => $success );          String => 'su ipconfig '
 }              . $suid
               . $SPACE
 =pod              . $new_ip
               . $SPACE
 =head2 B<sudb_delete>              . $new_subnet
               . $SPACE
 Takes either 'all' or the  suid of the su to delete              . $new_gateway,
 and returns true on success or undef otherwise.          expect => $success,
       );
   $t->sudb_delete($suid);  }
   
 You should save_sudb() after calling this, or your changes  will be lost  =pod
 when the AP is rebooted.  
   =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 sudb_delete {  'suid', 'su2su', 'type', 'cir', 'mir' and 'mac'
     my $self = shift;  
     my $suid = shift;  =cut
   
     #if (lc($suid) ne 'all' || $suid =~ /\D/) {  sub sudb_view {
     if ( $suid =~ /\D/ ) {      my $self = shift;
         $self->last_error("Invalid suid '$suid'");  
         return;      my $lines = $self->cmd( String => 'sudb view', expect => $success ) || [];
     }  
       return unless @{$lines};
     return $self->cmd( String => 'sudb delete ' . $suid, expect => $success );  
 }      my $s = *$self->{net_telnet_trango};
       return $lines if !$s->{'Decode'};
 =pod  
       my @sus;
 =head2 B<sudb_modify>      foreach ( @{$lines} ) {
           next unless $_;
 Takes either the  suid of the su to change          if (/^
 as well as what you are changing, either "cir, mir or su2su"              \[(\d+)\]
 and returns true on success or undef otherwise.              \s+
               [[:xdigit:]]{2}
 cir and mir also take a value to set the cir/mir to.              ([[:xdigit:]])
               ([[:xdigit:]])
 su2su takes a group id parameter that is in hex.              \s+
               (\d+)
   $t->sudb_modify($suid, 'cir', 512);              \s+
               (\d+)
 You should save_sudb() after calling this, or your changes  will be lost              \s+
 when the AP is rebooted.              ([[:xdigit:]\s]+)
           $/ixms
 =cut              )
           {
 sub sudb_modify {              my %s = (
     my $self  = shift;                  suid  => $1,
     my $suid  = shift;                  su2su => $2 ? $2 : undef,
     my $opt   = shift;                  type  => $3 == 1 ? 'reg' : $3 == 5 ? 'pri' : $3,
     my $value = shift;                  cir   => $4,
                   mir   => $5,
     if ( $suid =~ /\D/ ) {                  mac   => $6,
         $self->last_error("Invalid suid '$suid'");              );
         return;  
     }              $s{'mac'} =~ s/\s//gxms;
               $s{'mac'} = uc( $s{'mac'} );
     if ( lc($opt) eq 'cir' or lc($opt) eq 'mir' ) {  
         if ( $value =~ /\D/ ) {              push @sus, \%s;
             $self->last_error("Invalid $opt '$value'");          }
             return;      }
         }  
     }      return \@sus;
     elsif ( lc($opt) eq 'su2su' ) {  }
         if ( $value =~ /[^0-9A-Za-f]/ ) {  
             $self->last_error("Invalid MAC '$value'");  =pod
             return;  
         }  =head2 B<sudb_add> - Adds an su to the sudb
     }  
     else {  Takes the following paramaters
         $self->last_error("Invalid option '$opt'");  
         return;      suid : numeric,
     }      type : (reg|pr)
       cir  : numeric,
     my $string = 'sudb modify ' . $suid . ' ' . $opt . ' ' . $value;      mir  : numeric,
       mac  : Almost any format, it will be reformatted,
     return $self->cmd( String => $string, expect => $success );  
 }  and returns true on success or undef otherwise.
   
 =pod    $t->sudb_add($suid, 'reg', $cir, $mir, $mac);
   
 =head2 B<enable_tftpd>  You should save_sudb() after calling this, or your changes  will be lost
 - enable the TFTP server  when the AP is rebooted.
   
 runs C<tftpd(args =E<gt> 'on')> and makes sure that Tftpd is now 'listen'ing  =cut
   
 =cut  sub sudb_add {
       my $self = shift;
 sub enable_tftpd {      my $suid = shift;
     my $self = shift;      my $type = shift;
       my $cir  = shift;
     my $vals = $self->tftpd( args => 'on' );      my $mir  = shift;
       my $mac  = shift;
     if ( ref $vals eq 'HASH' && $vals->{'Tftpd'} eq 'listen' ) {  
         return $vals;      if ( $suid =~ /\D/ ) {
     }          $self->last_error("Invalid suid '$suid'");
     else {          return;
         return;      }
     }  
 }      unless ( lc($type) eq 'reg' || lc($type) eq 'pr' ) {
           $self->last_error("Invalid type '$type'");
 =pod          return;
       }
 =head2 B<disable_tftpd>  
 - disable the TFTP server      if ( $cir =~ /\D/ ) {
           $self->last_error("Invalid CIR '$cir'");
 runs C<tftpd(args =E<gt> 'off')> and makes sure that Tftpd is now 'disabled'          return;
       }
 =cut  
       if ( $mir =~ /\D/ ) {
 sub disable_tftpd {          $self->last_error("Invalid MIR '$mir'");
     my $self = shift;          return;
       }
     my $vals = $self->tftpd( args => 'off' );  
       my $new_mac = $mac;
     if ( ref $vals eq 'HASH' && $vals->{'Tftpd'} eq 'disabled' ) {      $new_mac =~ s/[^0-9A-Fa-f]//g;
         return $vals;      unless ( length $new_mac == 12 ) {
     }          $self->last_error("Invalid MAC '$mac'");
     else {          return;
         return;      }
     }      $new_mac = join $SPACE, $new_mac =~ /../g;
 }  
       my $string
 =pod          = 'sudb add '
           . $suid
 =head2 B<cmd> - runs a command on the AP.          . $SPACE
           . $type
 This does most of the work.  At the heart, it calls Net::Telnet::cmd()          . $SPACE
 but it also does some special stuff for Trango.          . $cir
           . $SPACE
 Normally returns the last lines from from the command          . $mir
           . $SPACE
 If you are using this, rather than one of the "easy" methods above,          . $new_mac;
 you probably want to read through the source of this module to see how  
 some of the other commands are called.      return $self->cmd( String => $string, expect => $success );
   }
 In addition to the Net::Telnet::cmd() options, it also accepts these:  
   =pod
 I<decode>  
 - if this is true, then it will send the output lines to _decode_lines()  =head2 B<sudb_delete> - removes an su from the sudb
 and then returns the decoded output  
   Takes either 'all' or the  suid of the su to delete
 I<no_prompt>  and returns true on success or undef otherwise.
 - if this is true, it does not wait for a prompt, so you are not stuck  
 waiting for something that will never happen.    $t->sudb_delete($suid);
   
 I<cmd_disconnects>  You should save_sudb() after calling this, or your changes  will be lost
 - if this is true, it then sets logged_in() to false, then it will  when the AP is rebooted.
 close() the connection and set is_connected() to false  
   =cut
 I<expect>  
 - if this is set (usually to 'Success.') it will check for that in the  sub sudb_delete {
 last line of output and if it does not, will return undef because the      my $self = shift;
 command probably failed      my $suid = shift;
   
 I<args>      #if (lc($suid) ne 'all' || $suid =~ /\D/) {
 - a string containing the command line options that are passed to the      if ( $suid =~ /\D/ ) {
 command          $self->last_error("Invalid suid '$suid'");
           return;
     $t->cmd( String => 'exit', no_prompt => 1, cmd_disconnects => 1 );      }
   
 =cut      return $self->cmd( String => 'sudb delete ' . $suid, expect => $success );
   }
 sub cmd {  
     my $self = shift;  =pod
   
     my @valid_net_telnet_opts = qw(  =head2 B<sudb_modify> - changes the su information in the sudb
       String  
       Output  Takes either the  suid of the su to change
       Cmd_remove_mode  as well as what you are changing, either "cir, mir or su2su"
       Errmode  and returns true on success or undef otherwise.
       Input_record_separator  
       Ors  cir and mir also take a value to set the cir/mir to.
       Output_record_separator  
       Prompt  su2su takes a group id parameter that is in hex.
       Rs  
       Timeout    $t->sudb_modify($suid, 'cir', 512);
     );  
   You should save_sudb() after calling this, or your changes  will be lost
     my %cfg;  when the AP is rebooted.
     if ( @_ == 1 ) {  
         $cfg{'String'} = shift;  =cut
     }  
     elsif ( @_ > 1 ) {  sub sudb_modify {
         %cfg = @_;      my $self  = shift;
     }      my $suid  = shift;
       my $opt   = shift;
     $cfg{'Timeout'} ||= $self->Timeout;      my $value = shift;
   
     unless ( $cfg{'String'} ) {      if ( $suid =~ /\D/ ) {
         $self->last_error("No command passed");          $self->last_error("Invalid suid '$suid'");
         return;          return;
     }      }
   
     unless ( $self->is_connected ) {      if ( lc($opt) eq 'cir' or lc($opt) eq 'mir' ) {
         $self->last_error("Not connected");          if ( $value =~ /\D/ ) {
         return;              $self->last_error("Invalid $opt '$value'");
     }              return;
           }
     unless ( $self->logged_in ) {      }
         $self->last_error("Not logged in");      elsif ( lc($opt) eq 'su2su' ) {
         return;          if ( $value =~ /[^0-9A-Za-f]/ ) {
     }              $self->last_error("Invalid MAC '$value'");
               return;
     my %cmd;          }
     foreach (@valid_net_telnet_opts) {      }
         if ( exists $cfg{$_} ) {      else {
             $cmd{$_} = $cfg{$_};          $self->last_error("Invalid option '$opt'");
         }          return;
     }      }
     if ( $cfg{'args'} ) {  
         $cmd{'String'} .= ' ' . $cfg{'args'};      my $string = 'sudb modify ' . $suid . $SPACE . $opt . $SPACE . $value;
     }  
       return $self->cmd( String => $string, expect => $success );
     my @lines;  }
     if ( $cfg{'no_prompt'} ) {  
         $self->print( $cmd{'String'} );  =pod
         @lines = $self->lastline;  
     }  =head2 B<enable_tftpd> - enable the TFTP server
     else {  
         @lines = $self->SUPER::cmd(%cmd);  runs C<tftpd(args =E<gt> 'on')> and makes sure that Tftpd is now 'listen'ing
     }  
   =cut
     $self->last_lines( \@lines );  
   sub enable_tftpd {
     my $vals = 1;      my $self = shift;
     if ( $PRIVATE{'Decode'} && $cfg{'decode'} ) {  
         if ( $cfg{'decode'} eq 'each' ) {      my $vals = $self->tftpd( args => 'on' );
             $vals = _decode_each_line(@lines);  
         }      if ( ref $vals eq 'HASH' && $vals->{'Tftpd'} eq 'listen' ) {
         elsif ( $cfg{'decode'} eq 'sulog' ) {          return $vals;
             $vals = _decode_sulog(@lines);      }
         }      else {
         elsif ( $cfg{'decode'} eq 'maclist' ) {          return;
             $vals = _decode_maclist(@lines);      }
         }  }
         else {  
             $vals = _decode_lines(@lines);  =pod
         }  
     }  =head2 B<disable_tftpd> - disable the TFTP server
   
     $self->last_vals($vals);  runs C<tftpd(args =E<gt> 'off')> and makes sure that Tftpd is now 'disabled'
   
     my $last = $self->lastline;  =cut
   
     if ( ( not $cfg{'expect'} ) || $last =~ /$cfg{'expect'}$/ ) {  sub disable_tftpd {
         if ( $cfg{'cmd_disconnects'} ) {      my $self = shift;
             $self->logged_in(0);  
             $self->close;      my $vals = $self->tftpd( args => 'off' );
             $self->is_connected(0);  
         }      if ( ref $vals eq 'HASH' && $vals->{'Tftpd'} eq 'disabled' ) {
           return $vals;
         if ( $PRIVATE{'Decode'} && $cfg{'decode'} ) {      }
             return $vals;      else {
         }          return;
         else {      }
             return \@lines;  }
         }  
     }  =pod
     else {  
         $self->last_error("Error with command ($cfg{'String'}): $last");  =head2 B<cmd> - runs a command on the AP.
         return;  
     }  This does most of the work.  At the heart, it calls Net::Telnet::cmd()
 }  but it also does some special stuff for Trango.
   
 #=item _decode_lines  Normally returns the last lines from from the command
   
 sub _decode_lines {  If you are using this, rather than one of the "easy" methods above,
     my @lines = @_;  you probably want to read through the source of this module to see how
   some of the other commands are called.
     my %conf;  
   In addition to the Net::Telnet::cmd() options, it also accepts these:
     my $key = '';  
     my $val = undef;  I<decode>
     my @vals;  - if this is true, then it will send the output lines to _decode_lines()
     my $in_key = 0;  and then returns the decoded output
     my $in_val = 1;  
   I<no_prompt>
     foreach my $line (@lines) {  - if this is true, it does not wait for a prompt, so you are not stuck
         next if $line =~ /$success$/;  waiting for something that will never happen.
   
         my @chars = split //, $line;  I<cmd_disconnects>
   - if this is true, it then sets logged_in() to false, then it will
         my $last_key = '';  close() the connection and set is_connected() to false
         foreach my $c (@chars) {  
   I<expect>
             if ( $c eq '[' || $c eq "\r" || $c eq "\n" ) {  - if this is set (usually to 'Success.') it will check for that in the
                 if ( $c eq '[' ) {  last line of output and if it does not, will return undef because the
                     $in_key = 1;  command probably failed
                     $in_val = 0;  
                 }  I<args>
                 else {  - a string containing the command line options that are passed to the
                     $in_key = 0;  command
                     $in_val = 1;  
                 }      $t->cmd( String => 'exit', no_prompt => 1, cmd_disconnects => 1 );
   
                 if ($key) {  =cut
                     $key =~ s/^\s+//;  
                     $key =~ s/\s+$//;  sub cmd {
       my $self = shift;
                     if ($val) {      my $s    = *$self->{net_telnet_trango};
                         $val =~ s/^\s+//;  
                         $val =~ s/\s+$//;      my @valid_net_telnet_opts = qw(
                     }          String
           Output
                     if ( $key eq 'Checksum' && $last_key ) {          Cmd_remove_mode
           Errmode
                         # Special case for these bastids.          Input_record_separator
                         my $new = $last_key;          Ors
                         $new =~ s/\s+\S+$//;          Output_record_separator
                         $key = $new . " " . $key;          Prompt
                     }          Rs
           Timeout
                     $conf{$key} = $val;      );
                     $last_key   = $key;  
                     $key        = '';      my %cfg;
                 }      if ( @_ == 1 ) {
                 elsif ($val) {          $cfg{'String'} = shift;
                     push @vals, $val;      }
                 }      elsif ( @_ > 1 ) {
                 $val = '';          %cfg = @_;
       }
             }  
             elsif ( $c eq ']' ) {      $cfg{'Timeout'} ||= $self->Timeout;
                 $in_val = 1;  
                 $in_key = 0;      unless ( $cfg{'String'} ) {
                 $c      = shift @chars;          $self->last_error("No command passed");
           return;
             }      }
             elsif ($in_key) {  
                 $key .= $c;      unless ( $self->is_connected ) {
           $self->last_error("Not connected");
             }          return;
             elsif ($in_val) {      }
                 $val .= $c;  
             }      unless ( $self->logged_in ) {
         }          $self->last_error("Not logged in");
     }          return;
       }
     unless ($key) {  
         push @vals, $val;      my %cmd;
     }      foreach (@valid_net_telnet_opts) {
           if ( exists $cfg{$_} ) {
     if ( @vals == 1 ) {              $cmd{$_} = $cfg{$_};
         $val = $vals[0];          }
     }      }
     elsif (@vals) {      if ( $cfg{'args'} ) {
         $val = \@vals;          $cmd{'String'} .= $SPACE . $cfg{'args'};
     }      }
     else {  
         $val = undef;      #print "Running cmd $cmd{String}\n";
     }      my @lines;
       if ( $cfg{'no_prompt'} ) {
     if (%conf) {          $self->print( $cmd{'String'} );
         $conf{_pre} = $val if $val;          @lines = $self->lastline;
         return \%conf;      }
     }      else {
     else {          @lines = $self->SUPER::cmd(%cmd);
         return $val;      }
     }  
 }      $self->last_lines( \@lines );
   
 #=item _decode_each_line      my $last   = $self->lastline;
       my $prompt = $self->prompt;
 sub _decode_each_line {      $prompt =~ s{^/}{}xms;
     my @lines = @_;      $prompt =~ s{/[gixms]*$}{}xms;
     my @decoded;      while ( @lines && $last =~ qr($prompt) ) {
     foreach my $line (@lines) {          pop @lines;
         my $decoded = _decode_lines($line);          $last = $lines[-1];
         push @decoded, $decoded if defined $decoded;      }
     }      $self->last_error($EMPTY);
     return \@decoded;  
 }      my $vals = 1;
       if ( $s->{'Decode'} && $cfg{'decode'} ) {
 #=item _decode_sulog          if ( $cfg{'decode'} eq 'each' ) {
               $vals = _decode_each_line(@lines);
 sub _decode_sulog {          }
     my @lines = @_;          elsif ( $cfg{'decode'} eq 'sulog' ) {
     my @decoded;              $vals = _decode_sulog(@lines);
     my $last_tm;          }
     foreach my $line (@lines) {          elsif ( $cfg{'decode'} eq 'maclist' ) {
         my $decoded = _decode_lines($line);              $vals = _decode_maclist(@lines);
               if ( !$vals ) {
         if ( defined $decoded ) {                  $self->last_error("Error decoding maclist");
             if ( $decoded->{'tm'} ) {              }
                 $last_tm = $decoded->{'tm'};          }
                 next;          elsif ( $cfg{'decode'} eq 'linktest' ) {
             }              $vals = _decode_linktest(@lines);
             else {              if ( !$vals ) {
                 $decoded->{'tm'} = $last_tm;                  $self->last_error("Error decoding linktest");
             }              }
             next unless $last_tm;          }
           elsif ( $cfg{'decode'} eq 'freq' ) {
             push @decoded, $decoded if defined $decoded;              $vals = _decode_freq(@lines);
         }          }
     }          else {
     return \@decoded;              $vals = _decode_lines(@lines);
 }          }
       }
 #=item _decode_maclist      if ( ref $vals eq 'HASH' ) {
           $vals->{_raw} = join q{}, @lines;
 sub _decode_maclist {      }
     my @lines = @_;      $self->last_vals($vals);
     my @decoded;  
     my $total_entries = 0;      if ( ( not $cfg{'expect'} ) || $last =~ /$cfg{'expect'}$/ ) {
     my $current_tm    = 0;          if ( $cfg{'cmd_disconnects'} ) {
     foreach my $line (@lines) {              $self->logged_in(0);
         $line =~ s/\r?\n$//;              $self->close;
         my ( $mac, $loc, $tm ) = $line =~ /              $self->is_connected(0);
             ([0-9a-fA-F ]{17})\s+          }
             (.*)\s+  
             tm\s+          if ( $s->{'Decode'} && $cfg{'decode'} ) {
             (\d+)              return $vals;
         /x;          }
           else {
         if ($mac) {              return \@lines;
             $mac =~ s/\s+//g;          }
             $loc =~ s/^\s+//;      }
             $loc =~ s/\s+$//;      else {
           my $err;
             my $suid = undef;          if ( grep {/\[ERR\]/} @lines ) {
             if ( $loc =~ /suid\s+=\s+(\d+)/ ) {              $err = _decode_lines(@lines);
                 $suid = $1;          }
                 $loc  = undef;  
             }          if ( ref $err eq 'HASH' && $err->{ERR} ) {
               $self->last_error( $err->{ERR} );
             push @decoded,          }
               {          else {
                 mac  => $mac,              $self->last_error("Error with command ($cmd{'String'}): $last");
                 loc  => $loc,          }
                 tm   => $tm,          return;
                 suid => $suid,      }
               };  }
         }  
         elsif ( $line =~ /(\d+)\s+entries/ ) {  #=item _decode_lines
             $total_entries = $1;  
         }  sub _decode_lines {
         elsif ( $line =~ /current tm = (\d+)\s+sec/ ) {      my @lines = @_;
             $current_tm = $1;  
         }      my %conf;
     }  
       my $key = $EMPTY;
     map { $_->{'cur_tm'} = $current_tm } @decoded;      my $val = undef;
       my @vals;
     if ( scalar @decoded == $total_entries ) {      my $in_key = 0;
         return \@decoded;      my $in_val = 1;
     }  
     else {  LINE: while ( my $line = shift @lines ) {
           next LINE if $line =~ /$success\Z/;
         # XXX we should have a way to set last error, not sure why we don't          next LINE if $line =~ /^ \*+ \s+ \d+ \s+ \*+ \Z/xms;
         return;  
     }          # Special decode for sysinfo on a TrangoLink 45
 }          if ( $line =~ /^(.* Channel \s+ Table):\s*(.*)\Z/xms ) {
               my $key  = $1;
 1;    # End of Net::Telnet::Trango              my $note = $2;
 __END__  
               my %vals;
 =head1 SEE ALSO              while ( $line = shift @lines ) {
                   if ( $line =~ /^\Z/ ) {
 Trango Documentation -                      $conf{$key} = \%vals;
 L<http://www.trangobroadband.com/support/product_docs.htm>                      $conf{$key}{note} = $note;
                       next LINE;
 L<Net::Telnet>                  }
   
 =head1 TODO                  my $decoded = _decode_lines($line);
                   if ($decoded) {
 There are still a lot of commands that are not accessed directly.  If                      %vals = ( %vals, %{$decoded} );
 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          # Another special decode for the TrangoLink
 commands like su, sudb all and anything else that would be better          elsif (
 available as a perl datastructure.              $line =~ /^
               RF \s Band \s \#
 =head1 AUTHOR              (\d+) \s+
               \( ([^\)]+) \) \s*
 Andrew Fresh E<lt>andrew@rraz.netE<gt>              (.*)$
           /xms
 =head1 SUPPORT              )
           {
 You can find documentation for this module with the perldoc command.              my $num   = $1;
               my $band  = $2;
     perldoc Net::Telnet::Trango              my $extra = $3;
   
 You can also look for information at:              if ( $extra =~ /\[/ ) {
                   my $decoded = _decode_lines($extra);
 =over 4                  $conf{'RF Band'}{$num} = $decoded;
               }
 =item * AnnoCPAN: Annotated CPAN documentation              else {
                   $conf{'RF Band'}{$num}{$extra} = 1;
 L<http://annocpan.org/dist/Net-Telnet-Trango>              }
               next LINE;
 =item * CPAN Ratings          }
   
 L<http://cpanratings.perl.org/d/Net-Telnet-Trango>          my @chars = split //, $line;
   
 =item * RT: CPAN's request tracker          my $last_key = $EMPTY;
           foreach my $c (@chars) {
 L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-Telnet-Trango>  
               if ( $c eq '[' || $c eq "\r" || $c eq "\n" ) {
 =item * Search CPAN                  if ( $c eq '[' ) {
                       $in_key = 1;
 L<http://search.cpan.org/dist/Net-Telnet-Trango>                      $in_val = 0;
                   }
 =back                  else {
                       $in_key = 0;
 =head1 COPYRIGHT AND LICENSE                      $in_val = 1;
                   }
 Copyright (C) 2005,2006,2007 by Andrew Fresh  
                   if ($key) {
 This program is free software; you can redistribute it and/or modify it                      $key =~ s/^\s+//;
 under the same terms as Perl itself.                      $key =~ s/\s+$//;
   
 =cut                      if ($val) {
                           $val =~ s/^\s+//;
                           $val =~ s/\s+\.*$//;
                       }
   
                       if ( $key eq 'Checksum' && $last_key ) {
   
                           # Special case for these bastids.
                           my $new = $last_key;
                           $new =~ s/\s+\S+$//;
                           $key = $new . $SPACE . $key;
                       }
   
                       $conf{$key} = $val;
                       $last_key   = $key;
                       $key        = $EMPTY;
                   }
                   elsif ($val) {
                       push @vals, $val;
                   }
                   $val = $EMPTY;
   
               }
               elsif ( $c eq ']' ) {
                   $in_val = 1;
                   $in_key = 0;
                   $c      = shift @chars;
   
               }
               elsif ($in_key) {
                   $key .= $c;
   
               }
               elsif ($in_val) {
                   $val .= $c;
               }
           }
       }
   
       unless ($key) {
           push @vals, $val;
       }
   
       foreach my $val (@vals) {
           if ( defined $val && length $val ) {
               $val =~ s/^\s+//;
               $val =~ s/\s+\.*$//;
           }
       }
   
       if ( @vals == 1 ) {
           $val = $vals[0];
       }
       elsif (@vals) {
           $val = \@vals;
       }
       else {
           $val = undef;
       }
   
       if (%conf) {
           $conf{_pre} = $val if $val;
           return \%conf;
       }
       else {
           return $val;
       }
   }
   
   #=item _decode_each_line
   
   sub _decode_each_line {
       my @lines = @_;
       my @decoded;
       foreach my $line (@lines) {
           my $decoded = _decode_lines($line);
           push @decoded, $decoded if defined $decoded && length $decoded;
       }
       return \@decoded;
   }
   
   #=item _decode_linktest
   
   sub _decode_linktest {
       my @lines = @_;
       my %decoded;
       foreach my $line (@lines) {
   
           if ( $line =~ s/^(\d+) \s+ //xms ) {
               my $line_id = $1;
               my ( $tm, $rt );
               if ( $line =~ s/\s+ (\d+ \s+ \w+) \s* $//xms ) {
                   $rt = $1;
               }
               if ( $line =~ s/\s+ (\d+ \s+ \w+) \s* $//xms ) {
                   $tm = $1;
               }
   
               my $d = _decode_lines( $line . "\n" );
               $decoded{tests}[$line_id]         = $d;
               $decoded{tests}[$line_id]{'time'} = $tm;
               $decoded{tests}[$line_id]{rate}   = $rt;
           }
   
           else {
               my $d = _decode_lines( $line . "\n" );
               if ($d) {
                   while ( my ( $k, $v ) = each %{$d} ) {
                       $decoded{$k} = $v;
                   }
               }
           }
   
       }
       return \%decoded;
   }
   
   #=item _decode_sulog
   
   sub _decode_sulog {
       my @lines = @_;
       my @decoded;
       my $last_tm;
       foreach my $line (@lines) {
           my $decoded = _decode_lines($line);
   
           if ( defined $decoded ) {
               if ( $decoded->{'tm'} ) {
                   $last_tm = $decoded->{'tm'};
                   next;
               }
               else {
                   $decoded->{'tm'} = $last_tm;
               }
               next unless $last_tm;
   
               push @decoded, $decoded if defined $decoded;
           }
       }
       return \@decoded;
   }
   
   #=item _decode_maclist
   
   sub _decode_maclist {
       my @lines = @_;
       my @decoded;
       my $total_entries = 0;
       my $current_tm    = 0;
       foreach my $line (@lines) {
           $line =~ s/\r?\n$//;
           my ( $mac, $loc, $tm ) = $line =~ /
               ([0-9a-fA-F ]{17})\s+
               (.*)\s+
               tm\s+
               (\d+)
           /x;
   
           if ($mac) {
               $mac =~ s/\s+//g;
               $loc =~ s/^\s+//;
               $loc =~ s/\s+$//;
   
               my $suid = undef;
               if ( $loc =~ /suid\s+=\s+(\d+)/ ) {
                   $suid = $1;
                   $loc  = undef;
               }
   
               push @decoded,
                   {
                   mac  => $mac,
                   loc  => $loc,
                   tm   => $tm,
                   suid => $suid,
                   };
           }
           elsif ( $line =~ /(\d+)\s+entries/ ) {
               $total_entries = $1;
           }
           elsif ( $line =~ /current tm = (\d+)\s+sec/ ) {
               $current_tm = $1;
           }
       }
   
       map { $_->{'cur_tm'} = $current_tm } @decoded;
   
       if ( scalar @decoded == $total_entries ) {
           return \@decoded;
       }
       else {
           return;
       }
   }
   
   #=item _decode_freq
   
   sub _decode_freq {
       my @lines   = @_;
       my $decoded = _decode_lines(@lines);
   
       if ( $decoded && $decoded->{ERR} ) {
           return $decoded;
       }
   
   LINE: foreach my $line (@lines) {
           if (my ( $channel, $polarity, $freq )
               = $line =~ /
               Ch \s+ \#(\d+)
               \s+
               (\w+)
               \s+
               \[ (\d+) \s+ MHz\]
           /ixms
               )
           {
               $decoded = {
                   channel   => $channel,
                   polarity  => $polarity,
                   frequency => $freq,
               };
               last LINE;
           }
       }
       return $decoded;
   }
   
   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.36  
changed lines
  Added in v.1.59

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