关于cisco路由器配置的一些参数
单臂路由设置
Switch(config-if)#no switchport
Switch(config)#ip routing
Switch(config)#interface FastEthernet0/1
Switch(config-if)#switchport trunk encapsulation dot1q
Switch(config-if)#exit
Switch(config)#interface vlan 2
Switch(config-if)#ip address 192.168.2.1 255.255.255.0
Switch(config-if)#exit
Switch(config)#interface vlan 3
三层交换机设置
s3(config)#ip routing开启路由功能
s3(config)#int fa0/5
s3(config-if)#no switchport该端口启用三层路由功能
s3(config-if)#ip address 192.168.5.1 255.255.255.0配置IP地址
s3(config-if)#no shutdown开启端口
S2(config-if)switchport trunk encapsulation dot1q
S2(config)#interface vlan 10????????????? //进入vlan 10接口配置模式
S2(config-if)#ip address 192.168.1.254 255.255.255.0
单3层交换机配置 不划分vlan
Switch(config)#ip routing
Switch(config)#interface FastEthernet0/1
Switch(config-if)#no switchport
Switch(config-if)#ip address 192.168.3.1 255.255.255.0
单线vlan配置
Router(config-if)#interface GigabitEthernet0/0.1
Router(config-subif)#encapsulation dot1q 2
Router(config-subif)#ip address 192.168.1.1 255.255.255.0
dhcp
wanglei(config)#ip dhcp excluded-address 192.168.1.1
wanglei(config)#ip dhcp pool dhcppool1
wanglei(dhcp-config)#network 192.168.1.0 255.255.255.0
wanglei(dhcp-config)#default-router 192.168.1.1
wanglei(dhcp-config)#dns-server 192.168.1.1
wanglei(dhcp-config)#dns-server 61.128.114.133
静态nat
Router(config)#ip nat inside source static 192.168.1.2 192.168.2.3
Router(config)#ip nat inside source static 192.168.1.3 192.168.2.4
show ip nat translations
Router(config)#ip nat pool aaa 192.168.2.20 192.168.2.30 netmask 255.255.255.0
Router(config)#ip nat inside source list 1 pool aaa
Router(config)#access-list 1 permit 192.168.1.0 255.255.255.0
Router(config)#show ip nat translations
debug ip nat
内部10.1.1.3 转化 170.168.2.2
重载
Router(config)#ip nat pool aaa 192.168.2.1 192.168.2.1 netmask 255.255.255.0
Router(config)#ip nat inside source list 1 pool aaa overload
Router(config)#access-list 1 permit 192.168.1.0 0.0.0.255
Router(config)#exit
不重载
Router(config)#ip nat pool aaa 192.168.2.5 192.168.2.15 netmask 255.255.255.0
Router(config)#ip nat inside source list 1 pool aaa
Router(config)#access-list 1 permit 192.168.1.0 0.0.0.255
关于cisco路由器配置的一些参数的更多相关文章
- cisco路由器配置教程
配置cisco路由器 经过几十年的发展,从最初的只有四个节点的ARPANET发展到现今无处不在的Internet,计算机网络已经深入到了我们生活当中.随着计算机网络规模的爆炸性增长,作为连接设备的路由 ...
- 路由与交换,cisco路由器配置,动态路由协议—RIP
一.动态路由协议分类 动态路由协议包括IGP(内部网关协议)和EGP(外部网关协议). 1.IGP IGP又包括距离向量路由协议和链路状态路由协议. (1)距离向量路由协议典型代表:RIP (2)链路 ...
- Cisco路由器配置基本命令
特权模式:enable Router1 # show running-config Router1 # show ip route Router # show ip interface brief S ...
- 路由与交换,cisco路由器配置,浮动静态路由
设置浮动静态路由的目的就是为了防止因为一条线路故障而引起网络故障.言外之意就是说浮动静态路由实际上是主干路由的备份.例如下图: 假如我们设路由器之间的串口(seria)为浮动静态路由(管理距离为100 ...
- 路由与交换,cisco路由器配置,静态路由
网络是一个大型的拓扑结构,在路由表中,最重要的是管理距离和度量值 管理距离 管理距离用来确定路由的优先级.管理距离的范围是0-255之间的整数值.值越低代表优先级越高.0代表最高优先级.并且只有直连路 ...
- 路由与交换,cisco路由器配置,基础知识点(二)
1.进退用户/特权/全局模式 (1)从用户模式进入特权模式 enable (2)从特权模式进入全局配置模式 configure terminal (3)从其他模式回到特权模式 end (4)从特权模式 ...
- 路由与交换,cisco路由器配置,基础知识点(一)
基础知识点 1.路由器与交换机端口初始化区别 路由器的所有接口默认都是关闭的 交换机的所有接口默认都是打开的 2.路由器 fastEthernet 端口 fastEthernet 0/0 第一个0代表 ...
- Cisco路由器配置ADSL上网
cisco1841#sh run Building configuration... Current configuration : 2970 bytes ! version 12.4 service ...
- cisco路由器配置(三) 最终网关
Gateway(config)#ip route 0.0.0.0 0.0.0.0 217.124.6.1 /*管理距离为1/orGateway(config)#ip route 0.0.0.0 0. ...
随机推荐
- SpringBoot读取自定义配置文件
自定义配置文件 my-config.properties bfxy.title=bfxy bfxy.name=hello spring boot! bfxy.attr=12345 配置文件类 appc ...
- 07 consistent gets、db block gets的简单精辟的理解
consistent gets.db block gets的简单精辟的理解 consistent gets:一致性读,为了保持读一致性而获取的块,其中可能包括undo block,也有包括非u ...
- Machine Learning In Action
The mind-road of "Machine Learning In Action". Read though the book totally by English!!
- 【Python】01 - 常见用法随见随梳理
1. range() 和 xrange()的区别 for x in range(5): print x for x in xrange(5): print x 这么看,range和xrange返回的值 ...
- Python 整数 长整数 浮点数 字符串 列表 元组 字典的各种方法
对于Python, 一切事物都是对象,对象基于类创建!! 注:查看对象相关成员var,type, dir 一.整数 如: 18.73.84 每一个整数都具备如下需要知道的功能: def bit_len ...
- Spring MVC中如何解决POST请求中文乱码问题,GET的又如何处理呢
在web.xml中配置过滤器 GET请求乱码解决: 在Tomcat中service.xml中
- node 借助Node Binary管理模块“n”更新
Node.js的版本频繁变化,如果有模块不能在你当前的Node版本上使用,需要升级Node环境 1)首先:查看当前node版本:node –v 2)安装n模块:npm install -g n 3)检 ...
- 高性能MySQL--创建高性能的索引
关于MySQL的优化,相信很多人都听过这一条:避免使用select *来查找字段,而是要在select后面写上具体的字段. 那么这么做的原因相信大家都应该知道:减少数据量的传输. 但我要讲的是另外一个 ...
- Delphi 调试连接 任意Android手机/平板/盒子
Delphi有时候无法连接调试一些手机,解决方案: 1.安装Google USB Driver 2.通过设备管理器查看手机或平板USB的VID,PID 3.修改你的电脑上的android_winusb ...
- 搭建最小linux系统
Busybox简介 • 制作文件系统我们需要使用到Busybox 工具 – 版本为busybox-1.21.1.tar.bz2 – 开源网址是http://www.busybox.net/ – Bus ...