Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

oneos.rb issue #3358

Open
Mallamac74 opened this issue Jan 6, 2025 · 3 comments
Open

oneos.rb issue #3358

Mallamac74 opened this issue Jan 6, 2025 · 3 comments

Comments

@Mallamac74
Copy link

Hi,
I'm experiencing some problems in retrieving the output of some simple commands from OneAccess devices.

Here is the manual ssh experience:

[rpulvirenti@centos7-roby ~]$ ssh [email protected]

###################################################################
This system is the property of XXXXXXXXX. Disconnect NOW if you
have not been expressly authorised to use this system. Unauthorised
use is a criminal offence under the Computer Misuse Act 1990.

Communications on or through XXXXXXXXX systems may be monitored
or recorded to secure effective system operation and for other
lawful purposes.
###################################################################


[email protected]'s password:

DSL098875-One540>show version
Software version    : ONEOS90-ADVIP_11N-V5.2R1E12_M1
Software created on : 24/04/18 17:00:14
DSL098875-One540>exit
Connection to 10.242.213.77 closed.

Here is the simple and adjusted oneos.rb model with the only purpose of supporting show version command.

class OneOS < Oxidized::Model
  using Refinements

  prompt />/
  comment  '! '

  cmd :all do |data|
    Oxidized.logger.debug "[DEBUG ALL DATA] => #{data.inspect}"
    data
  end

  cmd 'show version' do |cfg|
    send "show version\r"
    sleep 1
    comment cfg
  end


  cfg :telnet do
    username /^Username:/
    password /^Password:/
  end

  cfg :telnet, :ssh do
    #post_login 'term len 0'
    pre_logout 'exit'
  end

end

With this model here is the log (everything is at debug level with additional debug added in ssh.rb):

D, [2025-01-06T11:05:59.553167 #32003] DEBUG -- net.ssh.authentication.session[5c8]: beginning authentication of `admin'
D, [2025-01-06T11:05:59.553392 #32003] DEBUG -- socket[5b4]: queueing packet nr 3 type 5 len 28
D, [2025-01-06T11:05:59.553442 #32003] DEBUG -- socket[5b4]: sent 52 bytes
D, [2025-01-06T11:05:59.770080 #32003] DEBUG -- socket[5b4]: read 52 bytes
D, [2025-01-06T11:05:59.770459 #32003] DEBUG -- socket[5b4]: received packet nr 3 type 6 len 28
D, [2025-01-06T11:05:59.770623 #32003] DEBUG -- net.ssh.authentication.session[5c8]: trying none
D, [2025-01-06T11:05:59.770848 #32003] DEBUG -- socket[5b4]: queueing packet nr 4 type 50 len 44
D, [2025-01-06T11:05:59.770981 #32003] DEBUG -- socket[5b4]: sent 68 bytes
D, [2025-01-06T11:05:59.818555 #32003] DEBUG -- socket[5b4]: read 1156 bytes
D, [2025-01-06T11:05:59.818983 #32003] DEBUG -- socket[5b4]: received packet nr 4 type 53 len 28
I, [2025-01-06T11:05:59.819107 #32003]  INFO -- net.ssh.authentication.session[5c8]:

D, [2025-01-06T11:05:59.819286 #32003] DEBUG -- socket[5b4]: received packet nr 5 type 53 len 92
I, [2025-01-06T11:05:59.819401 #32003]  INFO -- net.ssh.authentication.session[5c8]: ###################################################################^M

D, [2025-01-06T11:05:59.819605 #32003] DEBUG -- socket[5b4]: received packet nr 6 type 53 len 92
I, [2025-01-06T11:05:59.819674 #32003]  INFO -- net.ssh.authentication.session[5c8]: This system is the property of XXXXXXXXX. Disconnect NOW if you^M

D, [2025-01-06T11:05:59.819816 #32003] DEBUG -- socket[5b4]: received packet nr 7 type 53 len 92
I, [2025-01-06T11:05:59.819867 #32003]  INFO -- net.ssh.authentication.session[5c8]: have not been expressly authorised to use this system. Unauthorised^M

D, [2025-01-06T11:05:59.819996 #32003] DEBUG -- socket[5b4]: received packet nr 8 type 53 len 92
I, [2025-01-06T11:05:59.820046 #32003]  INFO -- net.ssh.authentication.session[5c8]: use is a criminal offence under the Computer Misuse Act 1990.^M

D, [2025-01-06T11:05:59.820237 #32003] DEBUG -- socket[5b4]: received packet nr 9 type 53 len 28
I, [2025-01-06T11:05:59.820286 #32003]  INFO -- net.ssh.authentication.session[5c8]: ^M

D, [2025-01-06T11:05:59.820415 #32003] DEBUG -- socket[5b4]: received packet nr 10 type 53 len 92
I, [2025-01-06T11:05:59.820462 #32003]  INFO -- net.ssh.authentication.session[5c8]: Communications on or through XXXXXXXXX systems may be monitored^M

D, [2025-01-06T11:05:59.820560 #32003] DEBUG -- socket[5b4]: received packet nr 11 type 53 len 92
I, [2025-01-06T11:05:59.820598 #32003]  INFO -- net.ssh.authentication.session[5c8]: or recorded to secure effective system operation and for other^M

D, [2025-01-06T11:05:59.820692 #32003] DEBUG -- socket[5b4]: received packet nr 12 type 53 len 44
I, [2025-01-06T11:05:59.820730 #32003]  INFO -- net.ssh.authentication.session[5c8]: lawful purposes.^M

D, [2025-01-06T11:05:59.820834 #32003] DEBUG -- socket[5b4]: received packet nr 13 type 53 len 92
I, [2025-01-06T11:05:59.820881 #32003]  INFO -- net.ssh.authentication.session[5c8]: ###################################################################^M

D, [2025-01-06T11:05:59.821004 #32003] DEBUG -- socket[5b4]: received packet nr 14 type 53 len 28
I, [2025-01-06T11:05:59.821051 #32003]  INFO -- net.ssh.authentication.session[5c8]:

D, [2025-01-06T11:05:59.821225 #32003] DEBUG -- socket[5b4]: received packet nr 15 type 53 len 28
I, [2025-01-06T11:05:59.821276 #32003]  INFO -- net.ssh.authentication.session[5c8]:

D, [2025-01-06T11:05:59.821395 #32003] DEBUG -- socket[5b4]: received packet nr 16 type 51 len 44
D, [2025-01-06T11:05:59.821455 #32003] DEBUG -- net.ssh.authentication.session[5c8]: allowed methods: publickey,password
D, [2025-01-06T11:05:59.821517 #32003] DEBUG -- net.ssh.authentication.methods.none[5dc]: none failed
D, [2025-01-06T11:05:59.821567 #32003] DEBUG -- net.ssh.authentication.session[5c8]: trying publickey
D, [2025-01-06T11:05:59.821678 #32003] DEBUG -- net.ssh.authentication.agent[5f0]: connecting to ssh-agent
E, [2025-01-06T11:05:59.821731 #32003] ERROR -- net.ssh.authentication.agent[5f0]: could not connect to ssh-agent: Agent not configured
D, [2025-01-06T11:05:59.821768 #32003] DEBUG -- net.ssh.authentication.session[5c8]: trying password
D, [2025-01-06T11:05:59.821940 #32003] DEBUG -- socket[5b4]: queueing packet nr 5 type 50 len 60
D, [2025-01-06T11:05:59.822040 #32003] DEBUG -- socket[5b4]: sent 84 bytes
D, [2025-01-06T11:06:00.090272 #32003] DEBUG -- socket[5b4]: read 36 bytes
D, [2025-01-06T11:06:00.090777 #32003] DEBUG -- socket[5b4]: received packet nr 17 type 52 len 12
D, [2025-01-06T11:06:00.091149 #32003] DEBUG -- net.ssh.authentication.methods.password[604]: password succeeded
D, [2025-01-06T11:06:00.091547 #32003] DEBUG -- socket[5b4]: queueing packet nr 6 type 90 len 44
D, [2025-01-06T11:06:00.091613 #32003] DEBUG -- : lib/oxidized/input/ssh.rb: expecting [/>/] at dsl098875-rtr-032810
D, [2025-01-06T11:06:00.192072 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:00.292412 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:00.292716 #32003] DEBUG -- socket[5b4]: sent 68 bytes
D, [2025-01-06T11:06:00.315124 #32003] DEBUG -- : lib/oxidized/worker.rb: 1 jobs running in parallel
D, [2025-01-06T11:06:00.393118 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:00.393373 #32003] DEBUG -- socket[5b4]: read 52 bytes
D, [2025-01-06T11:06:00.393578 #32003] DEBUG -- socket[5b4]: received packet nr 18 type 91 len 28
I, [2025-01-06T11:06:00.393689 #32003]  INFO -- net.ssh.connection.session[618]: channel_open_confirmation: 0 0 0 32768
I, [2025-01-06T11:06:00.393776 #32003]  INFO -- net.ssh.connection.channel[62c]: sending channel request "pty-req"
D, [2025-01-06T11:06:00.393924 #32003] DEBUG -- socket[5b4]: queueing packet nr 7 type 98 len 60
D, [2025-01-06T11:06:00.494109 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:00.494413 #32003] DEBUG -- socket[5b4]: sent 84 bytes
D, [2025-01-06T11:06:00.594673 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:00.595084 #32003] DEBUG -- socket[5b4]: read 88 bytes
D, [2025-01-06T11:06:00.595422 #32003] DEBUG -- socket[5b4]: received packet nr 19 type 93 len 28
I, [2025-01-06T11:06:00.595626 #32003]  INFO -- net.ssh.connection.session[618]: channel_window_adjust: 0 +131072
D, [2025-01-06T11:06:00.595809 #32003] DEBUG -- socket[5b4]: received packet nr 20 type 99 len 12
I, [2025-01-06T11:06:00.595865 #32003]  INFO -- net.ssh.connection.session[618]: channel_success: 0
I, [2025-01-06T11:06:00.595898 #32003]  INFO -- net.ssh.connection.channel[62c]: sending channel request "shell"
D, [2025-01-06T11:06:00.596026 #32003] DEBUG -- socket[5b4]: queueing packet nr 8 type 98 len 28
D, [2025-01-06T11:06:00.696242 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:00.696684 #32003] DEBUG -- socket[5b4]: sent 52 bytes
D, [2025-01-06T11:06:00.796894 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:00.797090 #32003] DEBUG -- socket[5b4]: read 104 bytes
D, [2025-01-06T11:06:00.797290 #32003] DEBUG -- socket[5b4]: received packet nr 21 type 99 len 12
I, [2025-01-06T11:06:00.797392 #32003]  INFO -- net.ssh.connection.session[618]: channel_success: 0
D, [2025-01-06T11:06:00.797425 #32003] DEBUG -- : SSH: Shell channel request succeeded
D, [2025-01-06T11:06:00.797527 #32003] DEBUG -- socket[5b4]: received packet nr 22 type 94 len 44
I, [2025-01-06T11:06:00.797576 #32003]  INFO -- net.ssh.connection.session[618]: channel_data: 0 19b
D, [2025-01-06T11:06:00.797666 #32003] DEBUG -- : SSH: RAW on_data => "\r\nDSL098875-One540>"
D, [2025-01-06T11:06:00.797700 #32003] DEBUG -- : SSH: @output after expects => "\r\nDSL098875-One540>"
D, [2025-01-06T11:06:00.897874 #32003] DEBUG -- : SSH: expect loop => @output="\r\nDSL098875-One540>"
D, [2025-01-06T11:06:00.898050 #32003] DEBUG -- : lib/oxidized/input/cli.rb: Running post_login commands at dsl098875-rtr-032810
D, [2025-01-06T11:06:00.898083 #32003] DEBUG -- : lib/oxidized/model/model.rb Collecting commands' outputs
D, [2025-01-06T11:06:00.898144 #32003] DEBUG -- : lib/oxidized/model/model.rb Executing show version
D, [2025-01-06T11:06:00.898169 #32003] DEBUG -- : lib/oxidized/input/ssh.rb show version @ dsl098875-rtr-032810 with expect: />/
D, [2025-01-06T11:06:00.898194 #32003] DEBUG -- : SSH: cmd_shell sending => "show version" (with newline)
D, [2025-01-06T11:06:00.898447 #32003] DEBUG -- socket[5b4]: queueing packet nr 9 type 94 len 28
D, [2025-01-06T11:06:00.898485 #32003] DEBUG -- : SSH: Buffer before expect => ""
D, [2025-01-06T11:06:00.898510 #32003] DEBUG -- : lib/oxidized/input/ssh.rb: expecting [/>/] at dsl098875-rtr-032810
D, [2025-01-06T11:06:00.998962 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:01.099293 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:01.099551 #32003] DEBUG -- socket[5b4]: sent 52 bytes
D, [2025-01-06T11:06:01.199750 #32003] DEBUG -- : SSH: expect loop => @output=""
D, [2025-01-06T11:06:01.199958 #32003] DEBUG -- socket[5b4]: read 52 bytes
D, [2025-01-06T11:06:01.200168 #32003] DEBUG -- socket[5b4]: received packet nr 23 type 94 len 28
I, [2025-01-06T11:06:01.200239 #32003]  INFO -- net.ssh.connection.session[618]: channel_data: 0 12b
D, [2025-01-06T11:06:01.200291 #32003] DEBUG -- : SSH: RAW on_data => "show version"
D, [2025-01-06T11:06:01.200315 #32003] DEBUG -- : SSH: @output after expects => "show version"
D, [2025-01-06T11:06:01.316399 #32003] DEBUG -- : lib/oxidized/worker.rb: 1 jobs running in parallel
I, [2025-01-06T11:06:01.401171 #32003]  INFO -- net.ssh.connection.keepalive[640]: sending keepalive 0
I, [2025-01-06T11:06:01.401289 #32003]  INFO -- net.ssh.connection.session[618]: sending global request [email protected]
D, [2025-01-06T11:06:01.401625 #32003] DEBUG -- socket[5b4]: queueing packet nr 10 type 80 len 44
D, [2025-01-06T11:06:01.501853 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:01.602228 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:01.602891 #32003] DEBUG -- socket[5b4]: sent 68 bytes
D, [2025-01-06T11:06:01.703595 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:01.704159 #32003] DEBUG -- socket[5b4]: read 36 bytes
D, [2025-01-06T11:06:01.704442 #32003] DEBUG -- socket[5b4]: received packet nr 24 type 82 len 12
I, [2025-01-06T11:06:01.704548 #32003]  INFO -- net.ssh.connection.session[618]: global request failure
D, [2025-01-06T11:06:01.704629 #32003] DEBUG -- net.ssh.connection.keepalive[640]: keepalive response successful. Missed 0 keepalives
D, [2025-01-06T11:06:01.804902 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:02.005598 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:02.106053 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:02.306726 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:02.317661 #32003] DEBUG -- : lib/oxidized/worker.rb: 1 jobs running in parallel
D, [2025-01-06T11:06:02.407145 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:02.607838 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:02.708387 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:02.909170 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:03.009703 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:03.210392 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:06:03.310852 #32003] DEBUG -- : SSH: expect loop => @output="show version"
...(after timeout set to 60 secs)...
D, [2025-01-06T11:07:00.390851 #32003] DEBUG -- : lib/oxidized/worker.rb: 1 jobs running in parallel
D, [2025-01-06T11:07:00.422900 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:07:00.523262 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:07:00.723894 #32003] DEBUG -- : SSH: expect loop => @output="show version"
D, [2025-01-06T11:07:00.824237 #32003] DEBUG -- : SSH: expect loop => @output="show version"
W, [2025-01-06T11:07:00.899008 #32003]  WARN -- : 10.242.213.77 raised Timeout::Error with msg "execution expired"
D, [2025-01-06T11:07:00.899131 #32003] DEBUG -- : lib/oxidized/node.rb: Oxidized::SSH failed for dsl098875-rtr-032810

My understanding is the following:

After sending "show version\r", the device only returns the echo of what is typed, i.e., "show version".
The actual output of the command (e.g., "Software version : ...") never appears, and the next prompt doesn't return.
The session remains stuck waiting for the />/ regex, eventually timing out.
In other words, the device ignores or doesn't actually execute the show version command. It either holds it in the buffer or echoes it but does not process it.
This situation is typical of some devices that require a different end-of-line sequence (e.g., \r\n) or need an additional "Enter" to accept the command.

I tried different end-of-line sequence, even repeated, but without any luck.

I wrote a simple script to get the same output and it works:

#!/usr/bin/env ruby
# test2.rb

require 'net/ssh'

HOST     = '10.242.213.77'
USERNAME = 'admin'
PASSWORD = 'YYYYYYYY'  

Net::SSH.start(HOST, USERNAME, :password => PASSWORD) do |ssh|
  ssh.open_channel do |chan|

    chan.request_pty do |ch, success|
      puts "PTY request: #{success}"
      # Registriamo il callback per i dati in arrivo
      ch.on_data do |ch2, data|
        puts "DATA: #{data.inspect}"
      end
    end

    chan.send_channel_request('shell') do |ch, success|
      puts "Shell success: #{success}"

      #chan.send_data("term len 0\r")
      #sleep 1
      chan.send_data("show version\r")
      sleep 2
      chan.send_data("exit\r")
    end
  end

  ssh.loop
end

Can you please advise?

Thanks+BR,
Roberto

@Mallamac74
Copy link
Author

  • ruby 3.0.7p220 (2024-04-23 revision 724a071175) [x86_64-linux]
  • Oxidized 0.30.1
  • CentOS Stream release 9

@Mallamac74
Copy link
Author

here is the output of test2.rb (the simple script):

ruby test2.rb

PTY request: true
Shell success: true
DATA: "\r\nDSL098875-One540>"
DATA: "show version\r\n"
DATA: "Software version : ONEOS90-ADVIP_11N-V5.2R1E12_M1\r\nSoftware created on : 24/04/18 17:00:14\r\nDSL098875-One540>exit\r\n"

@Mallamac74
Copy link
Author

Mallamac74 commented Jan 9, 2025

I also tried the script device2yaml.rb (once upgraded Oxidized to latest release) but I don't get any output on the console and on the file.

cat cmdsets/oneos

show version
exit

[root@Oxidized-POC1 device-simulation]# ruby device2yaml.rb [email protected] -c cmdsets/oneos -o yaml/test
[email protected]'s password:
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Received chunk: "\r\nDSL098875-One540>"
### DEBUG: Accumulated output: "\r\nDSL098875-One540>"

DSL098875-One540>### DEBUG: Raw SSH Output So Far: "\r\nDSL098875-One540>"
### YAML RAW Output: "\r\nDSL098875-One540>"
### write YAML line:
### write YAML line:   DSL098875-One540>

### Sending show version...
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Received chunk: "show version"
### DEBUG: Accumulated output: "show version"
show version### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### DEBUG: Raw SSH Output So Far: "show version"
### Output received per 'show version': "show version"
### YAML RAW Output: "show version"
### write YAML line:     show version

### Sending exit...
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Raw SSH Output So Far: ""
### DEBUG: Received chunk: "exit"
### DEBUG: Accumulated output: "exit"
exit### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### DEBUG: Raw SSH Output So Far: "exit"
### Output received per 'exit': "exit"
### YAML RAW Output: "exit"
### write YAML line:     exit
### Output file written: yaml/test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant