napalm-automation / napalm-ios

Apache License 2.0
31 stars 40 forks source link

get_interfaces_ip executes a show command for each interface #204

Closed ktbyers closed 7 years ago

ktbyers commented 7 years ago

And is consequently very slow:

        for interface in interfaces:
            show_command = "show run interface {0}".format(interface)

Probably replace with show ip interface

ktbyers commented 7 years ago

@targuan Okay, thanks for referencing that and creating the PR.