SlideShare uma empresa Scribd logo
1 de 22
Network Troubleshooting and
                                                   Problem Identification- Part 2

                  Tips for Configuration and IP Address
                                 Conflicts

© 2012, SolarWinds Worldwide, LLC. All rights reserved.

                                                          1
Agenda

 Troubleshooting Network Configuration & IP Address Conflicts

 »      1. Troubleshooting Configuration Issues

 »      2. Troubleshooting IP Address Conflicts

 »      3. Network Troubleshooting Steps

 »      4. Tools for Network Troubleshooting

 »      5. How can SolarWinds help?




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     2
1. Troubleshooting Configuration Issues

 »      Reasons for more than 80% of network issues: Device configuration
        errors

 »      Why?
       »      Unplanned, unauthorized and not fully tested prior to deployment.


 »      Keep an archive of your device configurations so that you can compare
        the current version to the previously archived versions




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     3
1 a. Configure Archive

»     For a Cisco router, the archive config command allows you to save your
      IOS configuration in the configuration archive using a standard location
      and filename prefix that is automatically appended with an incremental
      version number as each consecutive file is saved.

                        Router# configure terminal
                        Router(config)# archive
                        Router(config-archive)# path disk0:myconfig


»     To save the current running configuration:
                        Router# archive config




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     4
1 b. Show Archive

»       The show archive command displays information on the files saved in the
        configuration archive as shown in the following sample output:
                       Router# show archive
                   There are currently 1 archive configurations saved.
                   The next archive file will be named disk0:myconfig-2
                   Archive # Name
                    0
                    1    disk0:myconfig-1 <- Most Recent
                    2


»       Assuming that you have a config archive, you can perform a line-by-line comparison of
        any two configuration files and generate a list of the differences between them using
        the show archive config differences command.

               show archive config differences[filename1(path)[filename2(path)][ignorecase]]


    NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                         5
1 b. Show Archive (Contd.)
»    A plus symbol (+) indicates that the configuration line exists in
     filename2(path) but not in filename1(path) while a minus symbol (-)
     indicates that the configuration line exists in filename1(path) but not in
     filename2(path).
»    An exclamation point (!) with descriptive comments is used to identify order-
     sensitive configuration lines whose location is different in filename1(path)
     than in filename2(path).
                     +ip subnet-zero
                     +ip name-server 10.4.4.4
                     +voice dnis-map 1
                      +dnis 111
                     interface Ethernet1/0
                      +no ip address
                      +shutdown
                     +ip default-gateway 10.5.5.5
                     +ip classless
                     +access-list 110 deny ip any host 10.1.1.1
                     +access-list 110 deny ip any host 10.1.1.2
                     +access-list 110 deny ip any host 10.1.1.3
                     +snmp-server community private RW
                     -no ip subnet-zero
                     interface Ethernet1/0
                      -ip address 10.7.7.7 255.0.0.0
                     -no ip classless
                     -snmp-server community public RO
NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                                  6
1 b. Show Archive (Contd.)

»     Once you determine that a config has changed, its easy to replace the current
      running config with any saved config file using the configure replace command.



                Router# configure replace disk0:myconfig

                This will apply all necessary additions and deletions
                to replace the current running configuration with the
                contents of the specified configuration file, which is
                assumed to be a complete configuration, not a partial
                configuration.
                Enter Y if you are sure you want to proceed. ? [no]: Y
                 Total number of passes: 1
                Rollback Done




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     7
2. Troubleshooting IP Address Conflicts

»      IP address conflicts occur when two devices on a network are assigned
       the same IP address resulting in one or both being disabled and losing
       connectivity until the conflict is resolved.

»      IP address conflicts mostly occur due to configuration errors including:
              • Assignment of the same static IP address by a network administrator

              • Assignment of a static IP address within the DHCP range (dynamic range) resulting
                in the same address being automatically assigned by the local DHCP server

              • An error in the DHCP server

              • A system coming back online after an extended period in stand-by or hibernate
                mode with an IP address that has been re-assigned and is in use on the network




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     8
2. Troubleshooting IP Address Conflicts                                          Step 1
    (Contd.)



»     Look For Overlapping IP Address Ranges on Your DHCP Server

       Verify that no two servers have overlapping IP address ranges.

       This can be as simple as comparing the IP address ranges and looking for
        overlaps when the servers are using dynamic or automatic allocation of IP
        addresses.

       If they are using static allocation, then you will need to review each hard coded
        IP address assignment.




                                              9
2. Troubleshooting IP Address Conflicts                                         Step 2
    (Contd.)


»       Look for Duplicate Static IP Addresses

         Look for devices on the network segment that have been statically configured
          with the duplicate IP address.



         Once found, you can either reconfigure the device to use DHCP or you can
          configure the DHCP server to stop assigning the duplicated IP address.




    NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                         10
2. Troubleshooting IP Address Conflicts                                             Step 3
(Contd.)


»      If steps 1 and 2 do not produce results, you will need to find the MAC addresses
       of the conflicting devices.

»      Since the MAC address is unique for each device on the network, you can look for
       devices that contain the same IP address but with different MAC addresses.

»      You can use the Address Resolution Protocol (ARP) to establish a correspondence
       between the IP address and the MAC address. Start at your core router and use
       the show ip arp command:




»      If you were to see two IP addresses with differing hardware addresses then you
       have located your problem devices.


NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     11
2. Troubleshooting IP Address Conflicts                                              Step 4
(Contd.)


»     To know the physical location or switch port, go to the switch and use the show
      mac-address table command. This will show you the MAC address for each port.

»     This can be very tedious in the case of geographically distributed networks.




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     12
2. Troubleshooting IP Address Conflicts (Contd.)

»      SolarWinds User Device Tracker is a device tracking and switch port
       management tool that quickly locates a device on the network by
       searching on the IP address, Hostname or MAC address.




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     13
2 a. Preventing conflicts in the Future

»      Some tips to prevent future conflicts
          Use DHCP to reduce the chances of manually assigning duplicate addresses.
          Set your DHCP server to detect IP address conflicts.
          Modify the DHCP lease duration to something less than the default lease time of 8 days.
          Use multiple DHCP servers, each having it own specific scope.
          Reserve IP addresses instead of assigning static IP addresses.
          Use automated DHCP, DNS, and IP address management and monitoring tools


»      Despite these preventive measures, the possibility that IP conflicts
       occurring still remains

»      It is better to evaluate a commercially available IP address management
       product that allows you to centrally manage, monitor, alert, and report
       on your IP infrastructure.


NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     14
3. Network Troubleshooting Steps

»      Identify the symptoms – document the symptoms
»      Identify the scope of the problem – geographic, demographic, or
       chronological
»      Determine if anything has changed on the network – has there been a
       hardware or software change?
»      Determine the most probable cause of the problem – no, it’s not always
       the user
»      Implement solution
»      Test the solution
»      Document the solution




                                   And….Don’t forget to check the cables!

NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     15
4. Tools for Network Troubleshooting

»      There are hundreds of open source, free, or commercially licensed
       products available to monitor and troubleshoot network performance,
       traffic and bandwidth, configurations, and IP infrastructure.

»      Here are some guidelines to pick the right tool:
        Multiple Vendor device support
        Support for multiple standard protocols including SNMP, ICMP, Syslog, and
         others.
        Real-time and historical analysis capabilities
        Vizualizations accessible from anywhere
        Drill-down support
        Affordability




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     16
3. How SolarWinds can help?

» SolarWinds award-winning network management software
  makes it easy to:
           Discover and map network devices
           Monitor network performance
           Analyze network traffic
           Manage and back up network configurations
           Track IP addresses
           Find rogue devices, and much more.




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     17
3 a. SolarWinds Network Configuration Manager

»      SolarWinds Network Configuration Manager (NCM) keeps you ahead of network
       issues with immediate visibility into the cause and effect relationship between
       configuration errors and network performance.

       •    Enables bulk configuration,
            community string, ACL, & MAC
            address changes
       •    Automates network configuration
            backups & compliance reporting
       •    Detects & reports on configuration
            policy violations & delivers real-time
            alerts Protect against unauthorized,
            unscheduled, or erroneous config
            changes
       •    Automatically discovers SNMP-
            enabled network devices & typically
            deploys in less than an hour



    NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                         18
3 b. SolarWinds IP Address Manager

»      SolarWinds IP Address Manager (IPAM) enables you and your team to ditch your
       spreadsheets for an easy-to-use, centralized IP address monitoring and
       management solution

        •    Centrally manage, alert, & report on
             your IP address space
        •    Manage & monitor Microsoft
             DHCP/DNS services & monitor Cisco
             DHCP servers
        •    Delivers role-based access & control
             from an intuitive web based interface
        •    Alert notifications help prevent your
             subnets & DHCP scopes from filling up
        •    Automatically discovers used & unused
             addresses & typically deploys in less
             than an hour




    NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                         19
3 b. SolarWinds User Device Tracker

»      SolarWinds User Device Tracker enables you to quickly find devices on your
       network, create device watch lists, map switch ports and track switch capacity.


        •    Track user and device locations by
             MAC address, IP address, or
             Hostname
        •    Map and monitor switches by ports
             used, CPU load, memory used and
             more
        •    Receive immediate alerts when a
             specified device connects to the
             network




    NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                         20
Helpful Resources
We invite you to learn more about SolarWinds Network Management Software




                                                                                   Watch the IP Address Manager
                                                                                          Overview Video




                                           Explore the FEATURES
                                             of SolarWinds IPAM
                                         • No more spreadsheets
                                         • Centralized IP Address
                                           Management



                                            --- Click any of the links above ---
NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                                    21
Thank You!




NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION
                                                     22

Mais conteúdo relacionado

Mais procurados

SDN Fundamentals - short presentation
SDN Fundamentals -  short presentationSDN Fundamentals -  short presentation
SDN Fundamentals - short presentationAzhar Khuwaja
 
SDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center NetworkingSDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center NetworkingThomas Graf
 
Integration and Interoperation of existing Nexus networks into an ACI Archite...
Integration and Interoperation of existing Nexus networks into an ACI Archite...Integration and Interoperation of existing Nexus networks into an ACI Archite...
Integration and Interoperation of existing Nexus networks into an ACI Archite...Cisco Canada
 
Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Alan Mark
 
Fortinet Icon Library
Fortinet Icon LibraryFortinet Icon Library
Fortinet Icon LibraryFortinet
 
Vxlan control plane and routing
Vxlan control plane and routingVxlan control plane and routing
Vxlan control plane and routingWilfredzeng
 
CCNA Wireless Lan (WLAN)
CCNA Wireless Lan (WLAN)CCNA Wireless Lan (WLAN)
CCNA Wireless Lan (WLAN)Networkel
 
CCNA Introducing Networks
CCNA Introducing NetworksCCNA Introducing Networks
CCNA Introducing NetworksDsunte Wilson
 
IP addressing and Subnetting PPT
IP addressing and Subnetting PPTIP addressing and Subnetting PPT
IP addressing and Subnetting PPTPijush Kanti Das
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1Nil Menon
 
Vlans (virtual local area networks)
Vlans (virtual local area networks)Vlans (virtual local area networks)
Vlans (virtual local area networks)Kanishk Raj
 
Troubleshooting Your Network.pptx
Troubleshooting Your Network.pptxTroubleshooting Your Network.pptx
Troubleshooting Your Network.pptxssusere578aa
 
CCNA 3 - Troubleshooting the network
CCNA 3 - Troubleshooting the networkCCNA 3 - Troubleshooting the network
CCNA 3 - Troubleshooting the networkMuhd Mu'izuddin
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6Nil Menon
 
Cisco router basic
Cisco router basicCisco router basic
Cisco router basicTapan Khilar
 
Juniper SRX Quickstart 12.1R3 by Thomas Schmidt
Juniper SRX Quickstart 12.1R3 by Thomas SchmidtJuniper SRX Quickstart 12.1R3 by Thomas Schmidt
Juniper SRX Quickstart 12.1R3 by Thomas SchmidtNam Nguyen
 
High availability deep dive high-end srx series
High availability deep dive high-end srx seriesHigh availability deep dive high-end srx series
High availability deep dive high-end srx seriesMuhammad Denis Iqbal
 

Mais procurados (20)

SDN Fundamentals - short presentation
SDN Fundamentals -  short presentationSDN Fundamentals -  short presentation
SDN Fundamentals - short presentation
 
SDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center NetworkingSDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center Networking
 
Integration and Interoperation of existing Nexus networks into an ACI Archite...
Integration and Interoperation of existing Nexus networks into an ACI Archite...Integration and Interoperation of existing Nexus networks into an ACI Archite...
Integration and Interoperation of existing Nexus networks into an ACI Archite...
 
Iperf Tutorial
Iperf Tutorial Iperf Tutorial
Iperf Tutorial
 
Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)
 
Fortinet Icon Library
Fortinet Icon LibraryFortinet Icon Library
Fortinet Icon Library
 
Vxlan control plane and routing
Vxlan control plane and routingVxlan control plane and routing
Vxlan control plane and routing
 
CCNA Wireless Lan (WLAN)
CCNA Wireless Lan (WLAN)CCNA Wireless Lan (WLAN)
CCNA Wireless Lan (WLAN)
 
CCNA Introducing Networks
CCNA Introducing NetworksCCNA Introducing Networks
CCNA Introducing Networks
 
IP addressing and Subnetting PPT
IP addressing and Subnetting PPTIP addressing and Subnetting PPT
IP addressing and Subnetting PPT
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1
 
Vlans (virtual local area networks)
Vlans (virtual local area networks)Vlans (virtual local area networks)
Vlans (virtual local area networks)
 
Optimizing Aruba WLANs for Roaming Devices
Optimizing Aruba WLANs for Roaming DevicesOptimizing Aruba WLANs for Roaming Devices
Optimizing Aruba WLANs for Roaming Devices
 
Troubleshooting Your Network.pptx
Troubleshooting Your Network.pptxTroubleshooting Your Network.pptx
Troubleshooting Your Network.pptx
 
CCNA 3 - Troubleshooting the network
CCNA 3 - Troubleshooting the networkCCNA 3 - Troubleshooting the network
CCNA 3 - Troubleshooting the network
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6
 
Cisco router basic
Cisco router basicCisco router basic
Cisco router basic
 
Juniper SRX Quickstart 12.1R3 by Thomas Schmidt
Juniper SRX Quickstart 12.1R3 by Thomas SchmidtJuniper SRX Quickstart 12.1R3 by Thomas Schmidt
Juniper SRX Quickstart 12.1R3 by Thomas Schmidt
 
Vlan
Vlan Vlan
Vlan
 
High availability deep dive high-end srx series
High availability deep dive high-end srx seriesHigh availability deep dive high-end srx series
High availability deep dive high-end srx series
 

Destaque

Remote network monitoring
Remote network monitoringRemote network monitoring
Remote network monitoringyousef emami
 
Network management
Network managementNetwork management
Network managementMohd Arif
 
Monitoring and Troubleshooting for Online Operations
Monitoring and Troubleshooting for Online OperationsMonitoring and Troubleshooting for Online Operations
Monitoring and Troubleshooting for Online OperationsThousandEyes
 
Ethernet - Networking presentation
Ethernet - Networking presentationEthernet - Networking presentation
Ethernet - Networking presentationViet Nguyen
 
NetworkSecurity.ppt
NetworkSecurity.pptNetworkSecurity.ppt
NetworkSecurity.pptDreamMalar
 
Network Security
Network SecurityNetwork Security
Network SecurityMAJU
 
Network protocol
Network protocolNetwork protocol
Network protocolOnline
 
Network protocols
Network protocolsNetwork protocols
Network protocolsHemnath R.
 
VPN - Virtual Private Network
VPN - Virtual Private NetworkVPN - Virtual Private Network
VPN - Virtual Private NetworkPeter R. Egli
 
Virtual private network
Virtual private networkVirtual private network
Virtual private networkSowmia Sathyan
 

Destaque (15)

Remote network monitoring
Remote network monitoringRemote network monitoring
Remote network monitoring
 
Network management
Network managementNetwork management
Network management
 
Monitoring and Troubleshooting for Online Operations
Monitoring and Troubleshooting for Online OperationsMonitoring and Troubleshooting for Online Operations
Monitoring and Troubleshooting for Online Operations
 
Ethernet - Networking presentation
Ethernet - Networking presentationEthernet - Networking presentation
Ethernet - Networking presentation
 
Ethernet
EthernetEthernet
Ethernet
 
Vpn
VpnVpn
Vpn
 
NetworkSecurity.ppt
NetworkSecurity.pptNetworkSecurity.ppt
NetworkSecurity.ppt
 
Network Security
Network SecurityNetwork Security
Network Security
 
Network security
Network securityNetwork security
Network security
 
Protocols
ProtocolsProtocols
Protocols
 
Network protocol
Network protocolNetwork protocol
Network protocol
 
Network protocols
Network protocolsNetwork protocols
Network protocols
 
VPN - Virtual Private Network
VPN - Virtual Private NetworkVPN - Virtual Private Network
VPN - Virtual Private Network
 
Virtual private network
Virtual private networkVirtual private network
Virtual private network
 
OSI Model
OSI ModelOSI Model
OSI Model
 

Semelhante a Network Troubleshooting - Part 2

Docker interview Questions-3.pdf
Docker interview Questions-3.pdfDocker interview Questions-3.pdf
Docker interview Questions-3.pdfYogeshwaran R
 
Apend. networking generic a
Apend. networking generic aApend. networking generic a
Apend. networking generic aAcácio Oliveira
 
Sharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linuxSharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linuxjasembo
 
101 apend. networking generic a
101 apend. networking generic a101 apend. networking generic a
101 apend. networking generic aAcácio Oliveira
 
Simplified IPv6 Subnetting. Understanding What’s What.
Simplified IPv6 Subnetting. Understanding What’s What.Simplified IPv6 Subnetting. Understanding What’s What.
Simplified IPv6 Subnetting. Understanding What’s What.SolarWinds
 
7 2.5 3 Lab - Identifying IPv6 Addresses.pdf
7 2.5 3 Lab - Identifying IPv6 Addresses.pdf7 2.5 3 Lab - Identifying IPv6 Addresses.pdf
7 2.5 3 Lab - Identifying IPv6 Addresses.pdfSamantha Vargas
 
IPv6 networking training sduffy v3
IPv6 networking training   sduffy v3IPv6 networking training   sduffy v3
IPv6 networking training sduffy v3Shane Duffy
 
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICESCENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICESNazmul Hossain Rakib
 
Devry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands newDevry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands newuopassignment
 
Ccna interview questions
Ccna interview questionsCcna interview questions
Ccna interview questionsfazalurmsc
 
Devry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands newDevry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands newwilliamethan912
 
Design of a campus network
Design of a campus networkDesign of a campus network
Design of a campus networkAalap Tripathy
 

Semelhante a Network Troubleshooting - Part 2 (20)

Docker interview Questions-3.pdf
Docker interview Questions-3.pdfDocker interview Questions-3.pdf
Docker interview Questions-3.pdf
 
Apend. networking generic a
Apend. networking generic aApend. networking generic a
Apend. networking generic a
 
Nat 03
Nat 03Nat 03
Nat 03
 
Sharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linuxSharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linux
 
Day 17.1 nat pat
Day 17.1 nat pat Day 17.1 nat pat
Day 17.1 nat pat
 
101 apend. networking generic a
101 apend. networking generic a101 apend. networking generic a
101 apend. networking generic a
 
Simplified IPv6 Subnetting. Understanding What’s What.
Simplified IPv6 Subnetting. Understanding What’s What.Simplified IPv6 Subnetting. Understanding What’s What.
Simplified IPv6 Subnetting. Understanding What’s What.
 
7 2.5 3 Lab - Identifying IPv6 Addresses.pdf
7 2.5 3 Lab - Identifying IPv6 Addresses.pdf7 2.5 3 Lab - Identifying IPv6 Addresses.pdf
7 2.5 3 Lab - Identifying IPv6 Addresses.pdf
 
3- NIC Teaming
3- NIC Teaming3- NIC Teaming
3- NIC Teaming
 
Iaas on xcp
Iaas on xcpIaas on xcp
Iaas on xcp
 
Nat 07
Nat 07Nat 07
Nat 07
 
Zero configuration networks
Zero configuration networksZero configuration networks
Zero configuration networks
 
IPv6 networking training sduffy v3
IPv6 networking training   sduffy v3IPv6 networking training   sduffy v3
IPv6 networking training sduffy v3
 
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICESCENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
 
Devry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands newDevry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands new
 
Ccna interview questions
Ccna interview questionsCcna interview questions
Ccna interview questions
 
Technical presentation
Technical presentationTechnical presentation
Technical presentation
 
Devry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands newDevry gsp 215 week 7 homework networking commands new
Devry gsp 215 week 7 homework networking commands new
 
Design of a campus network
Design of a campus networkDesign of a campus network
Design of a campus network
 
66 pf sensetutorial
66 pf sensetutorial66 pf sensetutorial
66 pf sensetutorial
 

Mais de SolarWinds

SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...SolarWinds
 
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...SolarWinds
 
Government Webinar: Alerting and Reporting in the Age of Observability
Government Webinar: Alerting and Reporting in the Age of ObservabilityGovernment Webinar: Alerting and Reporting in the Age of Observability
Government Webinar: Alerting and Reporting in the Age of ObservabilitySolarWinds
 
Government and Education Webinar: Full Stack Observability
Government and Education Webinar: Full Stack ObservabilityGovernment and Education Webinar: Full Stack Observability
Government and Education Webinar: Full Stack ObservabilitySolarWinds
 
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...SolarWinds
 
Becoming Secure By Design: Questions You Should Ask Your Software Vendors
Becoming Secure By Design: Questions You Should Ask Your Software VendorsBecoming Secure By Design: Questions You Should Ask Your Software Vendors
Becoming Secure By Design: Questions You Should Ask Your Software VendorsSolarWinds
 
Government and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
Government and Education Webinar: Real-Time Mission, CIO, and Command DashboardsGovernment and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
Government and Education Webinar: Real-Time Mission, CIO, and Command DashboardsSolarWinds
 
Government and Education Webinar: Simplify Your Database Performance Manageme...
Government and Education Webinar: Simplify Your Database Performance Manageme...Government and Education Webinar: Simplify Your Database Performance Manageme...
Government and Education Webinar: Simplify Your Database Performance Manageme...SolarWinds
 
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...SolarWinds
 
Government and Education Webinar: Leverage Automation to Improve IT Operations
Government and Education Webinar: Leverage Automation to Improve IT OperationsGovernment and Education Webinar: Leverage Automation to Improve IT Operations
Government and Education Webinar: Leverage Automation to Improve IT OperationsSolarWinds
 
Government and Education Webinar: Improving Application Performance
Government and Education Webinar: Improving Application PerformanceGovernment and Education Webinar: Improving Application Performance
Government and Education Webinar: Improving Application PerformanceSolarWinds
 
Government and Education: IT Tools to Support Your Hybrid Workforce
Government and Education: IT Tools to Support Your Hybrid WorkforceGovernment and Education: IT Tools to Support Your Hybrid Workforce
Government and Education: IT Tools to Support Your Hybrid WorkforceSolarWinds
 
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...SolarWinds
 
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...SolarWinds
 
Government and Education Webinar: Zero-Trust Panel Discussion
Government and Education Webinar: Zero-Trust Panel Discussion Government and Education Webinar: Zero-Trust Panel Discussion
Government and Education Webinar: Zero-Trust Panel Discussion SolarWinds
 
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...SolarWinds
 
Government and Education Webinar: SQL Server—Advanced Performance Tuning
Government and Education Webinar: SQL Server—Advanced Performance Tuning Government and Education Webinar: SQL Server—Advanced Performance Tuning
Government and Education Webinar: SQL Server—Advanced Performance Tuning SolarWinds
 
Government and Education Webinar: Recovering IP Addresses on Your Network
Government and Education Webinar: Recovering IP Addresses on Your NetworkGovernment and Education Webinar: Recovering IP Addresses on Your Network
Government and Education Webinar: Recovering IP Addresses on Your NetworkSolarWinds
 
Government and Education Webinar: Optimize Performance With Advanced Host Mon...
Government and Education Webinar: Optimize Performance With Advanced Host Mon...Government and Education Webinar: Optimize Performance With Advanced Host Mon...
Government and Education Webinar: Optimize Performance With Advanced Host Mon...SolarWinds
 
Government and Education Webinar: Conquering Remote Work IT Challenges
Government and Education Webinar: Conquering Remote Work IT Challenges Government and Education Webinar: Conquering Remote Work IT Challenges
Government and Education Webinar: Conquering Remote Work IT Challenges SolarWinds
 

Mais de SolarWinds (20)

SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
 
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
 
Government Webinar: Alerting and Reporting in the Age of Observability
Government Webinar: Alerting and Reporting in the Age of ObservabilityGovernment Webinar: Alerting and Reporting in the Age of Observability
Government Webinar: Alerting and Reporting in the Age of Observability
 
Government and Education Webinar: Full Stack Observability
Government and Education Webinar: Full Stack ObservabilityGovernment and Education Webinar: Full Stack Observability
Government and Education Webinar: Full Stack Observability
 
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
 
Becoming Secure By Design: Questions You Should Ask Your Software Vendors
Becoming Secure By Design: Questions You Should Ask Your Software VendorsBecoming Secure By Design: Questions You Should Ask Your Software Vendors
Becoming Secure By Design: Questions You Should Ask Your Software Vendors
 
Government and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
Government and Education Webinar: Real-Time Mission, CIO, and Command DashboardsGovernment and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
Government and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
 
Government and Education Webinar: Simplify Your Database Performance Manageme...
Government and Education Webinar: Simplify Your Database Performance Manageme...Government and Education Webinar: Simplify Your Database Performance Manageme...
Government and Education Webinar: Simplify Your Database Performance Manageme...
 
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
 
Government and Education Webinar: Leverage Automation to Improve IT Operations
Government and Education Webinar: Leverage Automation to Improve IT OperationsGovernment and Education Webinar: Leverage Automation to Improve IT Operations
Government and Education Webinar: Leverage Automation to Improve IT Operations
 
Government and Education Webinar: Improving Application Performance
Government and Education Webinar: Improving Application PerformanceGovernment and Education Webinar: Improving Application Performance
Government and Education Webinar: Improving Application Performance
 
Government and Education: IT Tools to Support Your Hybrid Workforce
Government and Education: IT Tools to Support Your Hybrid WorkforceGovernment and Education: IT Tools to Support Your Hybrid Workforce
Government and Education: IT Tools to Support Your Hybrid Workforce
 
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
 
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
 
Government and Education Webinar: Zero-Trust Panel Discussion
Government and Education Webinar: Zero-Trust Panel Discussion Government and Education Webinar: Zero-Trust Panel Discussion
Government and Education Webinar: Zero-Trust Panel Discussion
 
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
 
Government and Education Webinar: SQL Server—Advanced Performance Tuning
Government and Education Webinar: SQL Server—Advanced Performance Tuning Government and Education Webinar: SQL Server—Advanced Performance Tuning
Government and Education Webinar: SQL Server—Advanced Performance Tuning
 
Government and Education Webinar: Recovering IP Addresses on Your Network
Government and Education Webinar: Recovering IP Addresses on Your NetworkGovernment and Education Webinar: Recovering IP Addresses on Your Network
Government and Education Webinar: Recovering IP Addresses on Your Network
 
Government and Education Webinar: Optimize Performance With Advanced Host Mon...
Government and Education Webinar: Optimize Performance With Advanced Host Mon...Government and Education Webinar: Optimize Performance With Advanced Host Mon...
Government and Education Webinar: Optimize Performance With Advanced Host Mon...
 
Government and Education Webinar: Conquering Remote Work IT Challenges
Government and Education Webinar: Conquering Remote Work IT Challenges Government and Education Webinar: Conquering Remote Work IT Challenges
Government and Education Webinar: Conquering Remote Work IT Challenges
 

Último

[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 

Último (20)

[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 

Network Troubleshooting - Part 2

  • 1. Network Troubleshooting and Problem Identification- Part 2 Tips for Configuration and IP Address Conflicts © 2012, SolarWinds Worldwide, LLC. All rights reserved. 1
  • 2. Agenda Troubleshooting Network Configuration & IP Address Conflicts » 1. Troubleshooting Configuration Issues » 2. Troubleshooting IP Address Conflicts » 3. Network Troubleshooting Steps » 4. Tools for Network Troubleshooting » 5. How can SolarWinds help? NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 2
  • 3. 1. Troubleshooting Configuration Issues » Reasons for more than 80% of network issues: Device configuration errors » Why? » Unplanned, unauthorized and not fully tested prior to deployment. » Keep an archive of your device configurations so that you can compare the current version to the previously archived versions NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 3
  • 4. 1 a. Configure Archive » For a Cisco router, the archive config command allows you to save your IOS configuration in the configuration archive using a standard location and filename prefix that is automatically appended with an incremental version number as each consecutive file is saved. Router# configure terminal Router(config)# archive Router(config-archive)# path disk0:myconfig » To save the current running configuration: Router# archive config NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 4
  • 5. 1 b. Show Archive » The show archive command displays information on the files saved in the configuration archive as shown in the following sample output: Router# show archive There are currently 1 archive configurations saved. The next archive file will be named disk0:myconfig-2 Archive # Name 0 1 disk0:myconfig-1 <- Most Recent 2 » Assuming that you have a config archive, you can perform a line-by-line comparison of any two configuration files and generate a list of the differences between them using the show archive config differences command. show archive config differences[filename1(path)[filename2(path)][ignorecase]] NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 5
  • 6. 1 b. Show Archive (Contd.) » A plus symbol (+) indicates that the configuration line exists in filename2(path) but not in filename1(path) while a minus symbol (-) indicates that the configuration line exists in filename1(path) but not in filename2(path). » An exclamation point (!) with descriptive comments is used to identify order- sensitive configuration lines whose location is different in filename1(path) than in filename2(path). +ip subnet-zero +ip name-server 10.4.4.4 +voice dnis-map 1 +dnis 111 interface Ethernet1/0 +no ip address +shutdown +ip default-gateway 10.5.5.5 +ip classless +access-list 110 deny ip any host 10.1.1.1 +access-list 110 deny ip any host 10.1.1.2 +access-list 110 deny ip any host 10.1.1.3 +snmp-server community private RW -no ip subnet-zero interface Ethernet1/0 -ip address 10.7.7.7 255.0.0.0 -no ip classless -snmp-server community public RO NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 6
  • 7. 1 b. Show Archive (Contd.) » Once you determine that a config has changed, its easy to replace the current running config with any saved config file using the configure replace command. Router# configure replace disk0:myconfig This will apply all necessary additions and deletions to replace the current running configuration with the contents of the specified configuration file, which is assumed to be a complete configuration, not a partial configuration. Enter Y if you are sure you want to proceed. ? [no]: Y Total number of passes: 1 Rollback Done NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 7
  • 8. 2. Troubleshooting IP Address Conflicts » IP address conflicts occur when two devices on a network are assigned the same IP address resulting in one or both being disabled and losing connectivity until the conflict is resolved. » IP address conflicts mostly occur due to configuration errors including: • Assignment of the same static IP address by a network administrator • Assignment of a static IP address within the DHCP range (dynamic range) resulting in the same address being automatically assigned by the local DHCP server • An error in the DHCP server • A system coming back online after an extended period in stand-by or hibernate mode with an IP address that has been re-assigned and is in use on the network NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 8
  • 9. 2. Troubleshooting IP Address Conflicts Step 1 (Contd.) » Look For Overlapping IP Address Ranges on Your DHCP Server  Verify that no two servers have overlapping IP address ranges.  This can be as simple as comparing the IP address ranges and looking for overlaps when the servers are using dynamic or automatic allocation of IP addresses.  If they are using static allocation, then you will need to review each hard coded IP address assignment. 9
  • 10. 2. Troubleshooting IP Address Conflicts Step 2 (Contd.) » Look for Duplicate Static IP Addresses  Look for devices on the network segment that have been statically configured with the duplicate IP address.  Once found, you can either reconfigure the device to use DHCP or you can configure the DHCP server to stop assigning the duplicated IP address. NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 10
  • 11. 2. Troubleshooting IP Address Conflicts Step 3 (Contd.) » If steps 1 and 2 do not produce results, you will need to find the MAC addresses of the conflicting devices. » Since the MAC address is unique for each device on the network, you can look for devices that contain the same IP address but with different MAC addresses. » You can use the Address Resolution Protocol (ARP) to establish a correspondence between the IP address and the MAC address. Start at your core router and use the show ip arp command: » If you were to see two IP addresses with differing hardware addresses then you have located your problem devices. NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 11
  • 12. 2. Troubleshooting IP Address Conflicts Step 4 (Contd.) » To know the physical location or switch port, go to the switch and use the show mac-address table command. This will show you the MAC address for each port. » This can be very tedious in the case of geographically distributed networks. NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 12
  • 13. 2. Troubleshooting IP Address Conflicts (Contd.) » SolarWinds User Device Tracker is a device tracking and switch port management tool that quickly locates a device on the network by searching on the IP address, Hostname or MAC address. NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 13
  • 14. 2 a. Preventing conflicts in the Future » Some tips to prevent future conflicts  Use DHCP to reduce the chances of manually assigning duplicate addresses.  Set your DHCP server to detect IP address conflicts.  Modify the DHCP lease duration to something less than the default lease time of 8 days.  Use multiple DHCP servers, each having it own specific scope.  Reserve IP addresses instead of assigning static IP addresses.  Use automated DHCP, DNS, and IP address management and monitoring tools » Despite these preventive measures, the possibility that IP conflicts occurring still remains » It is better to evaluate a commercially available IP address management product that allows you to centrally manage, monitor, alert, and report on your IP infrastructure. NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 14
  • 15. 3. Network Troubleshooting Steps » Identify the symptoms – document the symptoms » Identify the scope of the problem – geographic, demographic, or chronological » Determine if anything has changed on the network – has there been a hardware or software change? » Determine the most probable cause of the problem – no, it’s not always the user » Implement solution » Test the solution » Document the solution And….Don’t forget to check the cables! NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 15
  • 16. 4. Tools for Network Troubleshooting » There are hundreds of open source, free, or commercially licensed products available to monitor and troubleshoot network performance, traffic and bandwidth, configurations, and IP infrastructure. » Here are some guidelines to pick the right tool:  Multiple Vendor device support  Support for multiple standard protocols including SNMP, ICMP, Syslog, and others.  Real-time and historical analysis capabilities  Vizualizations accessible from anywhere  Drill-down support  Affordability NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 16
  • 17. 3. How SolarWinds can help? » SolarWinds award-winning network management software makes it easy to:  Discover and map network devices  Monitor network performance  Analyze network traffic  Manage and back up network configurations  Track IP addresses  Find rogue devices, and much more. NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 17
  • 18. 3 a. SolarWinds Network Configuration Manager » SolarWinds Network Configuration Manager (NCM) keeps you ahead of network issues with immediate visibility into the cause and effect relationship between configuration errors and network performance. • Enables bulk configuration, community string, ACL, & MAC address changes • Automates network configuration backups & compliance reporting • Detects & reports on configuration policy violations & delivers real-time alerts Protect against unauthorized, unscheduled, or erroneous config changes • Automatically discovers SNMP- enabled network devices & typically deploys in less than an hour NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 18
  • 19. 3 b. SolarWinds IP Address Manager » SolarWinds IP Address Manager (IPAM) enables you and your team to ditch your spreadsheets for an easy-to-use, centralized IP address monitoring and management solution • Centrally manage, alert, & report on your IP address space • Manage & monitor Microsoft DHCP/DNS services & monitor Cisco DHCP servers • Delivers role-based access & control from an intuitive web based interface • Alert notifications help prevent your subnets & DHCP scopes from filling up • Automatically discovers used & unused addresses & typically deploys in less than an hour NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 19
  • 20. 3 b. SolarWinds User Device Tracker » SolarWinds User Device Tracker enables you to quickly find devices on your network, create device watch lists, map switch ports and track switch capacity. • Track user and device locations by MAC address, IP address, or Hostname • Map and monitor switches by ports used, CPU load, memory used and more • Receive immediate alerts when a specified device connects to the network NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 20
  • 21. Helpful Resources We invite you to learn more about SolarWinds Network Management Software Watch the IP Address Manager Overview Video Explore the FEATURES of SolarWinds IPAM • No more spreadsheets • Centralized IP Address Management --- Click any of the links above --- NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 21
  • 22. Thank You! NETWORK TROUBLESHOOTING AND PROBLEM IDENTIFICATION 22