CISCO实验记录十:switch基本配置】的更多相关文章

1.交换机IP配置 2.配置telnet 1.交换机IP配置 #interface vlan 1 #ip address 192.168.0.3 255.255.255.0 #no shutdown #exit #ip default-gateway 192.168.0.2 2.配置telnet…
1.启用交换机端口安全 2.限制端口最大访问量为1,超出后关闭端口 1.启用交换机端口安全 #interface gigabitEthernet 0/1 #switchport mode access #switchport port-security #switchport port-security mac-address 1111.1111.1111 //以后就只有这个mac地址能接这个端口 #switchport port-security violation shutdown //发生…
一.路由器基本配置要求 1.设置路由器名为:hehe 2.设置特权模式下password为ccna,secret为ccnp,vty线路密码为ccie 3.所有明文密码都加密 二.路由器基本配置命令 1.设置路由器名为:hehe Router#configure terminal //进入配置模式 Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname hehe //设置hostnam…
一.EIGRP的基本配置 1(1).进入接口配置IP R1(config)#inter s1/0 R1(config-if)#ip address 200.1.1.1 255.255.255.0 R1(config-if)#no shut 1(2).配置环回地址 R1(config)#inter lo 1 R1(config-if)#ip add 1.1.1.1 255.255.255.0 2(1).路由器2同理配置 R2(config)#inter s1/0 R2(config-if)#ip…
之前学了,配置bean可以用普通全类名配置.用工厂方法配置,FactoryBean又是什么呢 有时候配置bean要用到,IOC其他Bean,这时,用FactoryBean配置最合适. FactoryBean是一个接口,要用的话就要实现它.他有三个方法: getObject()  //返回bean对象 getObjectType()  //返回bean的类型  isSingleton()   //是否单例 弄个例子: Car类 package com.guigu.spring.factorybea…
1.静态NAT地址转换 #ip nat inside source static 192.168.12.1 192.168.23.4 //将12.1转为23.4 必须精确到主机IP 而不能是某个网段 #interface gigabitEthernet 0/0/0 //端口0做nat in #ip nat inside #interface gigabitEthernet 0/0/1 //端口1做nat out #ip nat outside #debug ip nat //开启natdebug…
一.实验要求 1.创建设备间静态路由 2.检查三层连通性 3.清空路由,使用RIP创建动态路由 4.检查路由表 二.实验操作 1.创建设备静态路由 #iip route 192.168.1.0 255.255.255.0 192.168.2.1 192.168.1.0 目标网段 192.168.2.1 下一条地址 2.查看路由表 #show ip route 3.检查三层连通性 #ping 192.168.1.1 4.创建默认路由 #ip route 0.0.0.0 0.0.0.0 192.16…
1.配置好TFTP服务器(假设ip为192.168.2.1) 2.查看当前IOS名称 #show version 输出中有一段:System image file is "bootflash:/isr4300-universalk9.03.16.05.S.155-3.S5-ext.SPA.bin" IOS名称即为:isr4300-universalk9.03.16.05.S.155-3.S5-ext.SPA.bin 3.复制IOS到TFTP #copy flash: tftp: //分…
一.CDP邻居发现要求 1.识别二层连接 2.识别CDP邻居 二.CDP邻居发现操作 1.CDP邻居发现 #interface gigabitEthernet 0/0/0 //启动端口 #no shutdown #show ip interface brief //查看路由端口状态(设备二层连接情况) GigabitEthernet0/0/0 unassigned YES manual up up GigabitEthernet0/0/1 unassigned YES unset adminis…
一.路由器基本操作要求 1.设置路由器本地时间 2.启用光标跟随 3.设置路由器标语信息和描述信息 4.为接口配置描述信息 5.快速恢复接口到出厂设置 二.路由器基本操作命令 1.设置路由器本地时间 hehe#clock set 15:38:0 13 aug 2019 //设置时间 hehe#show clock //查看时间 15:38:3.608 UTC Tue Aug 13 2019 2.启用光标跟随 hehe(config)#line console 0 //设置console界面 he…