多平台统一管理软件接口,如何实现多平台统一管理软件接口
234
2022-09-25
CCNA学习-路由交换-接口的简单配置(ccna路由和交换考试答案)
接口配置是最重要的路由器配置之一,因为若没有接口,路由器几乎就毫无用处。另外,要与其他设备通信,接口配置必须绝对精确。配置接口时,我们需要指定网络层地址、介质类型和带宽,还需使用其他管理命令。
启用接口
要禁用接口,我们可使用接口配置命令 shutdown; 要启用接口,我们可使用命令 no shutdown 。如果接口被禁用,则在命令 show interfaces (简写为 sh int) 的输出中,该接口显示为管理性关闭 (down ):
Todd#sh int f0/1 FastEthernet0/1 is administratively down , line protocol is down [output cut]
另一种检查接口状态的方式是使用命令 show running-config。默认情况下,所有接口都被禁用。要启用接口,我们可使用命令 no shutdown (简写为 no shut):
Todd#config t Todd(config)#int f0/1 Todd(config-if)#no shutdown Todd(config-if)# * July 17 15:05:08.455: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up Todd(config-if)#do show int f0/1 FastEthernet0/1 is up , line protocol is up [output cut]
给接口配置IP地址
接口模式下使用命令 ip address:
Todd(config)#int f0/1 Todd(config-if)#ip address 172.16.10.2 255.255.255.0 Todd(config-if)#no shutdown
别忘了使用命令 no shutdown 启用接口。别忘了查看命令 show interface int 的输出,看接口是否被管理性关闭。命令 show running-config 也提供这种信息。/n
接口添加辅助IP地址:
如果要给接口配置第二个地址,就需要使用命令 secondary :
Todd(config-if)#ip address 172.16.20.2 255.255.255.0 secondary Todd(config-if)#^Z Todd(config-if)#do sh run Building configuration... [output cut] interface FastEthernet0/1 ip address 172.16.20.2 255.255.255.0 secondary ip address 172.16.10.2 255.255.255.0 duplex auto speed auto !
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~