当前位置: 首页 > news >正文

自己做网站和外包品牌推广工作内容

自己做网站和外包,品牌推广工作内容,陈仓网站建设,wordpress more标签概述:PPP模式,即公私合作模式(Public-Private Partnership),是一种公共部门与私营部门合作的模式。 一、实验拓扑 实验一:PPP基本功能 实验步骤: (1)配置AR1的接口IP地…

概述:PPP模式,即公私合作模式(Public-Private Partnership),是一种公共部门与私营部门合作的模式

一、实验拓扑

实验一:PPP基本功能

实验步骤:

(1)配置AR1的接口IP地址并配置PPP协议,命令如下:

<Huawei>system-view
[Huawei]undo info-center enable
[Huawei]sysname AR1
[AR1]interface s4/0/0
[AR1-Serial4/0/0]link-protocol ppp     //将链路层协议封装为PPP
[AR1-Serial4/0/0]ip address 10.0.12.1 24
[AR1-Serial4/0/0]quit
(2)配置全局地址池,命令如下:

[AR1]ip pool 1   //创建地址池编号为1
[AR1-ip-pool-1]network 10.0.12.0 mask 24   //设置地址和子网掩码
[AR1-ip-pool-1]gateway-list 10.0.12.1   //网关为10.0.12.1
[AR1-ip-pool-1]quit

(3)配置为客户端指定的地址池,命令如下:
[AR1-Serial4/0/0]remote address pool 1  

(4)在AR2配置接口Serial4/0/0的链路层协议和IP地址的可协商属性,命令如下:

<Huawei>system-view
[Huawei]sysname AR2
[AR2]interface s4/0/0
[AR2-Serial4/0/0]link-protocol ppp
[AR2-Serial4/0/0]ip address ppp-negotiate   //通过PPP协商的方式获取IP地址

(5)查看接口是否获取IP地址,命令如下:

[AR2-Serial4/0/0]display ip interface brief
*down: administratively down
^down: standby
(l): loopback
(s): spoofing
The number of interface that is UP in Physical is 2
The number of interface that is DOWN in Physical is 4
The number of interface that is UP in Protocol is 2
The number of interface that is DOWN in Protocol is 4

Interface                         IP Address/Mask      Physical   Protocol  
GigabitEthernet0/0/0              unassigned           down       down      
GigabitEthernet0/0/1              unassigned           down       down      
GigabitEthernet0/0/2              unassigned           down       down      
NULL0                             unassigned           up         up(s)     
Serial4/0/0                       10.0.12.254/32       up         up        
Serial4/0/1                       unassigned           down       down

实验二:PAP认证

实验二拓扑:

实验步骤:

(1)配置AR1的接口IP地址,命令如下:

<Huawei>system-view
[Huawei]undo info-center enable
[Huawei]sysname AR1
[AR1]interface s4/0/0
[AR1-Serial4/0/0]link-protocol ppp
[AR1-Serial4/0/0]ip address 10.0.12.1 24
[AR1-Serial4/0/0]quit
(2)配置认证用户密码,命令如下:

[AR1]aaa
[AR1-aaa]local-user huawei password cipher huawei  //配置认证时使用的用户密码
[AR1-aaa]local-user huawei service-type ppp  //将用户名为huawei的服务类型改为PPP

(3)在接口配置认证模式为PAP认证,命令如下:
[AR1]interface s4/0/0
[AR1-Serial4/0/0]ppp authentication-mode pap

(4)配置AR2的接口IP地址,命令如下:

<Huawei>system-view
[Huawei]undo info-center enable
[Huawei]sysname AR2
[AR2]interface s4/0/0
[AR2-Serial4/0/0]link-protocol ppp
[AR2-Serial4/0/0]ip address 10.0.12.2 24
[AR2-Serial4/0/0]quit
(5)在AR2的接口配置认证用户名及密码,命令如下:

[AR2]interface s4/0/0
[AR2-Serial4/0/0]ppp pap local-user huawei password cipher huawei

(6)在AR2设备上查看接口状态,命令如下:

<AR2>display interface Serial4/0/0
Serial4/0/0 current state : UP
Line protocol current state : DOWN
Description:HUAWEI, AR Series, Serial4/0/0 Interface
Route Port,The Maximum Transmit Unit is 1500, Hold timer is 10(sec)
Internet protocol processing : disabled
Link layer protocol is PPP
LCP stopped
Last physical up time   : 2024-09-18 19:38:19 UTC-08:00
Last physical down time : 2024-09-18 19:38:09 UTC-08:00
Current system time: 2024-09-18 19:41:44-08:00
Physical layer is synchronous, Virtualbaudrate is 64000 bps
Interface is DTE, Cable type is V11, Clock mode is TC
Last 300 seconds input rate 3 bytes/sec 24 bits/sec 0 packets/sec
Last 300 seconds output rate 1 bytes/sec 8 bits/sec 0 packets/sec

Input: 28 packets, 1022 bytes
  Broadcast:              0,  Multicast:              0
  Errors:                 0,  Runts:                  0
  Giants:                 0,  CRC:                    0

  Alignments:             0,  Overruns:               0
  Dribbles:               0,  Aborts:                 0
  No Buffers:             0,  Frame Error:            0

Output: 28 packets, 392 bytes
  Total Error:            0,  Overruns:               0
  Collisions:             0,  Deferred:               0
    Input bandwidth utilization  :    0%
    Output bandwidth utilization :    0%

通过以上输出结果可以发现,LCP和IPCP的状态为opened,并且物理状态和协议状态都为UP。

实验三:CHAP的认证

实验拓扑:

实验步骤:(1)配置AR1的接口IP地址,命令如下:

<Huawei>system-view
[Huawei]undo info-center enable
[Huawei]sysname s4/0/0
[s4/0/0]sysname AR1
[AR1]interface s4/0/0
[AR1-Serial4/0/0]link-protocol ppp
[AR1-Serial4/0/0]ip address 10.0.12.1 24
[AR1-Serial4/0/0]quit
(2)配置AR2的接口IP地址,命令如下:

<Huawei>system-view
[Huawei]undo info-center enable
[Huawei]sysname AR2
[AR2]interface s4/0/0
[AR2-Serial4/0/0]ip address 10.0.12.2 24
[AR2-Serial4/0/0]link-protocol ppp
[AR2-Serial4/0/0]quit
(3)在认证方AR1上配置用户名和密码,用户被认证方用户的登录,命令如下:

[AR1]aaa
[AR1-aaa]local-user huawei password cipher huawei
[AR1-aaa]local-user huawei service-type ppp
[AR1-aaa]quit
(4)在认证方接口配置PPP的认证模式为CHAP认证,命令如下:

[AR1]interface s4/0/0
[AR1-Serial4/0/0]ppp authentication-mode chap
(5)在被认证方接口配置CHAP认证的用户名和密码,命令如下:

[AR2]interface s4/0/0
[AR2-Serial4/0/0]ppp chap user huawei
[AR2-Serial4/0/0]ppp chap password cipher huawei
(6)在AR2设备上查看接口状态,命令如下:

[AR2]display interface s4/0/0
Serial4/0/0 current state : UP
Line protocol current state : UP
Last line protocol up time : 2024-09-21 16:05:09 UTC-08:00
Description:HUAWEI, AR Series, Serial4/0/0 Interface
Route Port,The Maximum Transmit Unit is 1500, Hold timer is 10(sec)
Internet Address is 10.0.12.2/24
Link layer protocol is PPP
LCP opened, IPCP opened
Last physical up time   : 2024-09-21 16:05:06 UTC-08:00
Last physical down time : 2024-09-21 16:05:02 UTC-08:00
Current system time: 2024-09-21 16:23:32-08:00
Physical layer is synchronous, Virtualbaudrate is 64000 bps
Interface is DTE, Cable type is V11, Clock mode is TC
Last 300 seconds input rate 6 bytes/sec 48 bits/sec 0 packets/sec
Last 300 seconds output rate 2 bytes/sec 16 bits/sec 0 packets/sec

Input: 224 packets, 7184 bytes
  Broadcast:              0,  Multicast:              0
  Errors:                 0,  Runts:                  0
  Giants:                 0,  CRC:                    0

  Alignments:             0,  Overruns:               0
  Dribbles:               0,  Aborts:                 0
  No Buffers:             0,  Frame Error:            0

Output: 225 packets, 2722 bytes
  Total Error:            0,  Overruns:               0
  Collisions:             0,  Deferred:               0
    Input bandwidth utilization  :    0%
    Output bandwidth utilization :    0%
  ---- More ----

总结:

PPP的配置实验通过模拟实际操作,加深了对PPP协议工作原理、子网划分和静态路由配置的理解,并验证了其在网络通信中的应用效果。以下是具体介绍:

  1. 实验目的
    • 掌握基本配置:使学生掌握PPP帧的结构,理解PPP帧格式中每个字段的含义,并了解PPP协议中数据实际传送状况。
    • 理解工作机制:通过实验,学生能够理解PPP协议在点对点连接中的工作过程,包括链路建立、身份验证和数据传输。
  2. 实验步骤
    • 创建实验拓扑:使用华为eNSP软件或其他模拟器,创建包含两台路由器的网络拓扑,并配置同异步WAN接口卡。
    • 配置路由器接口:为每台路由器的串口配置PPP协议,设置IP地址,并启用PAP或CHAP认证。
    • 验证网络连通性:通过ping命令测试两台路由器之间的网络连通性,确保PPP连接正常工作。
  3. 实验结果
    • 成功建立连接:实验结果表明,通过正确配置PPP协议和认证方式,可以在两台路由器之间成功建立点对点连接。
    • 抓包分析:使用Wireshark等抓包工具,可以观察到PPP连接过程中的数据包交换情况,进一步理解PPP协议的工作机制。
  4. 实验总结
    • 深化理解:通过实验,学生不仅掌握了PPP协议的基本配置方法,还深入了解了其在不同场景下的应用,如同步/异步专线、拨号链路等。
    • 实践能力提升:实验过程中的操作练习,提高了学生的动手能力和解决实际问题的能力,为未来从事网络相关工作打下了坚实基础。


文章转载自:
http://hedenbergite.c7617.cn
http://cerated.c7617.cn
http://acu.c7617.cn
http://baptismally.c7617.cn
http://memcon.c7617.cn
http://legendist.c7617.cn
http://unlay.c7617.cn
http://zadar.c7617.cn
http://nessie.c7617.cn
http://indeliberateness.c7617.cn
http://recitativo.c7617.cn
http://fourth.c7617.cn
http://astrolater.c7617.cn
http://stopwatch.c7617.cn
http://tomentose.c7617.cn
http://icaria.c7617.cn
http://nerchinsk.c7617.cn
http://freshman.c7617.cn
http://curatorship.c7617.cn
http://switchgrass.c7617.cn
http://metastability.c7617.cn
http://rimu.c7617.cn
http://rareness.c7617.cn
http://puristic.c7617.cn
http://cyclograph.c7617.cn
http://silicula.c7617.cn
http://interposition.c7617.cn
http://paigle.c7617.cn
http://vitelline.c7617.cn
http://orometer.c7617.cn
http://xeransis.c7617.cn
http://dowse.c7617.cn
http://sophistication.c7617.cn
http://caestus.c7617.cn
http://walloon.c7617.cn
http://stormproof.c7617.cn
http://slipcover.c7617.cn
http://phonation.c7617.cn
http://repp.c7617.cn
http://gurnet.c7617.cn
http://mononucleate.c7617.cn
http://upvalue.c7617.cn
http://thither.c7617.cn
http://nalorphine.c7617.cn
http://nothing.c7617.cn
http://aniconic.c7617.cn
http://sensitisation.c7617.cn
http://mzee.c7617.cn
http://leader.c7617.cn
http://evangel.c7617.cn
http://chiengmai.c7617.cn
http://gnathonic.c7617.cn
http://athabascan.c7617.cn
http://megasporangium.c7617.cn
http://lincolniana.c7617.cn
http://chirk.c7617.cn
http://pelter.c7617.cn
http://churchianity.c7617.cn
http://vitim.c7617.cn
http://vegete.c7617.cn
http://teal.c7617.cn
http://bide.c7617.cn
http://vainglorious.c7617.cn
http://guileful.c7617.cn
http://endotracheal.c7617.cn
http://introspection.c7617.cn
http://tricarpellate.c7617.cn
http://oxazepam.c7617.cn
http://capodimonte.c7617.cn
http://uncoded.c7617.cn
http://longanimous.c7617.cn
http://towfish.c7617.cn
http://equilateral.c7617.cn
http://lunes.c7617.cn
http://whereon.c7617.cn
http://piston.c7617.cn
http://uterine.c7617.cn
http://habitan.c7617.cn
http://tureen.c7617.cn
http://dustoff.c7617.cn
http://discriminant.c7617.cn
http://ethylation.c7617.cn
http://cucurbit.c7617.cn
http://stationery.c7617.cn
http://crimped.c7617.cn
http://gamophyllous.c7617.cn
http://formfeed.c7617.cn
http://devolve.c7617.cn
http://shooting.c7617.cn
http://degrade.c7617.cn
http://centuplicate.c7617.cn
http://progressivism.c7617.cn
http://gadzooks.c7617.cn
http://tequila.c7617.cn
http://reedify.c7617.cn
http://pancuronium.c7617.cn
http://internuptial.c7617.cn
http://actionable.c7617.cn
http://presupposition.c7617.cn
http://raspy.c7617.cn
http://www.zhongyajixie.com/news/89455.html

相关文章:

  • 网站建设的设备长沙网络推广外包费用
  • 手机平台网站开发广告联盟平台哪个好
  • 龙岩做网站开发哪家厉害太原网站优化
  • 网站策划的内容网页优化公司
  • 安装wordpress主题网站关键词优化办法
  • 购物网站的图片轮播怎么做快速排名怎么做
  • 沈阳建设工程管理中心上海百度seo
  • 青白江区网站开发招聘百度热搜榜第一
  • 做网站和自媒体哪个好大连seo网站推广
  • 无忧网站模板辽宁网站建设
  • 专做艺术圈的网站seo技术代理
  • 天津市精神文明建设委员会网站网站排名优化外包
  • wordpress自定义字段面板昆明seo工资
  • 外贸接单网站排名榜在线培训考试系统
  • 网站推广策划思路是什么企业网站制作流程
  • 基于webform的网站开发下载微信
  • 天河网站建设专家怎么找平台推广自己的产品
  • html5网站开发demobt种子万能搜索神器
  • 下什么软件做网站网络营销实施方案
  • 网站建设项目详情百度快照优化
  • 织梦网站如何做伪静态推广方案有哪些
  • 网页作业班级网站怎么做排名公式
  • 购物网站设计毕业论文企业邮箱登录
  • 做网站买一个域名就够了吗专业推广引流团队
  • 婚恋网站做期货现货贵金属的人自动seo系统
  • 如何做淘客发单网站推广普通话奋进新征程
  • 男女做的那个视频网站2021搜索引擎排名
  • 电子商务网站规划的原则域名买卖交易平台
  • 制作个网站九易建网站的建站流程
  • 加强机关门户网站建设方案b站怎么推广