12、管理网络环境

2022-01-05 16:14:47 浏览数 (1)

一、在网络中发现邻居

1、Cisco 发现协议(CDP)

CDP是一个专有的使用工具,他可以告诉你当前直连的Cisco的路由器交换机和一些其他的Cisco设备的综合信息。不论这些设备上运行着什么协议,CD都可以发现他们。

2、通过CDP发现邻居

CDP只能运行在Cisco设备上,IOS版本在10.3或以上版本

汇总信息包括

Device identifiers       

Address list            

Port identifiers             

Capabilities list

Platform

3、实验

3.1拓扑图

3.2、cdp概述信息

Router#show cdp

Global CDP information:

    Sending CDP packets every 60 seconds                    每过60秒发送一次cdp信息

    Sending a holdtime value of 180 seconds                 超过180s没有接到对方cdp信息,就将对应的信息删除

    Sending CDPv2 advertisements is enabled                 版本信息

3.3查看链接信息

Router#show cdp neighbors     查看当前链接了那些设备

Router#show cdp neighbors 

Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge

                  S - Switch, H - Host, I - IGMP, r - Repeater, P - Phone

Device ID    Local Intrfce   Holdtme    Capability   Platform    Port ID

Router       Ser 0/3/0        141            R       C2800       Ser 0/3/0

Router       Ser 0/3/1        144            R       C2800       Ser 0/3/1

Holdtme:一般在120以上,当等于0时将删除这个设备信息

show cdp interface  所有端口CDP的信息

Vlan1 is administratively down, line protocol is down

  Sending CDP packets every 60 seconds

  Holdtime is 180 seconds

FastEthernet0/0 is administratively down, line protocol is down

  Sending CDP packets every 60 seconds

  Holdtime is 180 seconds

FastEthernet0/1 is administratively down, line protocol is down

  Sending CDP packets every 60 seconds

  Holdtime is 180 seconds

Serial0/3/0 is up, line protocol is up

  Sending CDP packets every 60 seconds

  Holdtime is 180 seconds

Serial0/3/1 is down, line protocol is down

  Sending CDP packets every 60 seconds

  Holdtime is 180 seconds

show cdp entry *        查看所有邻居的详细信息,和Router#show cdp  neighbors detail 显示信息完全一样

Router#show cdp entry * ?

  protocol  Protocol information            邻居IP地址

  version   Version information             邻居IOS的版本

4、开启关闭cdp

Router(config)#cdp run                 全局开启cdp

Router(config)#no cdp run              全局关闭cdp

Router(config)#interface fastEthernet 0/1

Router(config-if)#cdp enable                         开启单个接口cdp

Router(config-if)#no cdp enable                      关闭单个接口cdp

二、使用Telnet链接远程设备

1、概述

远程链接管理软件,工作在应用层,端口23。如果没有设置Telnet密码,默认无法使用Telnet链接。如果没有enable模式密码的话,无法切换到特权模式

2、

Router#configure terminal 

Router(config)#line vty 0 15

Router(config-line)#password 123456

Router(config-line)#login 

Router(config)#enable password 123456

Router(config-line)#no login                 匿名登录

Router#Ctrl Shift 6                同时Telnet多台设备

Router#show sessions               检查Telnet链接

Router#show users                  检查Telnet用户

Router#clear line 66               踢人66为线程号,show users查看线程号

Router#disconnect                  Telnet后使用Ctrl Shift 6切出后,断开Telnet链接(同链接时使用exit退出)

Router(config)#ip host R1 192.168.2.1             建立主机表

Router(config)#no ip host R1                      删除主机表

Router(config)#no ip domain-lookup                禁止DNS域名解析

Router#R1                                         Telnet R1 直接输入IP默认Telnet

0 人点赞