pos怎么连接网络的,pos机怎么连接wifi网络. (无押金)
转自公众号:网路小栈
一、知识要点
IP-Trunk是将多个链路层协议为HDLC的POS接口或Serial口捆绑到一起,形成一条逻辑上的数据链路,以提供更高的连接可靠性和更大的带宽,实现流量负载分担。IP-Trunk和Eth-Trunk作用类似,都是链路聚合。注意IP-Trunk接口只能由POS接口或serial口构成,成员接口只能使用HDLC封装形式。
POS是一种应用在城域网及广域网中的技术,利用SONET/SDH(光同步数字传输网)提供的高速传输通道直接传送IP数据业务。路由器作为企业园区网的出口网关,上行使用POS链路连接到SONET/SDH网络。由于单个POS链路带宽不足,且链路出现故障时,整个链路都会发生中断,导致链路可靠性得不到保障。用户可以在设备之间创建IP-Trunk,将多个POS接口捆绑成一个IP-Trunk,以增加链路的通信带宽,保证链路通信的可靠性。
二、实验拓扑
实验环境说明:本实验中路由器使用的是Router(不是AR2220),本实验中使用的是Serial口。
三、实验配置
R1配置:
[R1]interface Serial 0/0/0
[R1-Serial0/0/0]link-protocol hdlc
Warning: The encapsulation protocol of the link will be changed.
Continue? [Y/N]:y
[R1-Serial0/0/0] interface Serial 0/0/1
Warning: The encapsulation protocol of the link will be changed.
Continue? [Y/N]:y
[R1-Serial0/0/1] link-protocol hdlc
[R1-Serial0/0/1]quit
[R1]interface ip-trunk 12
[R1-Ip-Trunk12]trunkport Serial 0/0/0
[R1-Ip-Trunk12]trunkport Serial 0/0/1
[R1-Ip-Trunk12]ip address 10.1.12.1 24
[R1-Ip-Trunk12]quit
R2配置:
[R2]interface Serial 0/0/0
[R2-Serial0/0/0]link-protocol hdlc
Warning: The encapsulation protocol of the link will be changed.
Continue? [Y/N]:y
[R2-Serial0/0/0] interface Serial 0/0/1
Warning: The encapsulation protocol of the link will be changed.
Continue? [Y/N]:y
[R2-Serial0/0/1] link-protocol hdlc
[R2-Serial0/0/1]quit
[R2]interface ip-trunk 12
[R2-Ip-Trunk12]trunkport Serial 0/0/0
[R2-Ip-Trunk12]trunkport Serial 0/0/1
[R2-Ip-Trunk12]ip address 10.1.12.2 24
[R2-Ip-Trunk12]quit
四、实验结果
[R1]ping 10.1.12.2
PING 10.1.12.2: 56 data bytes, press CTRL_C to break
Reply from 10.1.12.2: bytes=56 Sequence=1 ttl=255 time=60 ms
Reply from 10.1.12.2: bytes=56 Sequence=2 ttl=255 time=50 ms
Reply from 10.1.12.2: bytes=56 Sequence=3 ttl=255 time=50 ms
Reply from 10.1.12.2: bytes=56 Sequence=4 ttl=255 time=50 ms
Reply from 10.1.12.2: bytes=56 Sequence=5 ttl=255 time=30 ms
--- 10.1.12.2 ping statistics ---
5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max=30/48/60 ms
备注:
该实验可以与Eth-trunk和PPP MP-group实验相对比来做,注意他们之间的区别。