习题三: 【问题1】 x.25网络设备分为数据终端设备(dte)、数据电路终端设备(dce)及分组交换设备(pse)。 【问题2】 router1: interface serial0 encapsulation x25 //设置x.25封装 ip address 192.200.10.1 255.255.255.0 // 设置serial0口ip地址为192.200.10.1,子网掩码为255.255.255.0 x25 address 110101 //设置x.121地址为110101 x25 htc 16 //设置最大的双向虚电路数为16 x25 nvc 2 //设置一次连接可同时建立的虚电路数为2 x25 map ip 192.200.10.2 110102 broadcast //设置ip地址与x..121地址映射。对方路由器地址为192.200.10.2,对方的x.121地址为110102,并且允许在x..25线路上传送路由广播信息 x25 map ip 192.200.10.3 110103 broadcast ! 习题四: 【问题1】ce1的传输线路的带宽是2048k,它和e1的区别主要在于:e1不能划分时隙,ce1能划分时隙。ce1的每个时隙是64k,一共有32个时隙,在使用的时候,可以划分为n*64k,例如:128k,256k等等。ce1的0和15时隙是不用来传输用户的数据流量,0时隙是传送同步号,15时隙传送控制信令,这样实际能用的只有30个时隙,所以在具体配置ce1划分时隙时,要注意些了。ce1 和e1 也可以互联,但是ce1必须当e1来使用,即不可分时隙使用。 因为ce1比较灵活,所以我们能常常碰到ce1。 【问题2】 current configuration: ! version 11.2 no service udp-small-servers no service tcp-small-servers ! hostname router1 ! enable secret 5 $1$xn08$ttr8nflop9.2rgzhcbzkk/ enable password cisco ! ! ip subnet-zero ! controller e1 0 framing no-crc4 //帧类型为no-crc4 channel-group 0 timeslots 1 //建立逻辑通道组0与时隙1的映射 channel-group 1 timeslots 2 //建立逻辑通道组1与时隙2的映射 channel-group 2 timeslots 3 //建立逻辑通道组2与时隙3的映射 ! interface ethernet0 ip address 133.118.40.1 255.255.0.0 media-type 10baset ! interface ethernet1 no ip address shutdown ! interface serial0:0 //逻辑接口serial0:0 ip address 202.119.96.1 255.255.255.252 encapsulation hdlc no ip mroute-cache ! interface serial0:1 ip address 202.119.96.5 255.255.255.252 encapsulation hdlc no ip mroute-cache |