我写的不是很完整。这些在实践中是正确的。希望大家看完以后找一些解释的资料
广域网分类:1 电路交换 :设备对设备
2 分组交换 :帧中继
3 信元交换 :视音频
4 专线交换 :ATM
DDN用的是V.35线,有一个机带猫,DDN专线广域网接口封装成PPP
例如:
一个路由器连电信与局域网,把它配置上网
公网IP 202.106.11.41--202.106.11.44
subnet :255.255.255.0
gateway:202.106.11.48
dns : 202.106.196.115
本地局域网IP是10.0.0.1
route#config terminal
route(config)#interface serial 0
routeA(config-if)#ip address 202.106.11.42 255.255.255.0
routeA(config-if)#description this is wan port~!
routeA(config-if)#ip default-gateway 202.106.11.48 255.255.255.0
routeA(config-if)#half-duplex
routeA(config-if)#no shutdown
routeA(config-if)#encapsulation ppp
routeA(config-if)#bandwidth 512000
routeA(config-if)#ip nat outside
routeA(config-if)#exit
routeA(config)#interface serial 1
routeA(config-if)#no ip address
routeA(config-if)#shutdown
routeA(config-if)#exit
routeA(config)#interface etherface
routeA(config-if)#ip address 10.0.0.1 255.0.0.0
routeA(config-if)#media-type 10BaseT
routeA(config-if)#ip nat inside
routeA(config-if)#no shutdown
routeA(config-if)#exit
routeA(config)#ip domain-name 202.106.196.115
routeA(config)#ip route 0.0.0.0 0.0.0.0 serial 0
routeA(config)#access-list 1 permit 10.0.0.0 0.255.255.255
routeA(config)#ip nat pool yirehe 202.106.11.43 202.106.11.43 netmask 255.255.255.0
routeA(config)#ip nat inside source list 1 pool yirehe overload
routeA(config)#exit
route#copy running-config startup-config
思科有自己的HDLC
比如A和B都要用HDLC封装,如果A用的是DHLC,而B用的是PPP。那么物理层是通的
数据链路层是不通的。
我们在enable 可以对S0,S1的设置清除 clear interface serial 1
ppp分为两层 1: LCP数据链路 2: NCP网络链层
PPP支持设备见认证
配置认证要用户名和密码。来实现设备和设备之见的链接。如果认证失败将不会链接
PPP认证分为PAP 和CHAP PAP在链接的时候是不加密的 CHAP在链接的时候是加密的
pap:
routerA
route#config terminal
route(config)#hostname routerA
routeA(config)#username routerB password 123456
routeA(config)#interface serial 0
routeA(config-if)#encapsulation ppp
routeA(config-if)#ppp authentication pap
routerB
router#config terminal
router(config)#hostname routerB
routerB(config)#username router password 123456
routerB(config)#interface serial 0
routerB(config-if)#encapsulation ppp
routerB(config-if)#ppp pap sent-username routerB password 123456
chap:
routerA
router#config terminal
router(config)#hostname routerA
routerA(config)#username routerB password 123456
routerA(config)#interface serial 0
routerA(config-if)#encapsulation ppp
routerA(config-if)#ppp authentication chap
routerB
router#config terminal
router(config)#hostname routerB
routerB(config)#interface serial 0
routerB(config-if)#encapsulation ppp
routerB(config-if)#ppp authentication chap
routerB(config-if)#ppp chap hostname routerB
routerB(config-if)#ppp chap password 123456
router#show frame-relay lmi 命令将显示本地路由器和帧中继交换机之间交换的LMI流量统计
router#show frame pvc 命令将列出所有配置PVC和DLD号
router#show frame map 命令将显示网络层的DLCI的映射