]> git.zerfleddert.de Git - rsbs2/commitdiff
add options for resetting RSB S2 board an sending raw XML
authorMichael Gernoth <michael@gernoth.net>
Sun, 8 Feb 2009 12:03:45 +0000 (13:03 +0100)
committerMichael Gernoth <michael@gernoth.net>
Sun, 8 Feb 2009 12:03:45 +0000 (13:03 +0100)
rsbs2.pl

index 0d2a682940d6373a9649d431dc49653d7aafc928..7f5cc0f43dce141a07546bebb3e872c3b11d9fb4 100755 (executable)
--- a/rsbs2.pl
+++ b/rsbs2.pl
@@ -492,8 +492,10 @@ my $powup = 0;
 my $powdown = 0;
 my $powcyc = 0;
 my $reset = 0;
+my $resetrsbs2 = 0;
 my @sprop = ();
 my @gprop = ();
+my @xmlsend = ();
 my $show = 0;
 my $enable_debug = "";
 my $save = "";
@@ -538,6 +540,11 @@ while (defined($ARGV[0])) {
                                shift @ARGV;
                                last SWITCH;
                        };
+               /^-R$/ && do {
+                               $resetrsbs2 = 1;
+                               shift @ARGV;
+                               last SWITCH;
+                       };
                /^-l$/ && do {
                                shift @ARGV;
                                $enable_debug = shift @ARGV;
@@ -548,6 +555,11 @@ while (defined($ARGV[0])) {
                                shift @ARGV;
                                last SWITCH;
                        };
+               /^-X$/ && do {
+                               shift @ARGV;
+                               push @xmlsend, shift @ARGV;
+                               last SWITCH;
+                       };
                /^-b$/ && do {
                                $showstat = 1;
                                shift @ARGV;
@@ -587,9 +599,11 @@ if (!$valid_arg) {
        print STDERR "\t-d\t\tpowerdown\n";
        print STDERR "\t-c\t\tpowercycle\n";
        print STDERR "\t-r\t\treset\n";
+       print STDERR "\t-R\t\treset RSB S2 borad\n";
        print STDERR "\t-x\t\tshow all properties, variables and settings\n";
        print STDERR "\t-l IP\t\tsend SYSLOG debug messages to IP\n";
        print STDERR "\t-b\t\tshow board/server status\n";
+       print STDERR "\t-X\t\tsend raw XML string (start with REQ tag)\n";
        print STDERR "\t-v\t\tverbose\n";
        print STDERR "\t-save file\tsave configuration to 'file'\n";
        print STDERR "\t-load file\tload configuration from 'file'\n";
@@ -630,6 +644,12 @@ if (@sprop) {
        }
 }
 
+if (@xmlsend) {
+       foreach my $x (@xmlsend) {
+               print Dumper(_req('<?xml version="1.0"?><?RMCXML version="1.0"?><RMCSEQ>'.$x.'</RMCSEQ>'));
+       }
+}
+
 if ($save ne '') {
        my @dontsave = qw(ENABLE_LAN_AUTONEG ENABLE_LAN_100 ENABLE_LAN_FDUPLEX
        GATEWAY IP_ADDRESS NETMASK TFTP_FIRMWARE_FILE TFTP_ADDR_FIRMWARE
@@ -713,4 +733,10 @@ if ($showstat) {
        status();
 }
 
+if ($resetrsbs2) {
+       print "Resetting board...\n";
+       _cmd("boardreset");
+       exit(0);
+}
+
 logout();
Impressum, Datenschutz