导航:首页 > 程序命令 > 思科路由器配置命令

思科路由器配置命令

发布时间:2022-02-06 21:26:27

A. 在cisco路由器上设置TELNET的命令

在cisco路由器上设置TELNET的命令的操作方法和步骤如下:

1、第一步,在思科软件中放置两个路由器。
然后在路由器下方输入名称和IP地址,如下图所示,然后进入下一步。

B. 思科2800路由器上网配置命令

Router(config)#interface Ethernet0/0 内网
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#ip nat inside
Router(config)#interface Ethernet0/1 外网
Router(config-if)#ip address 192.168.0.6 255.255.255.0
Router(config-if)#ip nat outside

Router(config)#ip nat pool word 192.168.0.6 192.168.0.6 netmask 255.255.255.0
Router(config)#ip nat inside source list 1 pool word overload
Router(config)#access-list 1 permit 192.168.1.0 0.0.0.255
Router(config)#ip dhcp pool work 内网dhcp
Router(dhcp-config)# network 192.168.1.0 255.255.255.0
Router(dhcp-config)# default-router 192.168.1.1

C. 思科路由器基础配置命令

基础配置命令如下
一、1.router(config)#router rip 启动rip进程
2.router(conifg-router)#network 172.17.0.0指定rip协议的主网络
3.router(config-router)#passive-interface f0/1把f0/1配置成passive端口
4.router(config-router)#neighbor 172.17.12.67 以单波方式通告rip更新给路由器
5.router(config-if)#ip address 192.168.83.244 255.255.255.0 主ip地址
router(config-if)#ip address 10.33.55.1 255.255.255.0 secondary辅助ip地址
二、1.router(config-router)#version 2将rip配置成版本2
2.router(config-ip)#ip rip send version 1只发rip 1数据包
router(config-ip)#ip rip receive version 2只接收rip 2数据包
3.router(config-router)#no auto-summary 关闭汇总功能
4.router(config-if)#no ip split-horizon关闭水平分割
5.router#show ip ospf database router 192.168.30.10显示路由器LSA通告
router#show ip ospf database network 192.168.17.18显示网络LSA通告
router#show ip ospf database summary 172.16.121.0显示网络汇总LSA通告
router#show ip ospf database asbr-summary显示ASBR汇总LSA通告
router#show ip ospf database external 10.83.10.0显示自主系统外部LSA通告
router#show ip ospf database nssa-external显示NSSA外部LSA通告
三、1.router(config)#router ospf 10配置ospf进程id
2.router(config)#interface loopback0
router(config-if)#ip address 192.168.10.1 255.255.255.0配置loopback0接口
3.router(config-router)#area 1 stub 配置stub区域
4.router(config-router)#area 1 stub no-summary配置totally stubby区域
5.router(config-router)#area 1 nssa配置nssa区域
6.router(config-router)#area 25 range 172.16.0.0 255.240.0.0 配置地址汇总
7.router(config-router)#area 100 virtual-link 192.168.100.33 配置虚链路
四、1.router(config)#standby 172 ip 172.16.10.254加入备份组172 指定虚拟IP 地址
2.router(config-if)#standby 47 priority 150配置HSRP的优先级150
3.router(config-if)#standby 47 preempt 配置HSRP的占先权
4.router(config-if)#standby 47 ip time 2 9 2表示HELLO时间,9表示保持时间
5.router(config)#interface s0
6.router(config-if)#standby 47 track s0 100配置跟踪端口s0并在端口down时减少100
7.router#show standby brief 查看HSRP的状态
8.router#no debuge all关闭调试功能
五、1.router(config-if)#ip access-group 1 in 访问列表的入
router(config-if)#ip access-group 1 out访问列表的出
2.router(config)#access-list 1 premit 192.168.10.0 0.0.0.255 允许192.168.10.0的网段通过
router(config)#access-list 1 deny 192.168.10.0 2.0.0.255 拒绝192.168.10.2的主机通过
3.router(config)#access-list 1 premit any ;any表示0.0.0.0 255.255.255.255
router(config)#access-list 1 premit host 172.30.16.29 ;host表示0.0.0.0
4.router(config)#access-list 101 deny tcp 172.16.4.0 0.0.0.255 172.16.3.0 0.0.0.255 eq 21拒绝来自172.16.4.0去往172.16.3.0的FTP流量
5.router(config)#ip access-list extended cisco创建名为cisco的命名访问控制列表
六、静态地址转换1.配置外部端口的IP地址
Router(config)#interface s0
Router(config-if)#ip address 61.159.62.129 255.255.255.248
2.配置内部端口的IP地址
Router(config)#interface e0
Router(config-if)#ip address 192.168.100.1 255.255.255.0
3.静态地址转换
Router(config)#ip nat inside source static 192.168.100.2 61.159.62.130
4.在内部和外部端口上启用NAT
Router(config)#interafce s0
Router(config-if)#ip nat outside
Router(config)#interafce e0
Router(config-if)#ip nat inside
七、动态NAT配置1.配置外部端口的IP地址
Router(config)#interface s0
Router(config-if)#ip address 61.159.62.129 255.255.255.248
2.配置内部端口的IP地址
Router(config)#interface e0
Router(config-if)#ip address 192.168.100.1 255.255.255.0
3.定义内部网络允许访问外部网络
Router(config)#access-list 1 permit 192.168.100.0 0.0.0.255
4.定义合法的IP地址池
Router(config)#ip nat pool chen 61.159.62.129 61.159.62.190 netmask 255.255.255.248
5.实现网络地址转换
Router(config)#ip nat inside source list 1 pool chen
6.在内部和外部端口上启用NAT
Router(config)#interafce s0
Router(config-if)#ip nat outside
Router(config)#interafce e0
Router(config-if)#ip nat inside
八、PAT的配置1.配置外部端口的IP地址
Router(config)#interface s0
Router(config-if)#ip address 61.159.62.129 255.255.255.248
2.配置内部端口的IP地址
Router(config)#interface e0
Router(config-if)#ip address 192.168.100.1 255.255.255.0
3.定义内部网络允许访问外部网络
Router(config)#access-list 1 permit 192.168.100.0 0.0.0.255
4.定义合法的IP地址池
Router(config)#ip nat pool chen 61.159.62.129 61.159.62.190 netmask 255.255.255.248
5.实现复用IP地址转换
Router(config)#ip nat inside source list 1 pool chen overload
6.在内部和外部端口上启用NAT
Router(config)#interafce s0
Router(config-if)#ip nat outside
Router(config)#interafce e0
Router(config-if)#ip nat inside

D. 思科路由器配置命令

enable 只能查看基本情况 使用命令 SHOW
configure terminal 在这个模式下去做你需要的配置命令 别如
line con 0
int fastetehernet 0/0 ……
很多
这个需要去参考配置手册

E. 思科路由器的详细配置命令是什么

网上找的不知可以用不:
PPPOE加NAT,里面还有静态 默认路由,IPSEC vpn等等,这个你出去调试还是经常会用到了,希望你喜欢!

RI

R1#sh run
Building configuration...

Current configuration : 1535 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
ip cef
!
!
no ip domain lookup
!
ip audit po max-events 100
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
crypto isakmp policy 10 策略
hash md5
authentication pre-share 验证
group 2
crypto isakmp key cisco address 23.1.1.2 配置钥匙
!
!
crypto ipsec transform-set cisco esp-des esp-md5-hmac ipsec组件 的设置
!
crypto map cisco 10 ipsec-isakmp map把上面的所有策略集合起来
set peer 23.1.1.2
set transform-set cisco
match address 100
!
!
!
!
interface Loopback0
description ---to vpn---
ip address 192.168.2.1 255.255.255.0
ip nat inside
!
interface Loopback1
description ---to internet---
ip address 192.168.4.1 255.255.255.0
ip nat inside
!
interface Ethernet0/0
no ip address
shutdown
half-plex
!
interface Serial0/0
no ip address
shutdown
!
interface Ethernet0/1
ip address 12.1.1.1 255.255.255.0
ip nat outside
half-plex
crypto map cisco 在接口上用MAP
!
interface Serial0/1
no ip address
shutdown
!
ip nat pool cisco 12.1.1.3 12.1.1.10 netmask 255.255.255.0
ip nat inside source list 101 pool cisco overload
no ip http server
no ip http secure-server
ip classless
ip route 0.0.0.0 0.0.0.0 12.1.1.2
!
!
access-list 100 permit ip 192.168.2.0 0.0.0.255 192.168.3.0 0.0.0.255
access-list 101 deny udp any eq isakmp any eq isakmp 拒绝所有源到目的含有isakmp 数据包
access-list 101 deny ip 192.168.2.0 0.0.0.255 192.168.3.0 0.0.0.255 拒绝所有2.0到3.0的ip数据包
access-list 101 permit ip any any
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
!
!
end

R2

R2#sh run
Building configuration...

Current configuration : 752 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
ip cef
!
!
no ip domain lookup
!
ip audit po max-events 100
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
description ----internet web---
ip address 202.1.1.1 255.255.255.0
!
interface Ethernet0/0
ip address 23.1.1.1 255.255.255.0
half-plex
!
interface Serial0/0
no ip address
shutdown
!
interface Ethernet0/1
ip address 12.1.1.2 255.255.255.0
half-plex
!
interface Serial0/1
no ip address
shutdown
!
no ip http server
no ip http secure-server
ip classless
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
!
!
end

R4

R4#sh run
Building configuration...

Current configuration : 1485 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R4
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
ip cef
!
!
!
ip audit po max-events 100
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
crypto isakmp policy 10
hash md5
authentication pre-share
group 2
crypto isakmp key cisco address 12.1.1.1
!
!
crypto ipsec transform-set cisco esp-des esp-md5-hmac
!
crypto map cisco 10 ipsec-isakmp
set peer 12.1.1.1
set transform-set cisco
match address 100
!
!
!
!
interface Loopback0
description ---to vpn---
ip address 192.168.3.1 255.255.255.0
ip nat inside
!
interface Loopback1
ip address 192.168.10.1 255.255.255.0
ip nat inside
!
interface Ethernet0/0
ip address 23.1.1.2 255.255.255.0
ip nat outside
half-plex
crypto map cisco
!
interface Serial0/0
no ip address
shutdown
!
interface Ethernet0/1
no ip address
shutdown
half-plex
!
interface Serial0/1
no ip address
shutdown
!
ip nat pool cisco 23.1.1.3 23.1.1.10 netmask 255.255.255.0
ip nat inside source list 101 pool cisco overload
no ip http server
no ip http secure-server
ip classless
ip route 0.0.0.0 0.0.0.0 23.1.1.1
!
!
access-list 100 permit ip 192.168.3.0 0.0.0.255 192.168.2.0 0.0.0.255
access-list 101 deny udp any eq isakmp any eq isakmp
access-list 101 deny ip 192.168.3.0 0.0.0.255 192.168.2.0 0.0.0.255
access-list 101 permit ip any any
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
!
!
end

F. 思科路由器查看配置的命令是什么

思科路由器查看配置的命令是router#show run。

路由器显示命令:

router#show interface ;显示接口信息

router#show ip route ;显示路由信息

router#show cdp nei ;显示邻居信息

router#reload ;重新起动

路由器口令设置:

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 ;设置登录口令xx

router(config)#(Ctrl+z) ; 返回特权模式

router#exit ;返回命令

(6)思科路由器配置命令扩展阅读:

路由器配置:

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 ;设置第二个IP

router(config-if)#int f0/0.1 ;进入子接口

router(config-subif.1)#ip address ;设置子接口IP

router(config-subif.1)#encapsulation dot1q ;绑定vlan中继协议

router(config)#config-register 0x2142 ;跳过配置文件

router(config)#config-register 0x2102 ;正常使用配置文件

router#reload ;重新引导

参考资料来源:Cisco-思科路由器

G. 思科路由器动态路由配置方法命令

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

H. 怎么进入思科路由器的配置

1、打开Cisco Packet Tracer模拟器。

I. CISCO路由器配置命令求教~~~

这两个口启用的是hsrp协议,即热备份路由协议,一旦主动路由器出现故障,HSRP 将激活备份路由器(Standby Routers)取代主动路由器。

interface FastEthernet0/2/1
ip address 10.34.5.2 255.255.255.0 //端口的地址和掩码配置
standby 2 ip 10.34.5.1 //在端口配置下,启用 HSRP 功能,并设置虚拟 IP 地址 ,组号为2
standby 2 preempt //置允许权值高于该hsrp组的其它路由器成为主路由器。
standby 2 track 1 decrement 10 //该设置表示如果所监测的端口出现故障,则也进行路由器的切换。可以跟踪多外端口

-----------------------------------------------------
interface FastEthernet0/2/5
ip address 10.34.241.1 255.255.255.0
ip nat inside //向内的nat地址转换
ip virtual-reassembly //IP虚拟分片重组功能开启
standby 1 ip 10.34.241.3 //组号为1的hsrp功能开启
standby 1 preempt
standby 1 track 1 decrement 10

阅读全文

与思科路由器配置命令相关的资料

热点内容
自驾游用什么导航app 浏览:515
电脑为什么突然没有解压器 浏览:722
服务器里如何加速刷怪笼速度 浏览:50
腾讯自助所需要的服务器是什么 浏览:429
什么共享电动单车不用下载app 浏览:645
五点系统指标源码 浏览:859
空调压缩机拆开 浏览:962
单片机控制gsm发短信 浏览:455
蔚来汽车充电app是什么 浏览:424
什么app能看公交 浏览:138
pdf海绵 浏览:296
命令一加一 浏览:405
linuxutf8bom 浏览:135
3d导航软件源码 浏览:66
惠州双月湾那边用什么买菜app 浏览:936
反编译优化java软件 浏览:541
鸿蒙如何离线编译 浏览:361
日轻PDF 浏览:602
m的命令 浏览:397
mate9什么时候升级安卓10 浏览:579