IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Entrée/Sortie Java Discussion :

SSH connexion, carriage return en trop, caractères parasites dans mes logs..


Sujet :

Entrée/Sortie Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Inscrit en
    Janvier 2007
    Messages
    94
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 94
    Par défaut SSH connexion, carriage return en trop, caractères parasites dans mes logs..
    Bonjour,

    je developpe une application qui permet l'execution d'instructions (Command, Scripts, Requete SNMP, FTP) sur des serveurs distants et via différents modes de connexion (Telnet, SSH, Atdt, FTP, SNMP). J'ai en entrée des fichiers de commande XML qui contiennent les instructions à exécuter.

    J'utilise les APIs suivantes pour les connexions:
    ch.ethz.ssh2 pour SSH
    org.apache.commons.net.telnet pour Telnet

    Mon problème concerne la connexion SSH où j'ai 2 retours charriots qui sont envoyés au lieu d'un seul... cela crée des décalages dans mes logs de résultats !!
    voila ma classe qui gère la connexion SSH :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    package snec.models.audit.auditModel.client.connectionClient;
     
    import...
     
    /**
     * Class which allow the software to connect to a telnet server and execute instructions on it.
     */
    public class AuditSSHClient implements AuditClient {
     
        /*----------------------------------------------------------------
         * 			Attributes
        ------------------------------------------------------------------*/
        /**
         * The Hop list associated with the equipment.
         */
        private ArrayList<ConnectInfo> hop;
        /**
         * Indicate if the client is connected to the remote server.
         */
        private boolean isConnected;
        /**
         * Indicate if the client is logged to the remote server.
         */
        private boolean isLogged;
        /**
         * The current hop used by the ConnecInfo.
         */
        private int currentHop = 0;
        /**
         * SSH Session.
         */
        private Session sess;
        /**
         * String indicating if the connection failed or not.
         */
        private String failed = "";
        /**
         * The SSH connection.
         */
        private Connection conn;
        /**
         * The input stream of the ssh ConnecInfo.
         */
        private InputStream sshIn;
        /**
         * The output stream of the ssh ConnecInfo.
         */
        private OutputStream sshOut;
        /**
         * The equipment log file where are written some information.
         */
        private SnecFile loadingLog;
        /**
         * The operation log file where are written some information.
         */
        private SnecFile operationLogFile;
        /**
         * Boolean managing the end of the current command.
         */
        private boolean nextCommand;
        /**
         * The skeleton containing all the class functions that this audit client needs.
         */
        private AuditSkeleton skeleton;
        /**
         * The flow that we display in the progress panel flow text since the previous "change" calling.
         */
        private String buffer;
        /**
         * The remaining time to display in the progress panel (for the current command).
         */
        private String timeToDisplay = "";
        /**
         * The connection type ( = SSH).
         */
        private String type;
        /**
         * The object allowing graphical updates by calling the "change" method.
         */
        private AuditModel auditModel;
        /**
         * The boolean attribut refers to the good execution of a command.
         */
        private boolean commandStatus;
     
        /*-----------------------------------------------------------------
         *              Constructors
        -------------------------------------------------------------------*/
        /**
         * Construct a new AuditSSHClient using a list of hops.
         * @param listHop   The list of the hopes which will be used to connect to the final remote server.
         */
        public AuditSSHClient(Equipment equipment) {
            this.type = "SSH";
            this.hop = equipment.getHopListInfo();
            this.nextCommand = false;
            this.skeleton = new AuditSkeleton(this);
            this.auditModel = equipment.getAuditModel();
        }
     
        /**
         * Connect the software to a remote server.
         * @return      Indicate if the ConnecInfo attempt is a success.
         */
        public boolean connect() {
            //get the log files associated to the current equipment.
            this.loadingLog = AuditModel.getCurrentEquipment().getLoadingLogfile();
            this.operationLogFile = AuditModel.getCurrentEquipment().getOperationLogfile();
     
            this.timeToDisplay = "Try to connect on " + this.hop.get(0).getHostname();
            this.change();
            this.conn = new Connection(this.hop.get(0).getHostname(), this.hop.get(0).getPort());
            try {
                ConnectionInfo connectInfoTemp = this.conn.connect();
                // If connection is available
                if (connectInfoTemp != null) {
                    this.loadingLog.writeFile("[Date] : SNEC is connected to the remote server (" + this.hop.get(0).getHostname() + ") by SSH");
                    this.isConnected = true;
                }
            } catch (IOException E02) {
                this.loadingLog.writeFile("[Date] : SNEC can't connect the remote server (" + this.hop.get(0).getHostname() + ") by SSH ! ( " + E02.getMessage() + " )");
                this.isConnected = false;
                return false;
            }
     
            this.currentHop = 0;
     
            while (this.currentHop < this.hop.size() && this.isConnected) {
                this.isConnected = this.logon();
                this.currentHop++;
            }
            this.currentHop--;
            return this.isConnected;
        }
     
        /**
         * Disconnect from the remote server.
         **/
        public void disconnect() {
            if (this.isConnected) {
                try {
                    this.sess.close();
                    this.conn.close();
                    this.loadingLog.writeFile("[Date] : SNEC is disconnected from the remote server");
                } catch (Exception ECT03) {
                    this.loadingLog.writeFile("[Date] : [ECT03] Can't close the " + this.type + " connection ! ( " + ECT03.getMessage() + " )");
                }
            }
        }
     
        /**
         * Connect the the software to a ssh hop
         * @param   hop                 The ConnecInfo hop
         * @param   number              The number of the hop
         * @return                      the result of the ConnecInfo
         */
        public boolean ConnectHop(ConnectInfo hop, int number) {
            return this.skeleton.ConnectHop(hop, number);
        }
     
        /**
         * Log the software on the remote server.
         * @return      Indicate if the login attempt was a success.
         */
        private boolean logon() {
            if (this.currentHop == 0 && this.conn.isAuthenticationComplete() == false) {
                try {
                    this.isLogged = this.conn.authenticateWithPassword(this.hop.get(this.currentHop).getLogin(), this.hop.get(this.currentHop).getPassword());
                    if (this.isLogged) {
                        this.sess = this.conn.openSession();
                        this.sess.requestDumbPTY();
                        this.sess.startShell();
                        this.sshOut = this.sess.getStdin();
                        this.sshIn = this.sess.getStdout();
                        this.loadingLog.writeFile("[Date] : The LoginPrompt <" + this.hop.get(0).getLoginPrompt() + "> was found");
                        this.loadingLog.writeFile("[Date] : The PasswordPrompt <" + this.hop.get(0).getPasswordPrompt() + "> was found");
                        this.waitFor(this.hop.get(0).getPrompt(), 10);
     
                        if (this.commandStatus == false) {
                            this.loadingLog.writeFile("[Date] : The Prompt is wrong ! <" + this.hop.get(0).getPrompt() + "> expected, <" + this.failed + "> found");
                            this.loadingLog.writeFile("[Date] : SNEC can't log to the remote server !");
                            return false;
                        } else {
                            this.loadingLog.writeFile("[Date] : SNEC is logged to the remote server with the " + this.hop.get(0).getLogin() + " account");
                            return true;
                        }
                    } else {
                        this.loadingLog.writeFile("[Date] : Wrong parameter(s) ! ");
                        this.loadingLog.writeFile("[Date] :    - Prompt : <" + this.hop.get(0).getPrompt() + "> expected");
                        this.loadingLog.writeFile("[Date] :    - Login prompt : " + this.hop.get(0).getLoginPrompt() + " found");
                        this.loadingLog.writeFile("[Date] :    - Password prompt : " + this.hop.get(0).getPasswordPrompt() + " found");
                        this.loadingLog.writeFile("[Date] : SNEC can't log on the remote server with the " + this.hop.get(0).getLogin() + " account !");
                        return false;
                    }
                } catch (IOException E) {
                    this.loadingLog.writeFile("[Date] : SNEC can't log on the remote server with the " + this.hop.get(0).getLogin() + " account ! ( " + E.getMessage() + " )");
                    E.printStackTrace();
                    return false;
                }
            } else {
                int hopNumberToDisplay = this.currentHop + 1;
                this.loadingLog.writeFile("[Date] : SNEC try to connect to the hop number " + hopNumberToDisplay + " (" + this.hop.get(this.currentHop).getHostname() + ") by " + this.hop.get(this.currentHop).getProtocol());
                return this.ConnectHop(this.hop.get(this.currentHop), this.currentHop);
            }
        }
     
        /**
         * Send a new integer on the remote server, to skip the executing command
         * @param   value The integer which will be send to the remote server.
         */
        public void write(int value) {
            try {
                this.sshOut.write(value);
            } catch (Exception ECT04) {
                this.operationLogFile.writeFile("[Date] : [ECT04] Can't write on the remote server ! " + ECT04.getMessage());
            }
        }
     
        /**
         * Wait for the delay 'duree' and read all InputStream data during this period.
         * @param duree         The time limit of the operation.
         * @return              All the data which were read until the time limit.
         */
        public String wait(int duree) {
            //The String Buffer which will contains the response of the server
            StringBuffer in = new StringBuffer();
            //The string containing the remote response of this command
            String response = "";
            //Get the input stream of the telnet connection
            InputStream sshInput = this.sess.getStdout();
     
            // Gets the present time
            Calendar endTime = Calendar.getInstance();
            endTime.add(Calendar.SECOND, duree);
     
            while (Calendar.getInstance().before(endTime)) {
                try {
                    while (sshInput.available() != 0 && Calendar.getInstance().before(endTime)) {
                        //if there are bytes that can be read
                        in.append((char) sshInput.read());
                    }
                    //Get the present response
                    this.buffer = in.toString();
                    //Delete the previous response stocks in the string buffer "in"
                    in.delete(0, in.length());
                    //Store up the previous remote responses
                    response += this.buffer;
     
                    Calendar currentTime = Calendar.getInstance();
                    this.timeToDisplay = String.valueOf((endTime.getTimeInMillis() - currentTime.getTimeInMillis()) / 1000);
     
                    if (this.buffer.contains("\n")) {
                        this.change();
                    }
                    //check if user wants to stop this command.
                    if (this.nextCommand) {
                        this.nextCommand = false;
                        this.commandStatus = false;
                        return response;
                    }
     
                } catch (IOException E) {
                    //if istream.available() create an error
                    this.operationLogFile.writeFile("[Date] : [ERROR] The SSH flow was interrupted by the system ( " + E.getMessage() + " )");
                }
            }
            this.commandStatus = true;
            return response;
        }
     
        /**
         * Receive the data coming from the remote server in a passive mode until a specific pattern is recognized.
         * @param   Pattern         The pattern which need to be recognized.
         * @param   timeout         The time limit of the operation
         * @return                  All the data which were read until the recognition of the pattern.
         */
        public String waitFor(String Pattern, int timeout) {
            //The String Buffer which will contains the response of the server
            StringBuffer in = new StringBuffer();
            //The string containing the remote response of this command
            String response = "";
            //Get the input stream of the SSH connection
            InputStream sshInput = this.sess.getStdout();
     
            //The objects that will identify the pattern
            Pattern Identifier2;
            Matcher Match2;
     
            Pattern = Pattern.replace("\\", "\\\\");
            Pattern = Pattern.replace("[", "\\[");
            Pattern = Pattern.replace("]", "\\]");
            Pattern = Pattern.replace("^", "\\^");
            Pattern = Pattern.replace("(", "\\(");
            Pattern = Pattern.replace(")", "\\)");
            Pattern = Pattern.replace("&", "\\&)");
            Pattern = Pattern.replace(".", "\\.");
            Pattern = Pattern.replace("*", "(.)*");
            Pattern = Pattern.replace("{", "\\{");
            Pattern = Pattern.replace("}", "\\}");
            Pattern = Pattern.replace("?", ".");
     
            int i = 0;
            int j = 0;
            for (i = 0; i < Pattern.length(); i++) {
                if (Pattern.charAt(i) != '.') {
                    break;
                }
                j++;
            }
            if (i != 0) {
                Pattern = Pattern.substring(i);
            }
     
            //Creation of the regex compiler
            Identifier2 = java.util.regex.Pattern.compile(Pattern.toLowerCase());
            //Indicate if the pattern was found
            boolean pattFound = false;
            // Timeout is set
            // Gets the present time
            Calendar endTime = Calendar.getInstance();
            Calendar currentTime = Calendar.getInstance();
            // Variables used to display correctly the timeout remaining
            long timeoutRemaining;
            // Adds the timeout at the present time
            endTime.add(Calendar.SECOND, timeout);
            //launch a unending loop 
            while (true) {
                try {
                    while (Calendar.getInstance().before(endTime) && sshInput.available() == 0) {
                        try {
                            if (this.nextCommand) {
                                this.setNextCommand(false);
                                this.commandStatus = false;
                                return response;
                            }
                            Thread.sleep(250);
                            currentTime = Calendar.getInstance();
                            timeoutRemaining = (endTime.getTimeInMillis() - currentTime.getTimeInMillis()) / 1000;
                            String time = this.timeToDisplay;
                            this.timeToDisplay = String.valueOf(timeoutRemaining);
                            if (!time.equalsIgnoreCase(this.timeToDisplay)) {
                                //Update the time expiration.
                                this.change();
                            }
     
                        } catch (InterruptedException E2) {
                            this.operationLogFile.writeFile("[Date] : [ERROR] The thread was interrupted by the system (" + E2.getMessage() + ")");
                            E2.printStackTrace();
                        }
                    }
                } catch (IOException E3) {
                    this.operationLogFile.writeFile("[Date] : [ERROR] The SSH flow was interrupted by the system ( " + E3.getMessage() + " )");
                    E3.printStackTrace();
                }
                if (!Calendar.getInstance().before(endTime)) {
                    this.operationLogFile.writeFile("[Date] : Timeout expired !");
                    Pattern spl = java.util.regex.Pattern.compile("\r\n|\n|\r|\u0085|\u2028|\u2029");
                    String[] lines = spl.split(response);
                    Matcher m = Identifier2.matcher(lines[lines.length - 1].toLowerCase());
                    if (!m.find()) {
                        if (lines[lines.length - 1].toLowerCase().contains("more") || lines[lines.length - 1].toLowerCase().contains("press any")) {
                            PrintStream out = new PrintStream(this.sshOut);
                            out.print(" ");
                            out.flush();
                            // Gets the present time
                            endTime = Calendar.getInstance();
                            // Adds the timeout at the present time
                            endTime.add(Calendar.SECOND, timeout);
                        } // Case Omni6800
                        else if (lines[lines.length - 1].toLowerCase().contains("next line <cr>")) {
                            PrintStream out = new PrintStream(this.sshOut);
                            out.print(" ");
                            out.flush();
                            endTime = Calendar.getInstance();
                            // Adds the timeout at the present time
                            endTime.add(Calendar.SECOND, timeout);
                        } else {
                            this.failed = response;
                            this.operationLogFile.writeFile("[Date] : [ERROR] The prompt \"" + Identifier2.toString() + "\" was not found before timeout expiration. Check your command timeout !");
                            this.commandStatus = false;
                            return response;
                        }
                    } else {
                        this.operationLogFile.writeFile("[Date] : [ERROR] The prompt timeout \"" + Identifier2.toString() + "\" is too short !");
                        this.commandStatus = false;
                        return response;
                    }
                }
     
                try {
                    //Checks if any characters are waited over the session
                    while (sshInput.available() != 0 && in.length() < 10000) {
                        in.append((char) sshInput.read());
                    }
                    //Get the present response
                    this.buffer = in.toString();
                    //Delete the previous response stocks in the string buffer "in"
                    in.delete(0, in.length());
                    //Store up the previous remote responses
                    response += this.buffer;
                    //Update the flow text(s)
                    if (this.buffer.contains("\n")) {
                        this.change();
                    }
                    //allow user to stop this command.
                    if (this.nextCommand) {
                        this.setNextCommand(false);
                        this.commandStatus = false;
                        return response;
                    }
                    endTime = Calendar.getInstance();
                    endTime.add(Calendar.SECOND, timeout);
     
                } catch (IOException E) {
                    this.operationLogFile.writeFile("[Date] : [ERROR] Can't check the flow over the session ! (" + E.getMessage() + ")");
                }
     
                Pattern spl = java.util.regex.Pattern.compile("\r\n|\n|\r|\u0085|\u2028|\u2029");
                String[] lines = spl.split(response);
                if (lines.length >= 1) {
                    // Checks if a "more" has been find in input stream
                    if (lines[lines.length - 1].toLowerCase().contains("more") || lines[lines.length - 1].toLowerCase().contains("press any")) {
                        PrintStream out = new PrintStream(this.sshOut);
                        out.print(" ");
                        out.flush();
                    } // Case Omni6800
                    else if (lines[lines.length - 1].toLowerCase().contains("next line <cr>")) {
                        PrintStream out = new PrintStream(this.sshOut);
                        out.print(" ");
                        out.flush();
                    } else {
                        Match2 = Identifier2.matcher(lines[lines.length - 1].toLowerCase());
                        pattFound = Match2.find();
     
                        if (pattFound) {
                            String Ret = response.replace(this.hop.get(this.currentHop).getPrompt(), "");
                            this.commandStatus = true;
                            return Ret;
                        }
                    }
                }
            }
        }
     
        /**
         * Send a new instruction to the remote server.
         * @param   cmd             The instruction to send to the remote server.
         * @param   timeout                                 The time limit for the operation.
         * @return                                                          The result of the operation.
         */
        public String send(String cmd, int timeout) {
            if (this.checkAccess()) {
                PrintStream out = new PrintStream(this.sshOut);
                out.println(cmd);
                // Case of long command, Method Sleep to avoid Watifor Error
                int milliSec = 100;
                if (cmd.length() > 7) {
                    if (cmd.length() > 100) {
                        milliSec = 2000;
                    } else if (cmd.length() > 80) {
                        milliSec = 500;
                    } else if (cmd.length() > 30) {
                        milliSec = 250;
                    }
                    try {
                        Thread.sleep(milliSec);
                    } catch (InterruptedException ex) {
     
                        ex.printStackTrace();
                    }
                }
     
                if (this.hop.get(this.currentHop).getPrompt() != null) {
                    String Ret = this.waitFor(this.hop.get(this.currentHop).getPrompt(), timeout);
     
                    if (this.commandStatus == false) {
                        //stop the current command which timeout expired or been skipped.
                        this.stopCommand(this.hop.get(this.currentHop).getPrompt());
                    }
                    return Ret;
     
                } else {
                    return null;
                }
     
            } else {
                return "";
            }
        }
     
        /**
         * Send a new instruction to the remote server.
         * @param   cmd                             The instruction to send to the remote server.
         * @param   timeout         The time limit for the operation.
         * @param Prompt    The correct prompt
         * @return                                  The result of the operation.
         */
        public String send(String cmd, int time, String Prompt) {
            if (this.checkAccess()) {
                PrintStream out = new PrintStream(this.sshOut);
                out.println(cmd);
                // Case of long command, Method Sleep to avoid Watifor Error
                if (cmd.length() > 7) {
                    int milliSec = 100;
                    if (cmd.length() > 100) {
                        milliSec = 2000;
                    } else if (cmd.length() > 80) {
                        milliSec = 500;
                    } else if (cmd.length() > 30) {
                        milliSec = 250;
                    }
                    try {
                        Thread.sleep(milliSec);
                    } catch (InterruptedException ex) {
                        ex.printStackTrace();
                    }
                }
                if (Prompt != null) {
                    String result = this.waitFor(Prompt, time);
     
                    if (this.commandStatus == false) {
                        //stop the current command which timeout expired or been skipped
                        this.stopCommand(Prompt);
                    }
                    return result;
     
                } else {
                    //if prompt == null, launch the execution of periodic command with runtime attribut.
                    String result = "";
                    result = this.wait(time);
                    //periodic command has to be stopped after the runtime period.
                    this.stopCommand(this.hop.get(this.currentHop).getPrompt());
                    return result;
                }
     
            } else {
                return null;
            }
        }
     
        /**
         * This class function stop the current command by sending a CTRL+C
         * and taking off the generated prompt (in order to execute the following command)
         * 
         * @param prompt        The expected prompt
         * @return              The flow text extracted by waitFor()
         */
        public void stopCommand(String prompt) {
            this.write(0x03); // = send(CTRL+C)
            this.write(0x0D); // = send (ENTER)
     
            //Wait 200 milliseconds so that the remote server replies to those actions.
            try {
                Thread.sleep(200);
            } catch (InterruptedException ex) {
                Logger.getLogger(AuditTelnetClient.class.getName()).log(Level.SEVERE, null, ex);
            }
     
            //read the stream in order to replace the flow timekeeper at the beginning of the next command.
            InputStream sshInput = this.sess.getStdout();
            StringBuffer in = new StringBuffer();
            try {
                while (sshInput.available() != 0) {
                    in.append((char) sshInput.read());
                }
            } catch (IOException ex) {
                System.out.println(ex.getMessage());
            }
     
        }
     
        /**
         * Check if the ConnecInfo with the remote server works.
         * @return          The status of the ConnecInfo.
         */
        public boolean checkAccess() {
            return this.isConnected;
        }
     
        /**
         * Update all controllers that observe auditModel.
         */
        private void change() {
            try {
     
                SwingUtilities.invokeAndWait(new Runnable() {
     
                    public void run() {
                        auditModel.change();
                    }
                });
            } catch (InterruptedException ex) {
                Logger.getLogger(AuditTelnetClient.class.getName()).log(Level.SEVERE, null, ex);
            } catch (InvocationTargetException ex) {
                Logger.getLogger(AuditTelnetClient.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
     
        /*----------------------------------------------------------------
         * 			Getter and Setter
        ------------------------------------------------------------------*/
        /**
         * Getter of the property <tt>hope</tt>
         * @return  Returns the hope.
         */
        public ArrayList<ConnectInfo> getHop() {
            return hop;
        }
     
        /**
         * Setter of the property <tt>hope</tt>
         * @param hop  the hope to set.
         */
        public void setHop(ArrayList<ConnectInfo> hop) {
            this.hop = hop;
        }
     
        /**
         * Set the attribut nextCommand
         * @param b : boolean
         */
        public void setNextCommand(boolean b) {
            this.nextCommand = b;
        }
     
        /**
         * Getter of the property <tt>failed</tt>
         * @return failed : String indicating if the connection failed or not.
         */
        public String getFailed() {
            return this.failed;
        }
     
        /**
         * Getter of the property <tt>operationLogfile</tt>
         * @return operationLogfile : the operation log object.
         */
        public SnecFile getLoadingLog() {
            return this.loadingLog;
        }
     
        public String getBuffer() {
            return this.buffer;
        }
     
        public String getTimeToDisplay() {
            return this.timeToDisplay;
        }
     
        public String getType() {
            return this.type;
        }
     
        public boolean getCommandStatus() {
            return this.commandStatus;
        }
     
        public void setBuffer(String buffer) {
            this.buffer = buffer;
        }
     
        public void write(String value) {
            throw new UnsupportedOperationException("Not supported yet.");
        }
    }
    Par ailleurs, dans mes fichiers résultats j'ai des caractères qui semblent ne pas être reconnus et je n'arrive pas à trouver le problème. Dans tous mes logs de résultats des commandes exécutées, la première ligne correspond à la commande que j'envoie sur le serveur distant et j'ai souvent dans cette ligne, des caracètres bizars...
    J'identifie surtout le problème lorsque j'envoie des commandes awk sur le serveur :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
     
    awk '{print "\nHost "$1;system("rsh "$1" \042. ~/.profile 1>/d
    ors110 linus> "rsh "$1" \042. ~/.profile 1>/de                               <v/null 2>&1;  chmod 755 alert _
    ors110 linus> ev/null 2>&1;  chmod 755 alert _l                              ogs.sh;./alert _logs.sh > tail _
    ors110 linus> logs.sh;./alert _logs.sh > tail _a                              lert _logs.sh;chmod 755 tail _al
    ors110 linus> alert _logs.sh;chmod 755 tail _ale                              rt _logs.sh;./tail _alert _logs.s
    ors110 linus> ert _logs.sh;./tail _alert _logs.sh                              ;rm tail _alert _logs.sh;rm aler
    ors110 linus> h;rm tail _alert _logs.sh;rm alert                               _logs.sh; \042")}'  ~linus/hos
    ors110 linus> t _logs.sh; \042")}'  ~linus/host                              name.lst
     
    Host orl110
    TAIL FILE /in/oracle/rdbms/log/alert_S15G00.log
     
    Host ors210
    TAIL FILE /in/oracle/rdbms/log/alert_SMP.log
    ors110 linus>
    ors110 linus>
    Je ne vois pas pourquoi il y a des caracètres qui poluent mon log et d'autres part, mon prompt "ors110 linus>" s'introduit dans la commande alors que dans mon XML de commande j'ai ceci :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
    <?xml version="1.0" encoding="UTF8"?>
    <!DOCTYPE EQUIPMENT SYSTEM "./lib/equipment.dtd">
     
    <EQUIPMENT>
    	<COMMAND label="awk '{print &quot;\nHost &quot;$1;system(&quot;rsh &quot;$1&quot; \042. ~/.profile 1>/dev/null 2>&amp;1;  chmod 755 alert_logs.sh;./alert_logs.sh > tail_alert_logs.sh;chmod 755 tail_alert_logs.sh;./tail_alert_logs.sh;rm tail_alert_logs.sh;rm alert_logs.sh; \042&quot;)}'  ~linus/hostname.lst" logfile="tail_alert_logs" timeout="20" expect="linus>"></COMMAND>
    </EQUIPMENT>
    Est-ce que quelqu'un a une idée ?
    Merci d'avance,

    Bap

  2. #2
    Membre confirmé
    Inscrit en
    Janvier 2007
    Messages
    94
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 94
    Par défaut
    Bonsoir le forum,

    Lorsque j'exécute des commandes à travers le protocol SSH protocol, j'ai des caractères poluants dans mon buffer de sortie :

    Voici ma méthode pour exécuter des commandes à distance:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
     
    /**
         * Send a new instruction to the remote server.
         * @param   cmd             The instruction to send to the remote server.
         * @param   timeout         The time limit for the operation.
         * @return                  The result of the operation.
         */
        public String executeCommand(String cmd, int time, String expectedPrompt, boolean periodicCmd) {
            String commandResult;
            if (this.checkAccess()) {
                PrintStream out = new PrintStream(this.sshOut);
                out.println(cmd);
                out.flush();
     
                if (periodicCmd) {
                    commandResult = this.waitForEndOfRuntime(time);
                    //periodic command has to be stopped after the runtime period.
                    this.stopCommand(this.hop.get(this.currentHop).getPrompt());
                } else {
                    if (expectedPrompt == null) {
                        commandResult = this.waitForPrompt(this.hop.get(this.currentHop).getPrompt(), time);
                    } else {
                        commandResult = this.waitForPrompt(expectedPrompt, time);
                    }
                    if (this.commandStatus == false) {
                        //stop the current command which timeout expired or been skipped.
                        this.stopCommand(this.hop.get(this.currentHop).getPrompt());
                    }
                }
            } else {
                this.commandStatus = false;
                commandResult = "[ERROR] Equipment not available!";
            }
            return commandResult;
        }
    Je me synchronise sur les prompts renvoyés par la machine distante et j'attend donc que le prompt soit renvoyé, (Que la main soit rendu sur le serveur) avec la méthode waitForEquipmentprompt:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
     
        /**
         * Receive the data coming from the remote server in a passive mode until a specific pattern is recognized.
         * @param   EquipmentPrompt The pattern which need to be recognized.
         * @param   timeout         The time limit of the operation
         * @return                  All the data which were read until the recognition of the pattern.
         */
        public String waitForPrompt(String EquipmentPrompt, int timeout) {
            //The String Buffer which will contains the response of the server
            StringBuffer in = new StringBuffer();
            //The string containing the remote response of this command
            String response = "";
            //Get the input stream of the SSH connection
            //InputStream sshInput = this.sess.getStdout();
     
            //InputStream sshInput = new StreamGobbler(this.sess.getStdout());
            //BufferedReader br = new BufferedReader(new InputStreamReader(sshIn));
     
            //The objects that will identify the pattern
            Pattern IdentifierEquipementPrompt;
            Matcher Match2;
     
            EquipmentPrompt = EquipmentPrompt.replace("\\", "\\\\");
            EquipmentPrompt = EquipmentPrompt.replace("[", "\\[");
            EquipmentPrompt = EquipmentPrompt.replace("]", "\\]");
            EquipmentPrompt = EquipmentPrompt.replace("^", "\\^");
            EquipmentPrompt = EquipmentPrompt.replace("(", "\\(");
            EquipmentPrompt = EquipmentPrompt.replace(")", "\\)");
            EquipmentPrompt = EquipmentPrompt.replace("&", "\\&)");
            EquipmentPrompt = EquipmentPrompt.replace(".", "\\.");
            EquipmentPrompt = EquipmentPrompt.replace("*", "(.)*");
            EquipmentPrompt = EquipmentPrompt.replace("{", "\\{");
            EquipmentPrompt = EquipmentPrompt.replace("}", "\\}");
            EquipmentPrompt = EquipmentPrompt.replace("?", ".");
     
            int i = 0;
            for (i = 0; i < EquipmentPrompt.length(); i++) {
                if (EquipmentPrompt.charAt(i) != '.') {
                    break;
                }
            }
            if (i != 0) {
                EquipmentPrompt = EquipmentPrompt.substring(i);
            }
     
            //Creation of the regex compiler
            IdentifierEquipementPrompt = java.util.regex.Pattern.compile(EquipmentPrompt.toLowerCase());
            // Timeout is set : get the present time
            Calendar endTime = Calendar.getInstance();
            Calendar currentTime = Calendar.getInstance();
            // Variables used to display correctly the timeout remaining
            long timeoutRemaining;
            // Adds the timeout at the present time
            endTime.add(Calendar.SECOND, timeout);
            //launch a unending loop
            while (true) {
                try {
                    while (Calendar.getInstance().before(endTime) && this.sshIn.available() == 0) {
                        try {
                            if (this.nextCommand) {
                                this.setNextCommand(false);
                                this.commandStatus = false;
                                return response;
                            }
                            Thread.sleep(250);
                            currentTime = Calendar.getInstance();
                            timeoutRemaining = (endTime.getTimeInMillis() - currentTime.getTimeInMillis()) / 1000;
                            String time = this.timeToDisplay;
                            this.timeToDisplay = String.valueOf(timeoutRemaining);
                            if (!time.equalsIgnoreCase(this.timeToDisplay)) {
                                //Update the time expiration.
                                this.change();
                            }
                        } catch (InterruptedException E2) {
                            E2.printStackTrace();
                            this.operationLogFile.writeFile("[Date] : [ERROR] The thread was interrupted by the system (" + E2.getMessage() + ")");
                        }
                    }
                } catch (IOException E3) {
                    E3.printStackTrace();
                    this.operationLogFile.writeFile("[Date] : [ERROR] The SSH flow was interrupted by the system ( " + E3.getMessage() + " )");
                }
                if (!Calendar.getInstance().before(endTime)) {
                    this.operationLogFile.writeFile("[Date] : Timeout expired !");
                    Pattern spl = java.util.regex.Pattern.compile("\r\n|\n|\r|\u0085|\u2028|\u2029|\u001b");
                    String[] lines = spl.split(response);
                    Matcher m = IdentifierEquipementPrompt.matcher(lines[lines.length - 1].toLowerCase());
                    if (!m.find()) {
                        if (lines[lines.length - 1].toLowerCase().contains("more") || lines[lines.length - 1].toLowerCase().contains("press any")) {
                            PrintStream out = new PrintStream(this.sshOut);
                            out.print(" ");
                            out.flush();
                            // Gets the present time
                            endTime = Calendar.getInstance();
                            // Adds the timeout at the present time
                            endTime.add(Calendar.SECOND, timeout);
                        } // Case Omni6800
                        else if (lines[lines.length - 1].toLowerCase().contains("next line <cr>")) {
                            PrintStream out = new PrintStream(this.sshOut);
                            out.print(" ");
                            out.flush();
                            endTime = Calendar.getInstance();
                            // Adds the timeout at the present time
                            endTime.add(Calendar.SECOND, timeout);
                        } else {
                            this.failed = response;
                            this.operationLogFile.writeFile("[Date] : [ERROR] The prompt \"" + IdentifierEquipementPrompt.toString() + "\" was not found before timeout expiration. Check your command timeout !");
                            this.commandStatus = false;
                            return response;
                        }
                    } else {
                        this.operationLogFile.writeFile("[Date] : [ERROR] The prompt timeout \"" + IdentifierEquipementPrompt.toString() + "\" is too short !");
                        this.commandStatus = false;
                        return response;
                    }
                }
     
                try {
                    //Checks if any characters are waited over the session
                    while (this.sshIn.available() != 0 && in.length() < 10000) {
                        char c = (char) this.sshIn.read();
                        in.append(c);
                        System.out.print(c);
                    }
                    //Get the present response
     
                    this.buffer = in.toString();
                    //Delete the previous response stocks in the string buffer "in"
     
                    in.delete(0, in.length());
                    //Store up the previous remote responses
                    response += this.buffer;
                    //Update the flow text(s)
                    if (this.buffer.contains("\n")) {
                        this.change();
                    }
                    //allow user to stop this command.
                    if (this.nextCommand) {
                        this.setNextCommand(false);
                        this.commandStatus = false;
                        return response;
                    }
                    endTime = Calendar.getInstance();
                    endTime.add(Calendar.SECOND, timeout);
     
                } catch (IOException E) {
                    this.operationLogFile.writeFile("[Date] : [ERROR] Can't check the flow over the session ! (" + E.getMessage() + ")");
                }
     
                Pattern spl = java.util.regex.Pattern.compile("\r\n|\n|\r|\u0085|\u2028|\u2029");
                String[] lines = spl.split(response);
                if (lines.length >= 1) {
                    // Checks if a "more" has been find in input stream
                    if (lines[lines.length - 1].toLowerCase().contains("more") || lines[lines.length - 1].toLowerCase().contains("press any")) {
                        PrintStream out = new PrintStream(this.sshOut);
                        out.print(" ");
                        out.flush();
                    } // Case Omni6800
                    else if (lines[lines.length - 1].toLowerCase().contains("next line <cr>")) {
                        PrintStream out = new PrintStream(this.sshOut);
                        out.print(" ");
                        out.flush();
                    } else {
                        Match2 = IdentifierEquipementPrompt.matcher(lines[lines.length - 1].toLowerCase());
                        if (Match2.find()) {
                            String ret = response.replace(this.hop.get(this.currentHop).getPrompt(), "");
                            this.commandStatus = true;
                            return ret;
                        }
                    }
                }
            }
        }

    And the CommandResult when I execute the command "cat /var/tmp/diagnostics-logs/$(ls -1t /var/tmp/diagnostics-logs/ | head -1)" is :

    "cat /var/tmp/diagnostics-logs/$(ls -1t /var/tmp/diagnostics-l
    <p/diagnostics-logs/$(ls -1t /var/tmp/diagnostics-lo gs/ | head -1)

    Sum-up of MGW diagnostic run at 18:38 on 11/24/2008

    --> Station MGW16_B is active : Run complete diagnostics

    --> Tomix station status summary :
    -I- All stations are ENABLE

    --> Line card status summary :
    -I- Line card A1/S3 is ENABLE
    -I- Line card A1/S4 is ENABLE
    -I- Line card A1/S5 is ENABLE
    -I- Line card A1/S6 is ENABLE
    -I- Line card A1/S11 is ENABLE
    -I- Line card A1/S12 is ENABLE
    -I- Line card A1/S14 is ENABLE

    --> 66 alarms are raised :
    -I- No modification on alarms since 11/24/2008 at 18:01

    --> All filesystem are less than 90% usage

    --> No Tomix platform restart since 11/24/2008 at 18:01
    root@MGW16_B:~#
    root@MGW16_B:~# "
    Est-ce que quelqu'un peut m'aider SVP.
    Y a-til un moyen de définir une plage de caractère que l'on souhaite recevoir de la part du serveur; par exemple [A-Z][a-z][0-9][#@%*$!?;.:,(){}[]\/|-_=+] ?

    Merci d'avance,

    Bap

  3. #3
    Membre Expert
    Homme Profil pro
    Dév. Java & C#
    Inscrit en
    Octobre 2002
    Messages
    1 414
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Dév. Java & C#
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Octobre 2002
    Messages : 1 414
    Par défaut
    Bonjour,

    Ce ne sont pas des caractères polluants mais des caractères de contrôle pour une sortie type console, xterm terminal (VT100: pou ceux de la vieille école )

     : 8 08 U+0008 BS BackSpace
     : 27 1B U+001B ESC Escape

     ESC[1;32m est une séquence de contrôle qui active la surbrillance et la couleur verte pour le texte

     ESC[1;0m séquence qui désactive la surbrillance..

    Pour ne pas avoir ces caractères soit tu parses la séquence reçues ou si c'est possible tu indiques au serveur que tu es un simple terminal ne comprenant pas les séquences de contrôle...

  4. #4
    Membre confirmé
    Inscrit en
    Janvier 2007
    Messages
    94
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 94
    Par défaut
    Bonjour jowo,

    un grand merci pour tous ces éclaircicements....
    Est-ce que je peux te demander un conseil pour régler mon problème ?

    Voila comment je me connecte + log :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
     
     /**
         * Connect to a client equipment
         * @return  Connection status
         */
        public boolean connect() {
            //Get log files associated with current equipment.
            this.loadingLog = AuditModel.getCurrentEquipment().getLoadingLogfile();
            this.operationLogFile = AuditModel.getCurrentEquipment().getOperationLogfile();
     
            //Set information about connection on graphical layout.
            this.timeToDisplay = "Try to connect on " + this.hop.get(0).getHostname();
            this.change();
     
            //Connect equipment with SSH protocol
            this.conn = new Connection(this.hop.get(0).getHostname(), this.hop.get(0).getPort());
            try {
                this.conn.connect();
                this.loadingLog.writeFile("[Date] : Connected to the remote server [" + this.hop.get(0).getHostname() + "] with SSH protocol");
                this.isConnected = true;
                this.currentHop = 0;
                //Log the user to the first hop
                while (this.currentHop < this.hop.size() && this.isConnected) {
                    this.isConnected = this.logon();
                    this.currentHop++;
                }
                this.currentHop--;
            } catch (IOException ex) {
                ex.printStackTrace();
                this.loadingLog.writeFile("[Date] : Can't connect the remote server [" + this.hop.get(0).getHostname() + "] with SSH protocol : " + ex.getMessage());
                this.isConnected = false;
            }
            return this.isConnected;
        }
     
        /**
         * Log on a client equipment
         * @return  Logging status
         */
        private boolean logon() {
            if (this.currentHop == 0 && this.conn.isAuthenticationComplete() == false) {
                try {
                    this.isLogged = this.conn.authenticateWithPassword(this.hop.get(this.currentHop).getLogin(), this.hop.get(this.currentHop).getPassword());
                    if (this.isLogged) {
                        this.sess = this.conn.openSession();
                        this.sess.requestDumbPTY();
                        this.sess.startShell();
                        this.sshOut = this.sess.getStdin();
                        this.sshIn = new StreamGobbler(this.sess.getStdout());
                        this.loadingLog.writeFile("[Date] :     The LoginPrompt <" + this.hop.get(0).getLoginPrompt() + "> was found");
                        this.loadingLog.writeFile("[Date] :     The PasswordPrompt <" + this.hop.get(0).getPasswordPrompt() + "> was found");
                        this.waitForPrompt(this.hop.get(0).getPrompt(), 10);
     
                        if (this.commandStatus == false) {
                            this.loadingLog.writeFile("[Date] :     The Prompt is wrong : <" + this.hop.get(0).getPrompt() + "> expected, <" + this.failed + "> found!");
                            this.loadingLog.writeFile("[Date] : Can't log on remote server!");
                            this.isLogged = false;
                        } else {
                            this.loadingLog.writeFile("[Date] : Logged on remote server with the " + this.hop.get(0).getLogin() + " account");
                            this.isLogged = true;
                        }
                    } else {
                        this.loadingLog.writeFile("[Date] : Wrong parameter(s) ! ");
                        this.loadingLog.writeFile("[Date] :    - Prompt : <" + this.hop.get(0).getPrompt() + "> expected");
                        this.loadingLog.writeFile("[Date] :    - Login prompt : " + this.hop.get(0).getLoginPrompt() + " found");
                        this.loadingLog.writeFile("[Date] :    - Password prompt : " + this.hop.get(0).getPasswordPrompt() + " found");
                        this.loadingLog.writeFile("[Date] : Can't log on remote server with the " + this.hop.get(0).getLogin() + " account!");
                        this.isLogged = false;
                    }
                } catch (IOException E) {
                    E.printStackTrace();
                    this.loadingLog.writeFile("[Date] : Can't log on remote server with the " + this.hop.get(0).getLogin() + " account : " + E.getMessage());
                    this.isLogged = false;
                }
            } else {
                int hopNumberToDisplay = this.currentHop + 1;
                this.loadingLog.writeFile("[Date] : Try to connect to hop number " + hopNumberToDisplay + " at [" + this.hop.get(this.currentHop).getHostname() + "] with SSH protocol");
                this.isLogged = this.ConnectHop(this.hop.get(this.currentHop), this.currentHop);
            }
            return this.isLogged;
        }
    Est-ce que je pourrai avoir des infos sur comment parser la séquence reçue et/ou comment indiquer au serveur que je suis un simple terminal?
    Merci d'avance pour ce que tu pourras me donner comme info.

    Bap

  5. #5
    Membre confirmé
    Inscrit en
    Janvier 2007
    Messages
    94
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 94
    Par défaut
    re-bonjour,

    une petite précision: Que je soit connecté en Telnet ou en SSH, mon type de terminal est "xterm".

    Merci d'avance,
    Bap

  6. #6
    Membre Expert
    Homme Profil pro
    Dév. Java & C#
    Inscrit en
    Octobre 2002
    Messages
    1 414
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Dév. Java & C#
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Octobre 2002
    Messages : 1 414
    Par défaut
    Salut Bap,

    Essaie de commenter la ligne
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    this.sess.requestDumbPTY();
    Je ne connais pas la bibliothèque ch.ethz.ssh2 et ses possibilités, donc je ne serai pas te conseiller judicieusement.

    Mais si j'étais toi, j'essaierai avec la commande ssh sans les séquences de contrôle:

  7. #7
    Membre confirmé
    Inscrit en
    Janvier 2007
    Messages
    94
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 94
    Par défaut
    Citation Envoyé par jowo Voir le message
    Salut Bap,

    Essaie de commenter la ligne
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    this.sess.requestDumbPTY();
    Je ne connais pas la bibliothèque ch.ethz.ssh2 et ses possibilités, donc je ne serai pas te conseiller judicieusement.

    Mais si j'étais toi, j'essaierai avec la commande ssh sans les séquences de contrôle:
    J'ai commenté la ligne en question mais je ne vois pas comment essayer ssh -T puisque je me connecte de cette manière :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    //Connect equipment with SSH protocol
            this.conn = new Connection(this.hop.get(0).getHostname(), this.hop.get(0).getPort());
            try {
                this.conn.connect();
     
    ...
    Peut-on changer de type de terminal et comment?
    Sinon, as-tu une idée pour parser la sortie?

    Dans le cas de ma connection Telnet j'ai le même problème de caractères 'poluants' et j'ai cette option ci dans mon code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     TerminalTypeOptionHandler ttopt = new TerminalTypeOptionHandler("xterm", false, false, false, false);
    Si le problème vient du type "xterm", que puis-je mettre à la place ?

    Merci beaucoup pour les réponses que tu pourrais m'apporter.
    Cordialement,
    Bap

  8. #8
    Membre confirmé
    Inscrit en
    Janvier 2007
    Messages
    94
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 94
    Par défaut parser une séquence reçue ?
    Re le forum,

    voila, je n'arrive pas à indiquer au serveur que je suis un simple terminal... alors j'ai dans l'idée de parser ma séquence reçue comme me l'indiquait jowo.

    Citation Envoyé par jowo Voir le message
    Pour ne pas avoir ces caractères soit tu parses la séquence reçues ou si c'est possible tu indiques au serveur que tu es un simple terminal ne comprenant pas les séquences de contrôle...

    Est-ce que je peux avoir un coup de pouce de ce côté?

    Merci d'avance,
    Bap

Discussions similaires

  1. [WD-2007] Caractère parasite dans un REFSTYLE
    Par guiguitch dans le forum Word
    Réponses: 5
    Dernier message: 06/02/2010, 00h37
  2. SSH1 avec bond TELNET : pd de carriage return en trop
    Par babap1 dans le forum Entrée/Sortie
    Réponses: 1
    Dernier message: 14/11/2007, 15h02
  3. Caractères parasites dans EXCEL
    Par fouineur030 dans le forum Excel
    Réponses: 3
    Dernier message: 21/03/2007, 13h37
  4. Réponses: 2
    Dernier message: 16/10/2005, 00h29

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo