[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.5 and 1.29

version 1.5, 2006/01/03 00:22:19 version 1.29, 2007/02/01 17:58:33
Line 1 
Line 1 
 package Net::Telnet::Trango;  package Net::Telnet::Trango;
 # $RedRiver: Trango.pm,v 1.4 2005/12/30 20:26:41 andrew Exp $  # $RedRiver: Trango.pm,v 1.28 2007/02/01 17:10:07 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'      => { no_prompt => 1, cmd_disconnects => 1 },  
   reboot      => { no_prompt => 1, 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
   last_vals  
 );  =item B<remarks>
   
 sub AUTOLOAD  - Set or retrieve the remarks.
 {  
   my $self = shift;  Takes an optional argument, which sets the remarks.
   If there is no argument, returns the current remarks.
   my ($method) = (our $AUTOLOAD) =~ /^.*::(\w+)$/  
     or die "Weird: $AUTOLOAD";    my $old_remarks = $t->remarks();
     $t->remarks($new_remarks);
   if (exists $ALIASES{$method}) {  
     $method = $ALIASES{$method};  =item B<sulog>
     return $self->$method(@_);  
   }  - returns an array ref of hashes containing each log
   line.
   if (exists $COMMANDS{$method}) {  
     $method = shift if (@_ == 1);  =item B<save_sudb>
     $COMMANDS{$method}{'String'} ||= $method;  
     return $self->cmd(%{ $COMMANDS{$method} }, @_);  - returns true on success, undef on failure
   }  
   =item B<syslog>
   if (exists $ACCESS{$method}) {  
     my $prev = $PRIVATE{$method};  - returns the output from the syslog command
     ($PRIVATE{$method}) = @_ if @_;  
     return $prev;  =item B<pipe>
   }  
   - returns the output from the pipe command
   $method = "SUPER::$method";  
   return $self->$method(@_);  =item B<maclist>
 }  
   -  returns the output from the maclist command
 =pod  
   =item B<maclist_reset>
 =item open  
   - resets the maclist.
 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()  
   No useful output.
 =cut  
   =item B<eth_list>
 sub open  
 {  - returns the output from the eth list command
   my $self = shift;  
   =item B<su_info>
   unless ( $self->SUPER::open(@_) ) {  
     #$! = "Couldn't connect to " . $self->Host . ":  $!";  - returns information about the SU.
     return undef;  
   }  You need to pass in the $suid and it will return the info for that suid.
   
   ## Get to login prompt    $t->su_info($suid);
   unless ($self->waitfor(  
       -match => '/password: ?$/i',  =item B<save_ss>
       -errmode => "return",  
     ) ) {  - saves the config.
     #$! = "problem connecting to host (" . $self->Host . "): " .  
     #    $self->lastline;  Returns 1 on success, undef on failure.
     return undef;  
   }  =cut
   
   $self->parse_login_banner($self->lastline);  
   my $success = 'Success\\.';
   $self->is_connected(1);  my %COMMANDS = (
     tftpd       => { decode => 'all',   expect => $success },
   return $self->is_connected;    ver         => { decode => 'all' },
 }    sysinfo     => { decode => 'all',   expect => $success },
     updateflash => { decode => 'all',   expect => $success },
 =pod    sulog       => { decode => 'sulog', expect => $success },
     'exit'      => { no_prompt => 1, cmd_disconnects => 1 },
 =item login    reboot      => { no_prompt => 1, cmd_disconnects => 1 },
     remarks     => { decode => 'all', expect => $success },
 Calls open() if not already connected, then sends the password and sets logged_in() if successful    save_sudb   => { String => 'save sudb', expect => $success },
     syslog      => { expect => $success },
 =cut    'pipe'      => { }, # XXX needs a special decode
     maclist     => { decode => 'maclist' },
 sub login    maclist_reset => { String => 'maclist reset', expect => 'done' },
 {    eth_link    => { String => 'eth link', expect => $success },
   my $self = shift;    su_info     => { String => 'su info', decode => 'all', expect => $success },
     save_ss     => { String => 'save ss', expect => $success },
   unless ($self->is_connected) {    opmode      => { decode => 'all',   expect => $success },
     $self->open or return undef;    # eth r, w and reset???
   }    #su password???
     #_bootloader
   my $password = shift;    #temp
     #heater
   $self->print($password);  );
   unless ($self->waitfor(  
     -match => $self->prompt,  my %ALIASES = (
     -errmode => "return",    bye     => 'exit',
   ) ) {    restart => 'reboot',
     #$! = "login ($self->Host) failed: " . $self->lastline;    Host    => 'host',
     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+)$/
   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 su_password  
     $method = "SUPER::$method";
 C<su_password('all'|suid, 'new_password')>    return $self->$method(@_);
   }
 =cut  
   =pod
 sub su_password  
 {  =item B<open>
   my $self     = shift;  
   my $su       = shift || '!';  - Open a connection to a Trango AP.
   my $new_pass = shift || '';  
   Calls Net::Telnet::open() then makes sure you get a password prompt so
   unless (defined $su) {  you are ready to login() and parses the login banner so you can get
     warn "No su passed!"  host_type() and firmware_version()
     #return undef;  
   }  =cut
   
   unless (defined $new_pass) {  sub open
     warn "No new password!"    {
     #return undef;    my $self = shift;
   }  
     unless ( $self->SUPER::open(@_) ) {
   return $self->cmd(String => 'su password ' .      $self->last_error("Couldn't connect to " . $self->host . ":  $!");
                      $su . ' ' .      return;
                      $new_pass . ' ' .    }
                      $new_pass,  
                      expect => $success,    ## Get to login prompt
                     );    unless ($self->waitfor(
 }        -match => '/password: ?$/i',
         -errmode => "return",
       ) ) {
 =pod      $self->last_error("problem connecting to host (" . $self->host . "): " .
           $self->lastline);
 =item sudb_view      return;
     }
 returns a reference to an array of hashes each containing:  
     $self->parse_login_banner($self->lastline);
   suid  
   type    $self->is_connected(1);
   cir  
   mir    return $self->is_connected;
   mac  }
   
 =cut  =pod
   
 sub sudb_view  =item B<login>
 {  
   my $self = shift;  - Login to the AP.
   
   my @lines = $self->cmd( String => 'sudb view', expect => $success );  Calls open() if not already connected, then sends the password and sets
   logged_in() if successful
   return undef unless @lines;  
   =cut
   my @sus;  
   foreach (@lines) {  sub login
     if (/^\[(\d+)\]\s+(\d+)\s+(\d+)\s+(\d+)\s+([0-9a-fA-F]+)/) {  {
       my %s = (    my $self = shift;
         suid => $1,  
         type => $2,    unless ($self->is_connected) {
         cir  => $3,      $self->open or return;
         mir  => $4,    }
         mac  => $5,  
       );    my $password = shift;
       push @sus, \%s;  
     }    $self->print($password);
   }    unless ($self->waitfor(
       -match => $self->prompt,
   return \@sus;      -errmode => "return",
 }    ) ) {
       $self->last_error("login ($self->host) failed: " . $self->lastline);
 =pod      return;
     }
 =item enable_tftpd  
     $self->logged_in(1);
 runs C<tftpd(args =E<gt> 'on')> and makes sure that Tftpd is now 'listen'ing  
     return $self->logged_in;
 =cut  }
   
 sub enable_tftpd  =pod
 {  
   my $self = shift;  =item B<parse_login_banner>
   
   my $vals = $self->tftpd( args => 'on' );  - Converts the login_banner to some useful
   variables.
   if ($vals->{'Tftpd'} eq 'listen') {  
     return $vals;  Takes a login banner (what you get when you first connect to the Trango)
   } else {  or reads what is already in login_banner() then parses it and sets
     return undef;  host_type() and firmware_version() as well as login_banner()
   }  
 }  =cut
   
 =pod  sub parse_login_banner
   {
 =item disable_tftpd    my $self = shift;
   
 runs C<tftpd(args =E<gt> 'off')> and makes sure that Tftpd is now 'disabled'    if (@_) {
       $self->login_banner(@_);
 =cut    }
   
 sub disable_tftpd    my $banner = $self->login_banner;
 {  
   my $self = shift;    my ($type, $sep1, $subtype, $sep2, $ver) = $banner =~
       /Welcome to Trango Broadband Wireless (\S+)([\s-]+)(\S+)([\s-]+)(.+)$/i;
   my $vals = $self->tftpd( args => 'off' );  
     $type .= $sep1 . $subtype;
   if (ref $vals eq 'HASH' && $vals->{'Tftpd'} eq 'disabled') {    $ver = $subtype . $sep2 . $ver;
     return $vals;  
   } else {    $self->login_banner($banner);
     return undef;    $self->host_type($type);
   }    $self->firmware_version($ver);
 }  
     return 1;
 =pod  }
   
 =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<su_password>
   
 Normally returns the last lines from from the command  - Set the password on SUs connected to the AP.
   
 Also accepts these options:  su_password('new_password'[, 'suid']) If no suid is specified,
   the default is "all".
 I<decode>  
 - if this is true, then it will send the output lines to _decode_lines() and then returns the decoded output    $t->su_password('good_pass', 5);
   
 I<cmd_disconnects>  =cut
 - 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 su_password
 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    my $self     = shift;
     my $new_pass = shift || '';
 I<args>    my $su       = shift || 'all';
 - a string containing the command line options that are passed to the command  
     unless (defined $new_pass) {
 =cut      $self->last_error("No new password");
       #return;
 sub cmd    }
 {  
   my $self = shift;    return $self->cmd(String => 'su password ' .
                        $su . ' ' .
   my @valid_net_telnet_opts = qw(                       $new_pass . ' ' .
     String                       $new_pass,
     Output                       expect => $success,
     Cmd_remove_mode                      );
     Errmode  }
     Input_record_separator  
     Ors  =pod
     Output_record_separator  
     Prompt  =item B<su_ipconfig>
     Rs  
     Timeout  - Change IP configuration on SUs connected to
   );  the AP.
   
   my %cfg;  su_ipconfig( 'suid', 'new_ip', 'new_subnet', 'new_gateway' )
   if (@_ == 2) {  
     $cfg{'String'} = shift;    $t->su_ipconfig( 5, '10.0.1.5', '255.255.255.0', '10.0.1.1' );
   } elsif (@_ > 2) {  
     %cfg = @_;  =cut
   }  
   sub su_ipconfig
   $cfg{'Timeout'} ||= $self->Timeout;  {
           my $self        = shift;
   unless ($cfg{'String'}) {  
     #$! = "No command passed";          my $suid        = shift;
     #warn "No command passed\n";          my $new_ip      = shift;
     return undef;          my $new_subnet  = shift;
   }          my $new_gateway = shift;
   
   unless ($self->is_connected) {          if ($suid =~ /\D/) {
     #$! = "Not connected";                  $self->last_error("Invalid suid '$suid'");
     #warn "Not connected\n";                  return;
     return undef;          }
   }          unless ($new_ip) {
                   $self->last_error("no new_ip passed");
   unless ($self->logged_in) {                  return;
     #$! = "Not logged in";          }
     #warn "Not logged in\n";          unless ($new_subnet) {
     return undef;                  $self->last_error("no new_subnet passed");
   }                  return;
           }
           unless ($new_gateway) {
   my %cmd;                  $self->last_error("no new_gateway passed");
   foreach (@valid_net_telnet_opts) {                  return;
     if (exists $cfg{$_}) {          }
       $cmd{$_} = $cfg{$_};  
     }          # su ipconfig <suid> <new ip> <new subnet> <new gateway>
   }          return $self->cmd(String => 'su ipconfig ' .
   if ($cfg{'args'}) {                       $suid       . ' ' .
     $cmd{'String'} .= ' ' . $cfg{'args'};                       $new_ip     . ' ' .
   }                       $new_subnet . ' ' .
   my @lines;                       $new_gateway,
   unless ($cfg{'no_prompt'}) {                       expect => $success,
     @lines = $self->SUPER::cmd(%cmd);                      );
   } else {  }
     $self->print($cmd{'String'});  
     @lines = $self->lastline;  =pod
   }  
   =item B<sudb_view>
   $self->last_lines(\@lines);  
   - Returns the output from the sudb view command
   my $vals = 1;  
   if ($cfg{'decode'}) {  returns a reference to an array of hashes each containing these keys
     if ($cfg{'decode'} eq 'each') {  'suid', 'type', 'cir', 'mir' and 'mac'
       $vals = _decode_each_line(@lines);  
     } elsif ($cfg{'decode'} eq 'sulog') {  =cut
       $vals = _decode_sulog(@lines);  
     } else {  sub sudb_view
       $vals = _decode_lines(@lines);  {
     }    my $self = shift;
   }  
     my $lines = $self->cmd( String => 'sudb view', expect => $success ) || [];
   $self->last_vals($vals);  
     return unless @{ $lines };
   
   my $last = $self->lastline;    unless ($PRIVATE{'Decode'}) {
       return $lines;
   if ((not $cfg{'expect'}) || $last =~ /$cfg{'expect'}$/) {    }
     if ($cfg{'cmd_disconnects'}) {  
       $self->logged_in(0);    my @sus;
       $self->close;    foreach (@{ $lines }) {
       $self->is_connected(0);      next unless $_;
     }      if (/^\[(\d+)\]\s+(\d+)\s+(\d+)\s+(\d+)\s+([0-9A-Fa-f\s]+)$/) {
         my %s = (
     if ($cfg{'decode'}) {          suid => $1,
       return $vals;          type => $2,
     } else {          cir  => $3,
       return @lines;          mir  => $4,
     }          mac  => $5,
   } else {        );
     #$! = "Error with command ($cfg{'string'}): $last";  
     return undef;            $s{'mac'} =~ s/\s//g;
   }            $s{'mac'} = uc($s{'mac'});
 }  
         push @sus, \%s;
 #=item _decode_lines      }
     }
 sub _decode_lines  
 {    return \@sus;
   my @lines = @_;  }
   
   my %conf;  =pod
   
   my $key = '';  =item B<sudb_add>
   my $val = '';  
   my $in_key = 0;  Takes the following paramaters
   my $in_val = 0;  
           suid : numeric,
   foreach my $line (@lines) {          type : (reg|pr)
     next if $line =~ /$success$/;          cir  : numeric,
           mir  : numeric,
     my @chars = split //, $line;          mac  : Almost any format, it will be reformatted,
   
     my $last_key = '';  and returns true on success or undef otherwise.
     foreach my $c (@chars) {  
     $t->sudb_add($suid, 'reg', $cir, $mir, $mac);
       if ($c eq '[' || $c eq "\r" || $c eq "\n") {  
         if ($c eq '[') {  You should save_sudb() after calling this, or your changes  will be lost
           $in_key = 1;  when the AP is rebooted.
           $in_val = 0;  
         } else {  =cut
           $in_key = 0;  
           $in_val = 0;  sub sudb_add
         }  {
           my $self = shift;
         if ($key) {          my $suid = shift;
           $key =~ s/^\s+//;          my $type = shift;
           $key =~ s/\s+$//;          my $cir  = shift;
           my $mir  = shift;
           $val =~ s/^\s+//;          my $mac  = shift;
           $val =~ s/\s+$//;  
           if ($suid =~ /\D/) {
           if ($key eq 'Checksum' && $last_key) {                  $self->last_error("Invalid suid '$suid'");
             # Special case for these bastids.                  return;
             my $new = $last_key;          }
             $new =~ s/\s+\S+$//;  
             $key = $new . " " . $key;          unless (lc($type) eq 'reg' || lc($type) eq 'pr') {
           }                  $self->last_error("Invalid type '$type'");
                   return;
           $last_key = $key;          }
           $conf{$key} = $val;  
           $key = '';          if ($cir =~ /\D/) {
           $val = '';                  $self->last_error("Invalid CIR '$cir'");
         }                  return;
           }
       } elsif ($c eq ']') {  
         $in_val = 1;          if ($mir =~ /\D/) {
         $in_key = 0;                  $self->last_error("Invalid MIR '$mir'");
         $c = shift @chars;                  return;
           }
       } elsif ($in_key) {  
         $key .= $c;          my $new_mac = $mac;
           $new_mac =~ s/[^0-9A-Fa-f]//;
       } elsif ($in_val) {          unless (length $new_mac == 12) {
         $val .= $c;                  $self->last_error("Invalid MAC '$mac'");
       }                  return;
     }          }
   }          $new_mac = join ' ', $new_mac =~ /../g;
   
   if (%conf) {          my $string = 'sudb add ' .
     return \%conf;                  $suid . ' ' .
   } else {                  $type . ' ' .
     return undef;                  $cir  . ' ' .
   }                  $mir  . ' ' .
 }                  $new_mac;
   
 #=item _decode_each_line  
           return $self->cmd( String => $string, expect => $success );
 sub _decode_each_line  }
 {  
   my @lines = @_;  =pod
   my @decoded;  
   foreach my $line (@lines) {  =item B<sudb_delete>
     my $decoded = _decode_lines($line);  
     push @decoded, $decoded if defined $decoded;  Takes either 'all' or the  suid of the su to delete
   }  and returns true on success or undef otherwise.
   return \@decoded;  
 }    $t->sudb_delete($suid);
   
 #=item _decode_sulog  You should save_sudb() after calling this, or your changes  will be lost
   when the AP is rebooted.
 sub _decode_sulog  
 {  =cut
   my @lines = @_;  
   my @decoded;  sub sudb_delete
   my $last_tm;  {
   foreach my $line (@lines) {          my $self = shift;
     my $decoded = _decode_lines($line);          my $suid = shift;
   
     if (defined $decoded) {          #if (lc($suid) ne 'all' || $suid =~ /\D/) {
       if ($decoded->{'tm'}) {          if ($suid =~ /\D/) {
         $last_tm = $decoded->{'tm'};                  $self->last_error("Invalid suid '$suid'");
         next;                  return;
       } else {          }
         $decoded->{'tm'} = $last_tm;  
       }          return $self->cmd( String => 'sudb delete ' . $suid, expect => $success );
       next unless $last_tm;  }
   
       push @decoded, $decoded if defined $decoded;  =pod
     }  
   }  =item B<sudb_modify>
   return \@decoded;  
 }  Takes either the  suid of the su to change
   as well as what you are changing, either "cir, mir or su2su"
 1;  and returns true on success or undef otherwise.
 __END__  
   cir and mir also take a value to set the cir/mir to.
 =back  
   su2su takes a group id parameter that is in hex.
 =head1 SEE ALSO  
     $t->sudb_modify($suid, 'cir', 512);
 Trango Documentation - http://www.trangobroadband.com/support/product_docs.htm  
   You should save_sudb() after calling this, or your changes  will be lost
 L<Net::Telnet>  when the AP is rebooted.
   
 =head1 TODO  =cut
   
 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.  sub sudb_modify
   {
 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.          my $self  = shift;
           my $suid  = shift;
 =head1 AUTHOR          my $opt   = shift;
           my $value = shift;
 Andrew Fresh E<lt>andrew@rraz.netE<gt>  
           if ($suid =~ /\D/) {
 =head1 COPYRIGHT AND LICENSE                  $self->last_error("Invalid suid '$suid'");
                   return;
 Copyright (C) 2005 by Andrew Fresh          }
   
 This library is free software; you can redistribute it and/or modify          if (lc($opt) eq 'cir' or lc($opt) eq 'mir') {
 it under the same terms as Perl itself, either Perl version 5.8.7 or,                  if ($value =~ /\D/) {
 at your option, any later version of Perl 5 you may have available.                          $self->last_error("Invalid $opt '$value'");
                           return;
                   }
 =cut          } elsif (lc($opt) eq 'su2su') {
                   if ($value =~ /[^0-9A-Za-f]/) {
                           $self->last_error("Invalid MAC '$value'");
                           return;
                   }
           } else {
                   $self->last_error("Invalid option '$opt'");
                   return;
           }
   
           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;
     }
   }
   
   =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;
     }
   }
   
   =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;
     }
   
     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'} .= ' ' . $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;
     }
   }
   
   #=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;
           }
   }
   
   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.5  
changed lines
  Added in v.1.29

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