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