zjp0633 发表于 2018-7-16 08:14:35

详细配置Cisco IOS对合理丢弃(DE)的支持----Frame-relay

  Router>en
  Router#config t
  Enter configuration commands, one per line.End with CNTL/Z.
  Router(config)#frame-relay switching
  Router(config)#hostname Frameswitch
  Frameswitch(config)#int s0/0
  Frameswitch(config-if)#encapsulation frame-relay    //默认为CISCO。
  Frameswitch(config-if)#frame-relay lmi-type ansi      //LMI类型为ANSI 附件 D.
  Frameswitch(config-if)#frame-relay intf-type dce      //用来定义帧交换机的类型为DCE.
  Frameswitch(config-if)#frame-relay route 200 int s0/1 201//配置 两个接口间的一条PVC
  Frameswitch(config-if)#clock rate 64000
  Frameswitch(config-if)#no shut
  Frameswitch(config-if)#int s0/1
  Frameswitch(config-if)#encapsulation frame-relay
  Frameswitch(config-if)#frame-relay lmi-type ansi
  Frameswitch(config-if)#frame-relay intf-type dce
  Frameswitch(config-if)#frame-relay route 201 int s0/0 200
  Frameswitch(config-if)#clock rate 64000
  Frameswitch(config-if)#no shut
  Frameswitch(config-if)#end
页: [1]
查看完整版本: 详细配置Cisco IOS对合理丢弃(DE)的支持----Frame-relay