SlideShare une entreprise Scribd logo
1  sur  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

Contenu connexe

Tendances

Virtual Extensible LAN (VXLAN)
Virtual Extensible LAN (VXLAN)Virtual Extensible LAN (VXLAN)
Virtual Extensible LAN (VXLAN)KHNOG
 
CCNA training 101
CCNA training 101CCNA training 101
CCNA training 101Rohan Reddy
 
Network Address Translation (NAT)
Network Address Translation (NAT)Network Address Translation (NAT)
Network Address Translation (NAT)Joud Khattab
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPTAIRTEL
 
Ccna ppt1
Ccna ppt1Ccna ppt1
Ccna ppt1AIRTEL
 
Network Monitoring Basics
Network Monitoring BasicsNetwork Monitoring Basics
Network Monitoring BasicsRob Dunn
 
ROUTER PPT
ROUTER PPTROUTER PPT
ROUTER PPTJw Media
 
Access Control List (ACL)
Access Control List (ACL)Access Control List (ACL)
Access Control List (ACL)ISMT College
 
Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)DH Da Lat
 
Troubleshooting Network and Network Utilities
Troubleshooting Network and Network UtilitiesTroubleshooting Network and Network Utilities
Troubleshooting Network and Network UtilitiesRubal Sagwal
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationDsunte Wilson
 
Introduction to Network and System Administration
Introduction to Network and System AdministrationIntroduction to Network and System Administration
Introduction to Network and System AdministrationDuressa Teshome
 

Tendances (20)

Virtual Extensible LAN (VXLAN)
Virtual Extensible LAN (VXLAN)Virtual Extensible LAN (VXLAN)
Virtual Extensible LAN (VXLAN)
 
CCNA training 101
CCNA training 101CCNA training 101
CCNA training 101
 
Network Address Translation (NAT)
Network Address Translation (NAT)Network Address Translation (NAT)
Network Address Translation (NAT)
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPT
 
Ccna ppt1
Ccna ppt1Ccna ppt1
Ccna ppt1
 
Mikrotik Tutorial
Mikrotik TutorialMikrotik Tutorial
Mikrotik Tutorial
 
Dhcp ppt
Dhcp pptDhcp ppt
Dhcp ppt
 
Network Monitoring Basics
Network Monitoring BasicsNetwork Monitoring Basics
Network Monitoring Basics
 
acl configuration
acl configurationacl configuration
acl configuration
 
ROUTER PPT
ROUTER PPTROUTER PPT
ROUTER PPT
 
Access Control List (ACL)
Access Control List (ACL)Access Control List (ACL)
Access Control List (ACL)
 
Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)
 
VXLAN Practice Guide
VXLAN Practice GuideVXLAN Practice Guide
VXLAN Practice Guide
 
Troubleshooting Network and Network Utilities
Troubleshooting Network and Network UtilitiesTroubleshooting Network and Network Utilities
Troubleshooting Network and Network Utilities
 
Ppt of routing protocols
Ppt of routing protocolsPpt of routing protocols
Ppt of routing protocols
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch Configuration
 
CCNA ppt
CCNA pptCCNA ppt
CCNA ppt
 
Ccna
CcnaCcna
Ccna
 
Chapter 10 - DHCP
Chapter 10 - DHCPChapter 10 - DHCP
Chapter 10 - DHCP
 
Introduction to Network and System Administration
Introduction to Network and System AdministrationIntroduction to Network and System Administration
Introduction to Network and System Administration
 

En vedette

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
 

En vedette (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
 

Similaire à 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
 

Similaire à 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
 

Plus 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
 

Plus 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
 

Dernier

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Dernier (20)

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 

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