亚洲一级电影在线观看,九九精品无码专区免费,亚洲AV无码资源在线观看 ,欧美国产高清

cisco路由器ppp認證方式

時間:2024-09-09 17:18:01 思科認證 我要投稿
  • 相關推薦

cisco路由器ppp認證方式

  一、實驗拓撲

  二、實驗要求:

  1、要求配置ppp協議

  2、分別用pap、chap認證

  3、配置總部的路由器給分部的路由器分配ip地址,并且從地址池中分配,

  4、pc1最終能ping銅pc2

  三、實驗步驟:

  1、配置各路由器接口的ip地址 如圖---

  2、封裝ppp協議

  R1(config)#interface s1/0

  R1(config-if)#encapsulation ppp

  R1(config-if)#clock rate 64000

  R1(config-if)#ip address 192.168.2.1 255.255.255.0

  R1(config-if)#no shut

  R2(config)#interface s1/0

  R2(config-if)#encapsulation ppp

  R2(config-if)#no shut

  R2(config-if)#clock rate 64000 配置DCE端時鐘頻率

  3、配置IP地址池協商,并從地址池中獲取

  R1(config)#interface s1/0

  R1(config-if)#peer default ip address pool aaa

  R1(config-if)#ip local pool aaa 192.168.2.2 192.168.2.10

  R2(config)#interface s1/0

  R2(config-if)#ip address negotiated

  查看 s1/0接口的地址

  R2#show interface s1/0

  Serial1/0 is up, line protocol is up

  Hardware is M4T

  Internet address is 192.168.2.2/32 如果獲取不到地址將接 shutdown 然后再 no shudown

  MTU 1500 bytes, BW 1544 Kbit, DLY 20000 usec,

  reliability 255/255, txload 1/255, rxload 1/255

  Encapsulation PPP, LCP Open

  Open: CDPCP, IPCP, crc 16, loopback not set

  Keepalive set (10 sec)

  4、啟用rip協議 并查看路由表

  R1(config)#router rip

  R1(config-router)#network 192.168.2.0

  R1(config-router)#network 192.168.1.0

  查看路由表

  R1#show ip route

  Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP

  D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter ar

  N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type

  E1 - OSPF external type 1, E2 - OSPF external type 2

  i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-I

  ia - IS-IS inter area, * - candidate default, U - per-user s

  o - ODR, P - periodic downloaded static route

  Gateway of last resort is not set

  C 192.168.1.0/24 is directly connected, FastEthernet0/0

  192.168.2.0/24 is variably subnetted, 2 subnets, 2 masks

  C 192.168.2.2/32 is directly connected, Serial1/0

  C 192.168.2.0/24 is directly connected, Serial1/0

  R 192.168.3.0/24 [120/1] via 192.168.2.2, 00:00:47, Serial1/0

  R2(config)#router rip

  R2(config-router)#network 192.168.2.0

  R2(config-router)#network 192.168.3.0

  R2(config-router)#exit

  查看路由表

  R2#show ip route

  Codes: C - connected, S - static, R - RIP, M - mobile, B - BG

  D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF in

  N1 - OSPF NSSA external type 1, N2 - OSPF NSSA externa

  E1 - OSPF external type 1, E2 - OSPF external type 2

  i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2

  ia - IS-IS inter area, * - candidate default, U - per-

  o - ODR, P - periodic downloaded static route

  Gateway of last resort is not set

  192.168.2.0/32 is subnetted, 2 subnets

  C 192.168.2.2 is directly connected, Serial1/0

  C 192.168.2.1 is directly connected, Serial1/0

  C 192.168.3.0/24 is directly connected, FastEthernet0/0

  5、配置PAP認證

  R1(config)#username abc password 0 123

  R1(config)#interface s1/0

  R1(config-if)#ppp authentication pap

  R2(config)#interface s1/0

  R2(config-if)#ppp pap sent

  R2(config-if)#ppp pap sent-username abc password 0 123

  查看show run

  interface Serial1/0

  ip address negotiated

  encapsulation ppp

  serial restart-delay 0

  clockrate 64000

  ppp pap sent-username abc password 0 123

  6、配置chap認證

  R1(config)#username abc password 0 123 以對方的主機名作為用戶名,密碼要和對方的路由器一致

  R1(config)#interface s1/0

  R1(config-if)#ppp authentication pap

  R1(config-if)#exit

  R1(config)#username R2 password 0 123

  R1(config)#interface s1/0

  R1(config-if)#encapsulation ppp

  R1(config-if)#ppp authentication chap chap 認證

  R2(config)#username R1 password 0 123

  R2(config)#interface s1/0

  R2(config-if)#encapsulation ppp

  R2#debug ppp authentication

  PPP authentication debugging is on 驗證chap過程

【cisco路由器ppp認證方式】相關文章:

CISCO路由器CHAP認證配置06-17

思科認證輔導:cisco路由器忘記密碼恢復09-05

Cisco認證的就業方向08-06

2016年思科認證輔導:cisco路由器忘記密碼恢復08-23

Cisco路由器配置命令大全06-12

Cisco路由器安全配置命令10-27

cisco路由器voip配置解析201610-16

Cisco路由器如何配置實現VoIP04-28

CISCO路由器配置命令詳解設置試題08-28

Cisco路由器配置入門知識大全08-02

主站蜘蛛池模板: 焦作市| 日韩av无码精品人妻系列| 国产美女被遭高潮免费| 石家庄市| 60岁欧美乱子伦xxxx| 成年日韩片av在线网站| 综合久久久久6亚洲综合| 色偷偷一区| 亚洲色成人网站www永久四虎| 亚洲最大成人一区久久久| 秭归县| 台湾无码av一区二区三区| 亚洲精品久久久久中文字幕m男| 欧美成人精品高清在线观看| 亚洲午夜av久久久精品影院| 看国产黄大片在线观看| 商洛市| 丝袜亚洲精品中文字幕一区| 五月天久久久噜噜噜久久| 国产AV无码专区亚洲AV偷| 2020亚洲国产精品久久久| 国产老妇伦国产熟女老妇高清| 国产成人精品优优av| 无码精品一区二区三区免费视频| 亚洲av无码午夜| 国产又黄又猛又粗又爽的a片动漫| 国产乱xxⅹxx国语对白| 亚洲超碰97无码中文字幕| 97色精品视频在线观看| 无码高潮又爽又黄a片软件| 亚洲日韩精品伊甸| 日韩人妻无码一区二区三区99| 国产精品成人嫩草影院| 久久婷婷色综合老司机| 精品国产亚洲一区二区三区在线观看 | 日日噜噜噜夜夜爽爽狠狠视频| 51国产黑色丝袜高跟鞋| 国产精品国产三级国av麻豆| 国产成人无码精品xxxx| 国产成人av在线影院| 老少配老妇老熟女中文普通话|