I'm only getting hostname as output but the main requirement is for the backup of the running configuration...












1















Importing Packages



#!/usr/bin/env python
from __future__ import print_function, unicode_literals
from __future__ import absolute_import, division, print_function
from netmiko import Netmiko
import getpass
import logging
import sys
import time


Main Output file



class Logger(object):
def __init__(self):
self.terminal = sys.stdout
self.log = open("Script_output_Devicebackup_Rint.txt", "a")

def write(self, message):
self.terminal.write(message)
self.log.write(message)

def flush(self):
pass


sys.stdout = Logger()


def to_doc_a(file_name, varable):
f = open(file_name, 'a')
f.write(varable)
f.write('n')
f.close()


def to_doc_w(file_name, varable):
f = open(file_name, 'w')
f.write(varable)
f.close()


file_names = "failed_Device.txt"
# Clearing all the old info out of the results.csv file
to_doc_a(file_names, "")

##getting system date
day = time.strftime('%d')
month = time.strftime('%m')
year = time.strftime('%Y')
today = day + "-" + month + "-" + year

print(
"Script to take back up of device nScript output will be saved in Script_output_Devicebackup.txt filenPlease enter Username:")
username = input(" ")
password = getpass.getpass("Password: ")


Telnet connectivity to the device



device_telnet = {
"host": " ",
"username": username,
"password": password,
"device_type": "cisco_ios_telnet",

}
device = {
"host": " ",
"username": username,
"password": password,
"device_type": "cisco_ios",

}
##opening IP file
ipfile = open("device_file.txt")

for line in ipfile:
try:
device['host'] = line.strip("n")
device_telnet['host'] = line.strip("n")
ipname = line.strip("n")
print('~' * 79)
print("Connecting Device ", line)
try:
# print('Trying SSH')
net_connect = Netmiko(**device)
if net_connect.check_enable_mode():
print('SSH connection successful ')
except:
print('SSH failed')
try:
# print('Trying Telnet')
net_connect = Netmiko(**device_telnet)
if net_connect.check_enable_mode():
print('Telnet connection successful')
except:
print('Telnet failed')
print('unable to connect to device using shh and telnet')
to_doc_a(file_names, line)
continue
net_connect.enable()
time.sleep(1)


Getting the hostname but I'm not getting the running configuration of device



        hostname = net_connect.send_command('show run | i hostname')
#name = hostname.split(",")
devicename = (hostname.split()[1])
print("Working on " + devicename)
print("Reading the running config of " + devicename)
output1 = net_connect.send_command('show version')
time.sleep(3)
print(output1)
filename = devicename + '(' + device['host'] + ')' + '_' + today + ".txt"
saveconfig = open(filename, 'w+')
saveconfig.write(output1)
saveconfig.close()
time.sleep(2)
print("Configuration saved to file", filename)

net_connect.disconnect()
except:
continue
ipfile.close()
print("nAll device completed")









share|improve this question





























    1















    Importing Packages



    #!/usr/bin/env python
    from __future__ import print_function, unicode_literals
    from __future__ import absolute_import, division, print_function
    from netmiko import Netmiko
    import getpass
    import logging
    import sys
    import time


    Main Output file



    class Logger(object):
    def __init__(self):
    self.terminal = sys.stdout
    self.log = open("Script_output_Devicebackup_Rint.txt", "a")

    def write(self, message):
    self.terminal.write(message)
    self.log.write(message)

    def flush(self):
    pass


    sys.stdout = Logger()


    def to_doc_a(file_name, varable):
    f = open(file_name, 'a')
    f.write(varable)
    f.write('n')
    f.close()


    def to_doc_w(file_name, varable):
    f = open(file_name, 'w')
    f.write(varable)
    f.close()


    file_names = "failed_Device.txt"
    # Clearing all the old info out of the results.csv file
    to_doc_a(file_names, "")

    ##getting system date
    day = time.strftime('%d')
    month = time.strftime('%m')
    year = time.strftime('%Y')
    today = day + "-" + month + "-" + year

    print(
    "Script to take back up of device nScript output will be saved in Script_output_Devicebackup.txt filenPlease enter Username:")
    username = input(" ")
    password = getpass.getpass("Password: ")


    Telnet connectivity to the device



    device_telnet = {
    "host": " ",
    "username": username,
    "password": password,
    "device_type": "cisco_ios_telnet",

    }
    device = {
    "host": " ",
    "username": username,
    "password": password,
    "device_type": "cisco_ios",

    }
    ##opening IP file
    ipfile = open("device_file.txt")

    for line in ipfile:
    try:
    device['host'] = line.strip("n")
    device_telnet['host'] = line.strip("n")
    ipname = line.strip("n")
    print('~' * 79)
    print("Connecting Device ", line)
    try:
    # print('Trying SSH')
    net_connect = Netmiko(**device)
    if net_connect.check_enable_mode():
    print('SSH connection successful ')
    except:
    print('SSH failed')
    try:
    # print('Trying Telnet')
    net_connect = Netmiko(**device_telnet)
    if net_connect.check_enable_mode():
    print('Telnet connection successful')
    except:
    print('Telnet failed')
    print('unable to connect to device using shh and telnet')
    to_doc_a(file_names, line)
    continue
    net_connect.enable()
    time.sleep(1)


    Getting the hostname but I'm not getting the running configuration of device



            hostname = net_connect.send_command('show run | i hostname')
    #name = hostname.split(",")
    devicename = (hostname.split()[1])
    print("Working on " + devicename)
    print("Reading the running config of " + devicename)
    output1 = net_connect.send_command('show version')
    time.sleep(3)
    print(output1)
    filename = devicename + '(' + device['host'] + ')' + '_' + today + ".txt"
    saveconfig = open(filename, 'w+')
    saveconfig.write(output1)
    saveconfig.close()
    time.sleep(2)
    print("Configuration saved to file", filename)

    net_connect.disconnect()
    except:
    continue
    ipfile.close()
    print("nAll device completed")









    share|improve this question



























      1












      1








      1








      Importing Packages



      #!/usr/bin/env python
      from __future__ import print_function, unicode_literals
      from __future__ import absolute_import, division, print_function
      from netmiko import Netmiko
      import getpass
      import logging
      import sys
      import time


      Main Output file



      class Logger(object):
      def __init__(self):
      self.terminal = sys.stdout
      self.log = open("Script_output_Devicebackup_Rint.txt", "a")

      def write(self, message):
      self.terminal.write(message)
      self.log.write(message)

      def flush(self):
      pass


      sys.stdout = Logger()


      def to_doc_a(file_name, varable):
      f = open(file_name, 'a')
      f.write(varable)
      f.write('n')
      f.close()


      def to_doc_w(file_name, varable):
      f = open(file_name, 'w')
      f.write(varable)
      f.close()


      file_names = "failed_Device.txt"
      # Clearing all the old info out of the results.csv file
      to_doc_a(file_names, "")

      ##getting system date
      day = time.strftime('%d')
      month = time.strftime('%m')
      year = time.strftime('%Y')
      today = day + "-" + month + "-" + year

      print(
      "Script to take back up of device nScript output will be saved in Script_output_Devicebackup.txt filenPlease enter Username:")
      username = input(" ")
      password = getpass.getpass("Password: ")


      Telnet connectivity to the device



      device_telnet = {
      "host": " ",
      "username": username,
      "password": password,
      "device_type": "cisco_ios_telnet",

      }
      device = {
      "host": " ",
      "username": username,
      "password": password,
      "device_type": "cisco_ios",

      }
      ##opening IP file
      ipfile = open("device_file.txt")

      for line in ipfile:
      try:
      device['host'] = line.strip("n")
      device_telnet['host'] = line.strip("n")
      ipname = line.strip("n")
      print('~' * 79)
      print("Connecting Device ", line)
      try:
      # print('Trying SSH')
      net_connect = Netmiko(**device)
      if net_connect.check_enable_mode():
      print('SSH connection successful ')
      except:
      print('SSH failed')
      try:
      # print('Trying Telnet')
      net_connect = Netmiko(**device_telnet)
      if net_connect.check_enable_mode():
      print('Telnet connection successful')
      except:
      print('Telnet failed')
      print('unable to connect to device using shh and telnet')
      to_doc_a(file_names, line)
      continue
      net_connect.enable()
      time.sleep(1)


      Getting the hostname but I'm not getting the running configuration of device



              hostname = net_connect.send_command('show run | i hostname')
      #name = hostname.split(",")
      devicename = (hostname.split()[1])
      print("Working on " + devicename)
      print("Reading the running config of " + devicename)
      output1 = net_connect.send_command('show version')
      time.sleep(3)
      print(output1)
      filename = devicename + '(' + device['host'] + ')' + '_' + today + ".txt"
      saveconfig = open(filename, 'w+')
      saveconfig.write(output1)
      saveconfig.close()
      time.sleep(2)
      print("Configuration saved to file", filename)

      net_connect.disconnect()
      except:
      continue
      ipfile.close()
      print("nAll device completed")









      share|improve this question
















      Importing Packages



      #!/usr/bin/env python
      from __future__ import print_function, unicode_literals
      from __future__ import absolute_import, division, print_function
      from netmiko import Netmiko
      import getpass
      import logging
      import sys
      import time


      Main Output file



      class Logger(object):
      def __init__(self):
      self.terminal = sys.stdout
      self.log = open("Script_output_Devicebackup_Rint.txt", "a")

      def write(self, message):
      self.terminal.write(message)
      self.log.write(message)

      def flush(self):
      pass


      sys.stdout = Logger()


      def to_doc_a(file_name, varable):
      f = open(file_name, 'a')
      f.write(varable)
      f.write('n')
      f.close()


      def to_doc_w(file_name, varable):
      f = open(file_name, 'w')
      f.write(varable)
      f.close()


      file_names = "failed_Device.txt"
      # Clearing all the old info out of the results.csv file
      to_doc_a(file_names, "")

      ##getting system date
      day = time.strftime('%d')
      month = time.strftime('%m')
      year = time.strftime('%Y')
      today = day + "-" + month + "-" + year

      print(
      "Script to take back up of device nScript output will be saved in Script_output_Devicebackup.txt filenPlease enter Username:")
      username = input(" ")
      password = getpass.getpass("Password: ")


      Telnet connectivity to the device



      device_telnet = {
      "host": " ",
      "username": username,
      "password": password,
      "device_type": "cisco_ios_telnet",

      }
      device = {
      "host": " ",
      "username": username,
      "password": password,
      "device_type": "cisco_ios",

      }
      ##opening IP file
      ipfile = open("device_file.txt")

      for line in ipfile:
      try:
      device['host'] = line.strip("n")
      device_telnet['host'] = line.strip("n")
      ipname = line.strip("n")
      print('~' * 79)
      print("Connecting Device ", line)
      try:
      # print('Trying SSH')
      net_connect = Netmiko(**device)
      if net_connect.check_enable_mode():
      print('SSH connection successful ')
      except:
      print('SSH failed')
      try:
      # print('Trying Telnet')
      net_connect = Netmiko(**device_telnet)
      if net_connect.check_enable_mode():
      print('Telnet connection successful')
      except:
      print('Telnet failed')
      print('unable to connect to device using shh and telnet')
      to_doc_a(file_names, line)
      continue
      net_connect.enable()
      time.sleep(1)


      Getting the hostname but I'm not getting the running configuration of device



              hostname = net_connect.send_command('show run | i hostname')
      #name = hostname.split(",")
      devicename = (hostname.split()[1])
      print("Working on " + devicename)
      print("Reading the running config of " + devicename)
      output1 = net_connect.send_command('show version')
      time.sleep(3)
      print(output1)
      filename = devicename + '(' + device['host'] + ')' + '_' + today + ".txt"
      saveconfig = open(filename, 'w+')
      saveconfig.write(output1)
      saveconfig.close()
      time.sleep(2)
      print("Configuration saved to file", filename)

      net_connect.disconnect()
      except:
      continue
      ipfile.close()
      print("nAll device completed")






      python-3.x






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 4 at 8:55









      halfer

      14.7k758115




      14.7k758115










      asked Jan 1 at 22:05









      Sai AnirudhSai Anirudh

      63




      63
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53999303%2fim-only-getting-hostname-as-output-but-the-main-requirement-is-for-the-backup-o%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53999303%2fim-only-getting-hostname-as-output-but-the-main-requirement-is-for-the-backup-o%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter