思科无线路由器配置(cisco路由器常用配置命令(建议收藏))

Posted

篇首语:人生于世,委屈在所难免,消化了就是成长的动力,消化不了就会变成脾气。本文由小常识网(cha138.com)小编为大家整理,主要介绍了思科无线路由器配置(cisco路由器常用配置命令(建议收藏))相关的知识,希望对你有一定的参考价值。

思科无线路由器配置(cisco路由器常用配置命令(建议收藏))

cisco路由器常用配置命令(建议收藏)

1,路由器口令设置:

router>enable 进入特权模式router#config terminal 进入全局配置模式router(config)#hostname 设置交换机的主机名router(config)#enable secret xxx 设置特权加密口令router(config)#enable password xxb 设置特权非密口令router(config)#line console 0 进入控制台口router(config-line)#line vty 0 4 进入虚拟终端router(config-line)#login 要求口令验证router(config-line)#password xx 设置登录口令xxrouter(config)#(Ctrl+z) 返回特权模式router#exit 返回命令

2,路由器配置:

router(config)#int s0/0 进入Serail接口router(config-if)#no shutdown 激活当前接口router(config-if)#clock rate 64000 设置同步时钟router(config-if)#ip address 设置IP地址router(config-if)#ip address second 设置第二个IProuter(config-if)#int f0/0.1 进入子接口router(config-subif.1)#ip address 设置子接口IProuter(config-subif.1)#encapsulation dot1q 绑定vlan中继协议router(config)#config-register 0x2142 跳过配置文件router(config)#config-register 0x2102 正常使用配置文件router#reload 重新引导

3,路由器文件操作:

router#copy running-config startup-config 保存配置router#copy running-config tftp 保存配置到tftprouter#copy startup-config tftp 开机配置存到tftprouter#copy tftp flash: 下传文件到flashrouter#copy tftp startup-config 下载配置文件ROM状态:Ctrl+Break 进入ROM监控状态rommon>confreg 0x2142 跳过配置文件rommon>confreg 0x2102 恢复配置文件rommon>reset 重新引导rommon>copy xmodem: flash: 从console传输文件rommon>IP_ADDRESS=10.65.1.2 设置路由器IPrommon>IP_SUBNET_MASK=255.255.0.0 设置路由器掩码rommon>TFTP_SERVER=10.65.1.1 指定TFTP服务器IPrommon>TFTP_FILE=c2600.bin 指定下载的文件rommon>tftpdnld 从tftp下载rommon>dir flash: 查看闪存内容rommon>boot 引导IOS

4,静态路由:

ip route 命令格式router(config)#ip route 2.0.0.0 255.0.0.0 1.1.1.2 静态路由举例router(config)#ip route 0.0.0.0 0.0.0.0 1.1.1.2 默认路由举例

5,动态路由:

router(config)#ip routing 启动路由转发router(config)#router rip 启动RIP路由协议。router(config-router)#network 设置发布路由router(config-router)#negihbor 点对点帧中继用。

6,帧中继命令:

router(config)#frame-relay switching 使能帧中继交换router(config-s0)#encapsulation frame-relay 使能帧中继router(config-s0)#fram-relay lmi-type cisco 设置管理类型router(config-s0)#frame-relay intf-type DCE 设置为DCErouter(config-s0)#frame-relay dlci 16 router(config-s0)#frame-relay local-dlci 20 设置虚电路号router(config-s0)#frame-relay interface-dlci 16 router(config)#log-adjacency-changes 记录邻接变化router(config)#int s0/0.1 point-to-point 设置子接口点对点router#show frame pvc 显示永久虚电路router#show frame map 显示映射

7,基本访问控制列表:

router(config)#access-list permit|deny router(config)#interface ;default:deny anyrouter(config-if)#ip access-group in|out ;defaultut例1:router(config)#access-list 1 deny host 10.65.1.1router(config)#access-list 1 permit anyrouter(config)#int f0/0router(config-if)#ip access-group 4 in例2:router(config)#access-list 4 permit 10.8.1.1router(config)#access-list 4 deny 10.8.1.0 0.0.0.255router(config)#access-list 4 permit 10.8.0.0 0.0.255.255router(config)#access-list 4 deny 10.0.0.0 0.255.255.255router(config)#access-list 4 permit anyrouter(config)#int f0/1router(config-if)#ip access-group 4 in扩展访问控制列表:access-list permit|deny icmp [type]access-list permit|deny tcp [port]例1:router(config)#access-list 101 deny icmp any 10.64.0.2 0.0.0.0 echorouter(config)#access-list 101 permit ip any anyrouter(config)#int s0/0router(config-if)#ip access-group 101 in例2:router(config)#access-list 102 deny tcp any 10.65.0.2 0.0.0.0 eq 80router(config)#access-list 102 permit ip any anyrouter(config)#interface s0/1router(config-if)#ip access-group 102 out删除访问控制例表:router(config)#no access-list 102router(config-if)#no ip access-group 101 in路由器的nat配置Router(config-if)#ip nat inside 当前接口指定为内部接口Router(config-if)#ip nat outside 当前接口指定为外部接口Router(config)#ip nat inside source static [p] <私有IP><公网IP> [port]Router(config)#ip nat inside source static 10.65.1.2 60.1.1.1Router(config)#ip nat inside source static tcp 10.65.1.3 80 60.1.1.1 80Router(config)#ip nat pool p1 60.1.1.1 60.1.1.20 255.255.255.0Router(config)#ip nat inside source list 1 pool p1Router(config)#ip nat inside destination list 2 pool p2Router(config)#ip nat inside source list 2 interface s0/0 overloadRouter(config)#ip nat pool p2 10.65.1.2 10.65.1.4 255.255.255.0 type rotaryRouter#show ip nat translationrotary 参数是轮流的意思,地址池中的IP轮流与NAT分配的地址匹配。overload参数用于PAT 将内部IP映射到一个公网IP不同的端口上。外部网关协议配置routerA(config)#router bgp 100routerA(config-router)#network 19.0.0.0routerA(config-router)#neighbor 8.1.1.2 remote-as 200配置PPP验证:RouterA(config)#username password RouterA(config)#int s0RouterA(config-if)#ppp authentication chap|pap

8,路由器子接口封装为8021Q (补充)

Encapsulation dot1q 2 封装类型设置为 802.1Q,2是子接口号标识,这里是示范,可以随意设置。

相关参考

思科交换机删除路由命(cisco交换机查看配置及日常维护命令)

...,经过密码验证后进入XXX#模式,这里的#代表特权模式,思科设备默认没有enable密码,此模式下可以使用show命令查看交换机的运行状态等信息。3、全局配置模式管理员在如果需要对设备进行配置,例如增加Vlan、修改网关、划

思科无线路由器设置(在Cisco路由器中配置DHCP服务器)

配置以太口地址:InterfaceEthernet0\\\\进入以太网口配置模式Noshut\\\\启动以太网口Ipaddress192.168.2.1255.255.255.0\\\\设定IP地址与子网掩码ipaddress192.168.1.1255.255.255.0secondary\\\\设定第二地址与子网掩码ipnatoutside\\\\设定该端口为出口ipdhcppoolv...

思科无线路由器设置图解(在Cisco路由器中配置DHCP服务器)

配置以太口地址:InterfaceEthernet0\\\\进入以太网口配置模式Noshut\\\\启动以太网口Ipaddress192.168.2.1255.255.255.0\\\\设定IP地址与子网掩码ipaddress192.168.1.1255.255.255.0secondary\\\\设定第二地址与子网掩码ipnatoutside\\\\设定该端口为出口ipdhcppoolv...

思科2811路由器接口类(Cisco 基于应用的策略路由配置)

...于应用的策略路由的配置方法。实验环境1、Cisco思科2811路由器2台;实验参考拓扑实验内容例:该公司有两条上网的线路,并有两种应用:HTTP和Telnet,为了保证Telnet线路的稳定性,对网络进行应用区别,一种应用使用一条线路。...

思科路由器设置图解(简单拨号网络的配置PPPOE+DHCP+NAT配置——CISCO篇)

实验拓扑拓扑说明:R1模拟营运商PPPOEServer路由器R2模拟用户PPPOEClient路由器实验要求:R1配置PPPOE认证方式为CHAP,账号密码均为ciscoR2通过PPPOE拨号链接ISP,并作为DHCPServer为PC分配地址在R2进行NAT转换,使PC可以访问外网配置清单:1...

思科交换机设置静态路由(学习时间到Cisco 静态路由配置)

1。静态路由:是指用户或网络管理员手工配置的路由信息。当网络拓扑结构或链路状态发生改变时,需要网络管理员手工配置静态路由信息。相比较动态路由协议,静态路由无需频繁的交换各自的路由表,配置简单,比较适合...

思科交换机配置命令大全(cisco交换机常用配置命令)

...交换机的配置,理解这篇,交换机配置不再难,这篇是以思科交换机为配置基础,有部分朋友觉得有些难度,希望我们发些基础些的内容,本期我们就一起来看下思科的基础配置。思科交换机的基本配置一、基本配置switch>enabl...

思科 无线路由(思科路由器口令:启用和加密)

Cisco路由器上可以配置多种类型的口令,例如使能口令、Telnet和SSH连接的加密口令以及控制台端口,所有这些密码位置都代表密码的良好访问位置,但如果您只在一个访问位置上有一个密码,则至少应该有一个启用密码。如果您...

查看路由器接口信息的命令是(「思科网络实验001例」配置接口IPv4地址并查看状态信息)

实验目标学习并掌握在思科路由器上配置IPv4地址,使用ping命令测试连通性。实验难度★★☆☆☆☆☆☆☆实验拓扑实验任务任务1:配置两台路由器的主机名。任务2:配置路由器接口的IP地址。任务3:使用合适的命令检查以下...

思科三层交换机静态路由配置命令(软考之网络工程师考试知识点)

...情况,甘特图不能清晰描述各个问题之间的依赖关系5、路由器出厂时,默认的串口封装协议是HDLC6、报文摘要算法生成报文摘要的目的是防止发送的报文被篡改7、PGP是支持电子邮件加密的协议8、根域名服务器采用的迭代查询,...