に私は、リストのサイズが動的である以下のリスト保存ループ出力変数
['200', '530', '540']
を持っています。それはssh_conn.rec
の出力によって異なります。私は必要なもの は、これらの値を取得し、リスト私はループを使用することができます充填を持って
ssh_conn.send('show running-config crypto map | i 200\n')
ssh_conn.send('show running-config crypto map | i 530\n')
ssh_conn.send('show running-config crypto map | i 540\n')
に値ごとに次のコマンドを実行することですが、私はコードの下 をどのように行うのか全くわかりません:
3210出力
python IPSEC_config_attributes.py
SSH COnnection established with XXXX
Interactive SSH session established
Give the name of the 3PPartner
>XXXX
Type help or '?' for a list of available commands.
XXXX/pri/act>
XXXX/pri/act> enable
Password: ************
XXXX/pri/act# terminal pager 0
XXXX/pri/act# show running-config crypto map | i XXX
crypto map OUTSIDEMAP 200 match address XXXX
crypto map OUTSIDEMAP 530 match address XXXX
crypto map OUTSIDEMAP 540 match address XXXX
XXXX/pri/act#
['200', '530', '540']
200
530
540
Logged out of device XXXXXXXX
おかげ
がssh_conn'が – RomanPerekhrest
私は*ファイルの出力が表示されない説明 –
に追加定義されていたか '示し、より多くのコンテキストコードを表示:各試合のためにコマンドを実行するには、このようなものを使用しますどこから*これらの値を取得する必要があるから* – RomanPerekhrest