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

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

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

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

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