分享
 
 
 

基本的IPX配置

王朝other·作者佚名  2008-05-19
窄屏简体版  字體: |||超大  

本实验是对IPX协议的基本配置,并主要演示IPX在以太网上的各种封装类型。

1.实验目的

通过本实验,读者可以掌握以下技能

●启动IPX路由;

●配置IPX地址;

●在以太网上选择相应的封装;

●测试IPX网络的连通性;

●查看IPX相关信息。

2. 设备需求

本实验需要以下设备:

●Cisco路由器2台,命名为R1和R2,要求最少具有1个以太网接口,并且IOS软件为Desktop版本以上;

●1条交叉线序的双绞线,或2条正常线序双绞线和1个Hub;

●1台终端服务器,如Cisco 2509路由器,及用于反向Telnet的相应电缆;

●1台带有超级终端程序的PC机,以及Console电缆及转接器。

3.拓扑结构及配置说明

本实验拓扑结构如图9.1所示,2台路由器通过以太网连接越来。

IPX网络号为12。

实验要求配置IPX地址,并实现R1和R2之间EPX协议上的连通性

4. 实验配置及监测结果

配置清单9-1记录了IPX协议的基本配置。

配置清单9-1基本的EPX配置

第1段:启动IPX路由并配置IPX网络

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#ipx routing?

H.H.H IPX address of this router

R1(config)#ipx routing

R1(config)#int eO

R1(config-if)#ipx netw 12

R1(config-if)#no sh

R1(config-if)#^Z

R1#

Term_Server#2

[Resuming connection 2 to R2 ...]

R2#conft

Enter configuration commands, one per line. End with CNTL/Z.

R2(config)#ipx routing

R2(config)#int eO

R2(config-if)#ipx netw 12

R2(config-if)#no sh

R2(config-if)#^Z

R2#

第2段:查看IPX协议信息并测试连通性

R1#sh ipx int eO

Ethemet0 is up, line protocol is up

IPX address is 12.0000.0c76,NOVELL-ETHER[up]

Delay of this IPX network, in ticks is I throughput 0 link delay 0

IPXWAN processing not enabled on this interface.

IPX SAP update interval is 60 seconds

IPX type 20 propagation packet forwarding is disabled

Incoming access list is not set

Outgoing access list is not set

IPX helper access list is not set

SAP GGS output filter list is not set

SAP GNS processing enabled, delay 0 ms, output filter list is not set

SAP Input filter list is not set

SAP Output filter list is not set

SAP Router filter list is not set

Input filter list is not set

Output filter list is not set

Router filter list is not set

Netbios Input host access list is not set

Netbios Input bytes access list is not set

Netbios Output host access list is not set

Netbios Output bytes access list is not set

Updates each 60 seconds aging multiples RIP: 3 SAP: 3

SAP interpacket delay is 55 ms, maximum size is 480 bytes

RIP interpacket delay is 55 ms, maximum size is 432 bytes

RIP response delay is not set

IPX accounting is disabled

IPX fast switching is configured (enabled)

RIP packets received 0, RIP packets sent 1, 0 Throttled

RIP specific requests received 0, RIP specific replies sent 0

RIP general requests received 0, 0 ignored, RIP general replies sent 0

SAP packets received 0, SAP packets sent 1, 0 Throttled

SAP GNS packets received 0, SAP GNS replies sent 0

SAP GGS packets received 0, 0 ignored, SAP GGS replies sent 0

R1#ping ipx 12.0000.0c76ef736

Type escape sequence to abort.

Sending 5, 100-byte IPX Novell Echoes to 12.0000.0c76.f736, timeout is 2 seconds:

!!!!!

Success rate is 100 perceiit(5/5),round-trip min/avg/max=4/5/8 ms

R1#

Term_Server#2

[Resuming connection 2 to R2 ...]

R2#ping ipx 12.0000.0c76.f736

Type escape sequence to abort.

Sending 5, 100-byte IPX Novell Echoes to 12.0000.0c76.f736, timeout is 2 seconds:

!!!!!

Success rate is 100 percent(5/5),round-trip min/avg/max=4/5/8 ms

(1)使用ipx routing命令启动路由器上的IPX路由能力,这个命令可以有1个参数,即IPX地址,如果不便用此参数,则路由器使用E0接口的MAC地址作为IPX地址,并在列配置清单时显示出来。

(2)进入E0接口的配置模式下,输入命令ixp network 12,给E0所连接的网段分配IPX网络号为12。

(3)对R2路由器做相同的配置。

(4)show ipx interface e0命令列出了E0接口上的IPX地址和其他有关IPX的信息。这里的信息很多,我们光熟悉一下形式就可以了,在CCNA阶段不需要更深入的掌握。

(5)ping ipx 12.0000.0c76.f736指令是ping路由器R1 E0接口本身,目的是测试上面的配置是否成功。

(6)转到R2路由器上,使用ping ipx l2.0000.0c76.f736命令,则是测试从R2到R1通过IPX协议的连通性,测试是成功的,表明前面的配置完全正确。

接下来我们来考察IPX协议在以太网上的封装类型。

监测清单9-1记录了配置和监测的操作。

监测清单9-1配置IPX协议在以太网上的封装类型

R2#conft

Enter configuration commands, one per line. End with CNTL/Z.

R2(config)#int eO

R2(config-if)#ipx network 12 ?

encapsulation IPX encapsulation

R2(config-if)#ipx network 12 encap ?

arpa

IPX Ethernet_II

hdlc

HDLC on serial links

novell-ether

IPX Ethernet-802.3

novell-fddi

IPX FDDI RAW

sap

IEEE 802.2 on Ethernet,FDDI,Token Ring

snap

IEEE 802.2 SNAP on Ethernet,Token Ring,and FDDI

R2(config-if)#ipx network 12 encap sap

R2(config-if)#

R2#ping ipx 12.0000.0c76.f736

Type escape sequence to abort.

Sending 5, 100-byte IPX Novell Echoes to 12.0000.0c76.f736, timeout is 2 seconds

.....

Success rate is 0 percent(0/5)

R2#conft

Enter configuration commands, one per line. End with CNTL/Z.

R2(config)#int e0

R2(config-if)#ipx netw 12 encap novell-ether

R2(config-if)#ipx netw 12a encap arpa secon

R2(config-if)#ipx netw 12b encap sap secon

R2(config-if)#ipx netw 12c encap snap secon

R2(config-if)#^Z

Term_Server#1

[Resuming connection 2 to R1 ... ]

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#int eO

R1(config-if)#ipx netw 12 encap novell-ether

R1(config-if)#ipx netw 12a encap arpa secondary

R1(config-if)#ipx netw 12b encap sap secon

R1(config-if)#ipx netw 12c encap snap secon

R1(config-if)#^Z

R1#

R1#ping ipx 12.0000.0c8e.cdd2

Type escape sequence to abort.

Sending 5,100-byte IPX Novell Echoes to 12.0000.0c8e.cdd2,timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 4/5/8 ms

R1#ping ipx 12a.0000.0c8e.cdd2

Type escape sequence to abort.

Sending 5, 100-byte IPX Novell Echoes to 12A.OOOO.Oc8e.cdd2, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max=4/5/8 ms

R1#ping ipx 12b.OOOO.Oc8e.cdd2

Type escape sequence to abort.

Sending 5, 100-byte IPX Novell Echoes to 12B.OOOO.Oc8e.cdd2, timeout is 2 seconds:

!!!!!

Success rate is 100

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有