問題タブ [juniper]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Python を使用した Juniper から Aruba へのコマンド
ジュニパーと Aruba の各スイッチからの一連のコマンドを自動的に変換したいと考えています。Juniper コマンドの文字列を使用して Aruba コマンドの文字列を出力させる方法はありますか? もしそうなら、Pythonを使用してこれにどのようにアプローチしますか? 「if else」、python 辞書コマンド、またはその他の構文を使用しますか?
例えば:
私はちょうどこのスクリプトを思いついた:
def Juniper(sets): print ('host-name', set1) print ('console idle-timeout 600\n''console idle-timeout serial-usb 600\n''aruba-central disable\n'igmp lookup- mode ip\n''console idle-timeout serial-usb 600\n') print ("logging (system1) oobm") #I AM TRYING TO ADD THE INPUT OF system1 IN BETWEEN LIKE THIS ^ AS SHOWN ABOVE
set1= input('Enter hostname with quotes:\n') system1 = input('Enter system log IP address:') Juniper(set1)
2 つの文字列または単語の間に入力を追加する方法を教えてください
ansible - Ansible で junos デバイスの root パスワードを変更するにはどうすればよいですか?
私は Ansible を初めて使用するので、Juniper デバイスのルート パスワードの変更に関するドキュメントがあまり見つかりません。このようなことを行うためのフレームワークは何ですか?
これは私がこれまでに持っているものですが、それが正しいとは確信していません。