成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

HDLC協議有關命令與配置

網絡 網絡管理
HDLC是CISCO路由器使用的缺省協議,一臺新路由器在未指定封裝協議時默認使用HDLC封裝。本博文將為您詳細介紹HDLC協議的有關命令及配置。

 HDLC是CISCO路由器使用的缺省協議,一臺新路由器在未指定封裝協議時默認使用HDLC封裝。本博文將為您詳細介紹HDLC協議的有關命令及配置。

HDLC協議是一種簡單、高效的點到點鏈路協議,主要用于點到點連接的路由器間的通信。HDLC協議有 Cisco HDLC 和 ISO DHLC 兩種,兩者不能兼容。

銳捷路由器的同步串行口默認封裝Cisco HDLC,所以銳捷路由器可以和Cisco路由器直接相連,但如果把銳捷路由器和不支持Cisco HDLC的路由器相連,就需要采用其它協議(如PPP)。

1.有關命令

端口設置


注:1.以下給出一個顯示Cisco同步串口狀態的例子.

Router#show interface serial 0

Serial 0 is up, line protocol is up

Hardware is MCI Serial

Internet address is 150.136.190.203, subnet mask is 255.255.255.0

MTU 1500 bytes, BW 1544 Kbit, DLY 20000 usec, rely 255/255, load 1/255

Encapsulation HDLC, loopback not set, keepalive set (10 sec)

Last input 0:00:07, output 0:00:00, output hang never

Output queue 0/40, 0 drops; input queue 0/75, 0 drops

Five minute input rate 0 bits/sec, 0 packets/sec

Five minute output rate 0 bits/sec, 0 packets/sec

16263 packets input, 1347238 bytes, 0 no buffer

Received 13983 broadcasts, 0 runts, 0 giants

2 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 2 abort

22146 packets output, 2383680 bytes, 0 underruns

0 output errors, 0 collisions, 2 interface resets, 0 restarts

1 carrier transitions

2. 舉例


設置如下:

Router1:

interface Serial0

ip address 192.200.10.1 255.255.255.0

clockrate 1000000

Router2:

interface Serial0

ip address 192.200.10.2 255.255.255.0

!

3. 舉例使用E1線路實現多個64K專線連接.

相關命令:


注: 1. 當鏈路為T1時,channel-group編號為0-23, Timeslot范圍1-24; 當鏈路為E1時, channel-group編號為0-30, Timeslot范圍1-31.

2.使用show controllers e1觀察controller狀態,以下為幀類型為crc4時controllers正常的狀態.

Router# show controllers e1

e1 0/0 is up.

Applique type is Channelized E1 - unbalanced

Framing is CRC4, Line Code is HDB3 No alarms detected.

Data in current interval (725 seconds elapsed):

0 Line Code Violations, 0 Path Code Violations

0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins

0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 0 Unavail Secs

Total Data (last 24 hours) 0 Line Code Violations, 0 Path Code Violations,

0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,

0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 0 Unavail Secs

以下例子為E1連接3條64K專線, 幀類型為NO-CRC4,非平衡鏈路,路由器具體設置如下:

shanxi#wri t

Building configuration...

Current configuration:

!

version 11.2

no service udp-small-servers

no service tcp-small-servers

!

hostname shanxi

!

enable secret 5 $1$XN08$Ttr8nfLoP9.2RgZhcBzkk/

enable password shanxi

!

!

ip subnet-zero

!

controller E1 0

framing NO-CRC4

channel-group 0 timeslots 1

channel-group 1 timeslots 2

channel-group 2 timeslots 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

ip address 202.119.96.1 255.255.255.252

no ip mroute-cache

!

interface Serial0:1

ip address 202.119.96.5 255.255.255.252

no ip mroute-cache

!

interface Serial0:2

ip address 202.119.96.9 255.255.255.252

no ip mroute-cache

!

no ip classless

ip route 133.210.40.0 255.255.255.0 Serial0:0

ip route 133.210.41.0 255.255.255.0 Serial0:1

ip route 133.210.42.0 255.255.255.0 Serial0:2

!

line con 0

line aux 0

line vty 0 4

password shanxi

login

!

end

3、配置keepalive時間


HDLC每隔10秒鐘就互相發送鏈路探測的協商報文(KeepAlive報文),用于探查鏈路是否中斷,每次收發的報文按序號遞增,序號失序則鏈路中斷。當接口連續3次(數據包速率超過1000packets/s時為6次)沒有收到對方對自己的遞增序號的確認時,HDLC協議就把鏈路狀態由Up轉變為Down,鏈路將不可用。

HDLC協議可配置的參數只有Keepalive的間隔時間,缺省值是10秒。可以根據鏈路的流量來修改這個值。

1、配置keepalive時間:

Router(config)#interface interface-id

Router(config-if)#keepalive seconds

interface 命令用于指定要配置的接口,必須是Serial口,interface-id是接口號。

keepalive 命令設置keepalive時間,seconds是以秒為單位的時間值。

2、忽略keepalive探查:

Router(config)#interface interface-id

Router(config-if)#no keepalive

使用 no keepalive 命令表示不進行HDLC鏈路狀態探查,即不發送keepalive報文,也不處理收到的keepalive報文。

配置舉例:

R1>enable R1#configure terminal R1(config)#interface s0/0 R1(config-if)#encapsulation hdlc R1(config-if)#keepalive 15

R2>enable R2#configure terminal R2(config)#interface s0/0 R2(config-if)#encapsulation hdlc R2(config-if)#keepalive 15

注意:你必須保證相連兩端的keepalive時間相同。

責任編輯:林琳 來源: 博客
相關推薦

2019-11-24 22:09:50

廣域網PPPHDLC

2014-06-09 10:34:45

HDLC

2010-09-27 14:31:35

PPPoE協議配置

2010-08-06 10:55:50

配置RIP路由協議

2010-04-21 18:30:25

Unix網絡配置

2010-07-08 12:49:12

SIP會話發起協議

2010-06-28 10:35:18

Bittorrent協

2010-08-29 21:21:18

DHCP協議

2010-06-09 16:57:14

路由選擇協議

2010-03-11 09:33:54

2009-12-30 10:07:15

2010-09-02 15:50:01

PPPoE協議

2011-08-11 15:14:30

2009-11-26 09:56:39

Cisco路由器配置命交換機配置命令

2010-01-08 14:25:54

Ubuntu sudo

2010-07-09 09:55:06

HART協議

2011-04-06 16:49:14

PPP

2011-03-08 16:30:30

Proftpd命令Proftpd配置

2011-04-06 16:43:48

驗證物理鏈路HDLC

2010-07-14 14:20:47

IMAP協議服務
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 奇米影视在线 | 日本亚洲欧美 | 国产精品久久一区二区三区 | 国产98色在线 | 日韩 | 一级黄色影片在线观看 | 美国av毛片 | jizz中国日本 | 久久精品小短片 | 美女福利视频一区 | 国产在线视频一区 | 99精品久久久久 | 亚洲国产欧美在线 | 日韩一区二区三区四区五区六区 | 免费人成在线观看网站 | 成人精品久久 | 欧美4p | 亚洲欧美中文日韩在线v日本 | 日韩淫片免费看 | 亚洲第一福利网 | 午夜视频在线观看视频 | 一区二区免费在线 | 国产精品1| 久久精品国产99国产精品 | 香蕉久久a毛片 | 狠狠亚洲| 在线日韩 | 91久久伊人 | 国产一区二区三区视频免费观看 | 欧美成人激情视频 | 香蕉二区 | 欧美二区三区 | 综合色播 | 日韩一区二区福利 | 久久精品网 | 国产清纯白嫩初高生在线播放视频 | 天天在线操 | 欧美一级淫片免费视频黄 | 国产精品一码二码三码在线 | 久久久久国产精品 | 精品久久一区二区三区 | 国产精品亚洲综合 |