博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单臂路由
阅读量:6485 次
发布时间:2019-06-23

本文共 3104 字,大约阅读时间需要 10 分钟。

试验工具:dynamips,IOS:3640

实验拓扑:如图



配置清单:

ROUTER1:

Router#show run

Building configuration...


Current configuration : 577 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname Router

!

boot-start-marker

boot-end-marker

!

!

no aaa new-model

memory-size iomem 5

!

!

ip cef

!

!

!

!

!         

!

interface FastEthernet0/0

 no ip address

 duplex auto

 speed auto

!

interface FastEthernet0/0.1

 encapsulation dot1Q 10

 ip address 192.168.1.1 255.255.255.0

!

interface FastEthernet0/0.2

 encapsulation dot1Q 20

 ip address 192.168.2.1 255.255.255.0

!

ip http server

!

!

!

!

!

control-plane

!

!         

line con 0

line aux 0

line vty 0 4

!

end

-----------------------------------------------------------------------------------

SWITCH:

Router#show run

Building configuration...


Current configuration : 937 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname Router

!

boot-start-marker

boot-end-marker

!

!

no aaa new-model

memory-size iomem 5

!

!

ip cef

!

!

!

!

!         

!

interface FastEthernet0/0

 switchport mode trunk

!

interface FastEthernet0/1

 switchport access vlan 10

 duplex full

 speed 100

!

interface FastEthernet0/2

 switchport access vlan 20

 duplex full

 speed 100

!

interface FastEthernet0/3

!

interface FastEthernet0/4

!

interface FastEthernet0/5

!

interface FastEthernet0/6

!

interface FastEthernet0/7

!

interface FastEthernet0/8

!

interface FastEthernet0/9

!

interface FastEthernet0/10

!

interface FastEthernet0/11

!

interface FastEthernet0/12

!

interface FastEthernet0/13

!

interface FastEthernet0/14

!

interface FastEthernet0/15

!

interface Vlan1

 no ip address

!

ip http server

!

!         

!

!

!

control-plane

!

!

line con 0

line aux 0

line vty 0 4

!

end

-----------------------------------------------------------------------

PC1:

Router#show run


interface FastEthernet0/0

 ip address 192.168.1.10 255.255.255.0

 no ip route-cache

 duplex auto

 speed auto

!

ip default-gateway 192.168.1.1

ip http server

-----------------------------------------------------------------------

PC2:

Router#show run


interface FastEthernet0/0

 ip address 192.168.2.10 255.255.255.0

 no ip route-cache

 duplex auto

 speed auto

!

ip default-gateway 192.168.2.1

ip http server

----------------------------------------------------------------------

测试:

PC1 ping PC2

Router#ping 192.168.2.10


Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 192.168.2.10, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 204/290/372 ms


PC2 ping PC1

Router#ping 192.168.1.10


Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 192.168.1.10, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 104/233/360 ms


成功。

-----------------------------------------------------------------------

实验中遇到的问题:

刚开始交换机和路由器还有PC都配置好后,PC只能ping通自己的网关,但是ping不到另外一个vlan,后来检查了一下配置,发现没什么问题,又到网上找了点资料,发现在这个虚拟环境下面,替代PC机的路由器要用no ip routing命令关闭路由功能。使用该命令后后一切正常,不太理解其中奥秘。。。

本文转自loveme2351CTO博客,原文链接:http://blog.51cto.com/loveme23/28795 ,如需转载请自行联系原作者

你可能感兴趣的文章
JavaScript函数(二)
查看>>
腾讯最大规模裁撤中层干部,让贤年轻人
查看>>
蔡超:入门 Go 语言必须跨越的五个思维误区
查看>>
使用Akka Actor和Java 8构建反应式应用
查看>>
curl常用命令详解
查看>>
saltstack 添加计划任务
查看>>
Puppet module命令参数介绍(六)
查看>>
《UNIX网络编程》中第一个timer_server的例子
查看>>
CISCO 路由器(4)
查看>>
Silverlight 5 Beta新特性[4]文本缩进控制
查看>>
springMVC多数据源使用 跨库跨连接
查看>>
Git服务端和客户端安装笔记
查看>>
【iOS-cocos2d-X 游戏开发之十三】cocos2dx通过Jni调用Android的Java层代码(下)
查看>>
MongoDB的基础使用
查看>>
进程间通信——命名管道
查看>>
ssh登陆不需要密码
查看>>
java mkdir()和mkdirs()区别
查看>>
OSChina 周六乱弹 ——揭秘后羿怎么死的
查看>>
sorry,you must have a tty to run sudo
查看>>
项目中的积累,及常见小问题
查看>>