利用大语言模型(KIMI)构建智能产品的信息模型

          数字化的核心是数字化建模,为一个事物构建数字模型是一件非常繁杂和耗费人工的事情。利用大语言模型,能够轻松地生成设备的信息模型,我们的初步实验表明,只要提供足够的模板,就能够准确地生成设备的数字化模型。

        我们尝试了利用大预言模型生成OPCUA 和工业4.0 管理壳模型,实验中采用JSON 作为中间模型,构建了各种JSON 模板(template),得到了令人满意的结果。

笔者认为 大语言模型是生成产品信息模型的最佳工具。

产品信息模型与控制模型

        不同的应用场景,对事物的关注重点的不同的。例如,对于一个智能传感器而言,从商业的角度看,产品的信息模型中应该包括产品的类型,名称,制造商,技术规格,产品图片,3D模型,安全论证等信息。而对于应用工程师而言,关心的是产品的接口,协议和控制方法。产品的商业信息和使用信息是不同的。信息模型也不同。

   于是,产品的商业信息和使用信息采用的建模方式和标准也是不同的。产品信息主要标准包括GS-1,ETIM,ECL@SS。而控制模型包括OPC UA 和工业4.0 管理壳(AAS)。

  本文首先探讨在ETIM 模型的基础上扩展基于JSON 的控制信息模型。并且通过转换软件将JSON 控制模型转换成OPCUA 模型。采用JSON 的原因是JSON 更具有可读性。适合大语言模型构建产品模型。
      

智能产品信息模型   

  对于智能化技术产品而言,产品的信息包含下面几个方面:

  1. 产品的基本信息
  2. 产品的技术指标
  3. 产品的操作过程
  4. 产品的几何图形
  5. 产品的商务信息

   这些信息除了商务信息之外,通常包含在产品的数据表(DataSheet) 中,对于复杂的智能产品,为了帮助用户使用产品,还提供了辅助的技术文档。 商务信息在销售部门的报价单或者ERP 系统中。

           数字化的主要工作之一是构建生产过程中所有资产的数字化模型。产品的基本信息,技术指标和几何图形通常包含在产品分类目录中(例如ETIM,GS-1,ECL@SS)。产品的商务信息包含在电子商务平台信息模型中。而产品的操作过程包含在技术文档中。

  产品操作过程的模型

  在工业4.0 的相关标准中,数字资产的数字化模型被称为资产管理壳(AAS),其中包含了操作数据和服务,这是模型能够转换成自动控制系统中的信息模型,例如OPCUA 信息模型。

       资产管理壳和OPC UA 是相对比较复杂的形式化信息模型,构建这些信息模型要借助专业的设计工具,并且具备一定的AAS和OPCUA 背景知识,笔者关注的重点是使用更加便捷,高效的方法描述产品的信息模型。特别是ChatGPT 技术的出现。为使用自然语言描述信息模型带来了新的机会。在我看来,chatGPT 为代表的大语言模型最强大的能力是将人类自然语言的内容转换成为机器能够识别的形式化信息。

JSON LD 物模型

JSON -LD 的全称是(JSON linked data),是Google公司提出来的,W3C 发布 JSON-LD 1.1 正式推荐标准。

       JSON-LD 是一种轻量级链接数据格式。它 对人类来说很容易读写。它基于已经 成功的 JSON 格式,并提供了一种帮助 JSON 数据互操作的方法。

JSON-LD的初衷是提供了一种更简单的方法来从网站创建机器可读数据以提升搜索结果。

        具体来说,使用 <script type="application/ld+json"> 标签可以让网页中的元素被编码为一个 JSON-LD 对象,并将其嵌入到页面中。这个 JSON-LD 对象可以包含诸如实体名称、描述、图像、地址、联系方式等属性信息,让搜索引擎更好地理解网页的含义和结构。

        通过使用结构化数据,网站管理员可以帮助搜索引擎更好地了解他们网站的内容和结构,并且有助于提高网站在搜索引擎中的排名和可见度。另外,使用 JSON-LD 还可以使您的网站在 Google 的搜索结果中显示富媒体的搜索结果,例如公司地址、电话号码、评分等等。

在网页正文中嵌入结构化数据,例如描述组织、产品或事件的相关信息。以下是一个示例:
 

<!DOCTYPE html>
<html><head><script type="application/ld+json">{"@context": "https://schema.org/","@type": "Organization","name": "Example Company","url": "https://www.example.com/","logo": "https://www.example.com/logo.png"}</script></head><body><h1>Welcome to Example Company</h1><p>Visit our website at <a href="https://www.example.com/">www.example.com</a></p></body>
</html>

JSON-LD 被用于物联网(Web of thing )描述物模型,下面是一个例子:

{"id": "urn:dev:wot:com:example:servient:lamp","name": "MyLampThing","securityDefinitions": {"basic_sc": {"scheme": "basic"}},"security": ["basic_sc"],"properties": {"status" : {"type": "string","forms": [{"href": "https://mylamp.example.com/status"}]}},"actions": {"toggle" : {"forms": [{"href": "https://mylamp.example.com/toggle"}]}},"events":{"overheating":{"data": {"type": "string"},"forms": [{"href": "https://mylamp.example.com/oh","subprotocol": "longpoll"}]}},"annotation": {"@context": {"@base": "http://example.org/data/","vendor": "http://vendor.org/product/"}"@type": "vendor:color-light","isAbstractionOf": "appartment/134#light-1"}
}

 受到WoT 使用JSON LD 建模的启发,我们可以利用JSON构建控制过程的模型:

  • JSON 更适合人类阅读和书写
  • JSON 更适合LLM 生成

大语言模型生成产品模型的实验

        笔者曾经尝试使用LLM 直接生成产品信息模型,结果发现,LLM 的输出存在不一致的现象,在数字化建模中是无法接受的。而LLM是基于语言的实例来学习语言的语法。它目前无法学习schema 规范。因此,我放弃了直接生成产品模型的想法,而是为LLM 提供一个JSON 模型的模板,让LLM 完成模型的实例化.通过阅读产品的datasheet ,提取相关信息,填入预先定义的JSON 模型中,并且将JSON 模型中未定义的属性作为专用属性增补在后面。

构建产品信息模型

这是产品的控制模型: 

{"name":"mydevice","description":"description of mydevice","group_id":"group id","class_id":"class_id","properties":[{"name":"status","type":"string","description":"the status of device"},{"name":"temperature","type":"numeric","description":"the temperature of device","max":"max of value","min":"min of value","value":"the default value"}],"actions":[{"name":"the name og action","description":"the description of the action","arguments":{"inputs":[],"output"[]}}],"events":[{"name":" the name of event","description":"description of the event"}]
}

输入产品控制模型的描述

使用word 编写了一个产品的简单描述:

这是产品的信息
名称 温度传感器
属性:温度最大值:180最小值: -30初始值:0
电流初始值:0
电压
初始值:24
动作:
初始化输入:
输入1:电流初始值输出:无
读取温度:输入:无输出:
输出1当前温度
复位:输入:无
输出:无

将产品模型和产品信息上传给kimi 大模型,结果为:

{"name": "温度传感器","properties": {"temperature": {"max": 180,"min": -30,"initial_value": 0},"current": {"initial_value": 0},"voltage": {"initial_value": 24}},"actions": [{"name": "initialize","description": "初始化设备,设置电流的初始值","arguments": {"inputs": [{"name": "current_initial_value","description": "电流的初始值"}],"outputs": []}},{"name": "read_temperature","description": "读取设备当前的温度值","arguments": {"inputs": [],"outputs": [{"name": "current_temperature","description": "当前的温度值"}]}},{"name": "reset","description": "复位设备到初始状态","arguments": {"inputs": [],"outputs": []}}]
}

构建工业4.0 管理壳信息模型

        同样地,我们根据《IDTA 02006-2-0 Digital Nameplate for Industrial Equipment》 规范构建了工业设备数字铭牌的JSON 模板,生成了一个锅炉的数字铭牌:

JSON 模板

{"submodelId": "urn:company:submodel:nameplate","submodelName": "namepalte","description": "the name plate","semanticId": "http://www.example.com/nameplate","globalAssetId": "urn:company:asset:67890","ManufacturerName": "legally valid designation of the natural or judicial person which is directly responsible for the design, production, packaging and labeling of a product in respect to its being brought into circulation","ManufacturerProductDesignation": "Short description of the product ","ContactInformation": {"Street":"street name and house number","Zipcode":"ZIP code of address","CityTown":"town or city","NationalCode":"code of a country","Phone":{},"Fax":{},"Email":{},"IPCommunication":{}},"ManufacturerProductRoot": "Top level of a 3 level manufacturer specific product hierarchy","ManufacturerProductType": "Characteristic to differentiate between different products of a product family or special variants","OrderCodeOfManufacturer": "By manufactures issued unique combination of numbers and letters used to identify the device for ordering","ProductArticleNumberOfManufacturer": "unique product identifier of the manufacturer","SerialNumber": "unique combination of numbers and letters used to identify the device once it has been manufactured","YearOfConstruction": "Date from which the production and / or development process is completed or from which a service is provided completely","HardwareVersion": "Version of the hardware supplied with the device","FirmwareVersion": "Version of the firmware supplied with the device","SoftwareVersion": "Version of the software used by the device","CountryOfOrigin": "Country where the product was manufactured","CompanyLogo": "A graphic mark used to represent a company","Markings": {"MarkingName":"common name of the marking","DesignationOfCertificateOrApproval":"alphanumeric character sequence identifying a certificate or approva","IssueDate":"Date, at which the specified certificate is issued","ExpiryDate":"Date, at which the specified certificate expires ","MarkingFile":"conformity symbol of the marking","MarkingAdditionalText":"where applicable, additional information on the marking in plain text, e.g. the ID-number of the notified body involved in the conformity process","ExplosionSafeties":{"ExplosionSafety":{"DesignationOfCertificateproval":"alphanumeric character sequence identifying a certificate or approval","TypeOfApproval":"classification according to the standard or directive to which the approval applies","ApprovalAgencyTestingAgency":"certificates and approvals pertaining to general usage and compliance with constructional standards and directives","TypeOfProtection":"classification of an explosion protection according to the specific measures applied to avoid ignition of a surrounding explosive atmosphere","RatedInsulationVoltage":"from the manufacturer for the capital assets limited isolation with given(indicated) operating conditions","InstructionsControlDrawing":"designation used to uniquely identify a control/reference drawing stored in a file system","SpecificConditionsForUse":"","IncompleteDevice":"","AmbientConditions":{"DeviceCategory":"category of device in accordance with directive","EquipmentProtectionLeve":"part of a hazardous area classification system indicating the likelihood of the existence of a classified hazard","RegionalSpecificMarking":"Marking used only in specific regions","TypeOfProtection":"","ExplosionGroup":"","MinimumAmbientTemperature":"","MaxAmbientTemperature":"","MaxSurfaceTemperatureForDustProof":"","TemperatureClass":""},"ProcessConditions":{"DeviceCategory":"","EquipmentProtectionLeve":"","RegionalSpecificMarking":"","TypeOfProtection":"","ExplosionGroup":"","LowerLimitingValueOfProcessTemperature":"","UpperLimitingValueOfProcessTemperature":"","MaxSurfaceTemperatureForDustProof":"","TemperatureClass":""},"ExternalElectricalCircuit":{"DesignationOfElectricalTerminal":"","TypeOfProtection":"","EquipmentProtectionLevel":"","ExplosionGroup":"","Characteristics":"","Fisco":"","TwoWISE":"","SafetyRelatedPropertiesForPassiveBehaviour":{"MaxInputPower":"","MaxInputVoltage":"","MaxInputCurrent":"","MaxInternalCapacitance":"","MaxInternalInductance":"",},"SafetyRelatedPropertiesForActiveBehaviour":{"MaxOutputPower":"","MaxOutputVoltage":"","MaxOutputCurrent":"","MaxExternalCapacitance":"","MaxExternalInductance":"","MaxExternalInductanceResistanceRatio":"",}}}}},"AssetSpecificProperties": "Group of properties that are listed on the asset's nameplate and are grouped based on guidelines",
}

将该文件以PDF 格式上传给KIMI。然后开始对话 

KIMI 的会话

“你是一个工业4.0 专家,请构建一个锅炉的数字铭牌的子管理壳模型”

输出

{"submodelId": "urn:company:submodel:nameplate:boiler","submodelName": "Boiler Nameplate","description": "Digital nameplate for industrial boiler","semanticId": "http://www.example.com/boiler-nameplate","globalAssetId": "urn:company:asset:boiler123","ManufacturerName": "ABC Boiler Systems Ltd.","ManufacturerProductDesignation": "Industrial Steam Boiler","ContactInformation": {"Street": "123 Industrial Park Road","Zipcode": "12345","CityTown": "Metropolis City","NationalCode": "US","Phone": "555-1234","Fax": "555-5678","Email": "info@abcboiler.com","IPCommunication": {"IP": "192.168.1.10","Port": "80"}},"ManufacturerProductRoot": "Boilers","ManufacturerProductType": "Steam Boiler","OrderCodeOfManufacturer": "BTL-100-S","ProductArticleNumberOfManufacturer": "BTL100S-001","SerialNumber": "SN2023040123456","YearOfConstruction": "2023","HardwareVersion": "HW1.0","FirmwareVersion": "FW1.0","SoftwareVersion": "SW1.0","CountryOfOrigin": "USA","CompanyLogo": "http://www.abcboiler.com/logo.png","Markings": {"MarkingName": "CE Mark","DesignationOfCertificateOrApproval": "CE123456","IssueDate": "2023-01-01","ExpiryDate": "2026-01-01","MarkingFile": "http://www.abcboiler.com/cert/CE123456.png","MarkingAdditionalText": "Notified Body ID: NB789"},"ExplosionSafeties": {// 省略了详细内容,根据实际安全标准和认证进行填充},"AssetSpecificProperties": {"BoilerType": "Fire-Tube","FuelType": "Natural Gas","OutputCapacity": "1000 kg/h","WorkingPressure": "15 bar","SafetyValveRating": "16 bar","Efficiency": "85%","ControlSystem": "Automatic with Remote Monitoring"}
}

实验-2 构建反应釜的数字铭牌

KIMI 会话

“你是一个工业4.0 专家,请构建一个反应釜的数字铭牌的子管理壳模型”

回答

{"submodelId": "urn:company:submodel:nameplate:reactor","submodelName": "Reactor Nameplate","description": "Digital nameplate containing key information about the reactor","semanticId": "http://www.example.com/nameplate#reactor","globalAssetId": "urn:company:asset:reactor456","ManufacturerName": "Chemical Processing Inc.","ManufacturerProductDesignation": "Stainless Steel Reaction Vessel","ContactInformation": {"Street": "200 Chemical Road","Zipcode": "54321","CityTown": "Industrial City","NationalCode": "DE","Phone": {"countryCode": "49","areaCode": "69","number": "123-456-789"},"Fax": {"countryCode": "49","areaCode": "69","number": "123-456-098"},"Email": "info@chemicalprocessing.com","IPCommunication": {"IP": "192.168.1.20","Protocol": "HTTPS"}},"ManufacturerProductRoot": "Reaction Vessels","ManufacturerProductType": "Agitated Reactor","OrderCodeOfManufacturer": "CPI-RXV-200","ProductArticleNumberOfManufacturer": "ART-2002","SerialNumber": "SN2023000567","YearOfConstruction": "2023","HardwareVersion": "HWv1.2","FirmwareVersion": "FWv1.1","SoftwareVersion": "SWv2.2","CountryOfOrigin": "Germany","CompanyLogo": "http://www.chemicalprocessing.com/logo.png","Markings": {"MarkingName": "Pressure Vessel Certification","DesignationOfCertificateOrApproval": "PVC-2023-789","IssueDate": "2023-02-10","ExpiryDate": "2026-02-10","MarkingFile": "http://www.chemicalprocessing.com/cert/PVC-2023-789.png","MarkingAdditionalText": "Certification Body: Pressure Vessel Certifiers Ltd."},"AssetSpecificProperties": {"VesselType": "Stainless Steel Reactor","VolumeCapacity": "2000 Liters","WorkingPressure": "10 bar","TemperatureRange": "-20°C to 200°C","AgitationSpeed": "0 to 500 RPM","HeatingMethod": "Electric","MaterialOfConstruction": "304 Stainless Steel","DesignCode": "ASME Section VIII, Div. 1","SafetyFeatures": "Pressure relief valve, temperature control system"}
}

实验表明,我们可以根据标准和规范直接生成各种模型。 构建OPCUA 及其配套规范也是可行的。

结论

下一步我们的工作:

  • 依据OPC UA 和I4.0 AAS 规范构建更多的产品模型的模板
  • 收集产品的规格书(datasheet)

   根据产品的datasheet 直接生成产品信息模型,是LLM 擅长的工作。它将对开放自动化系统产生深远的影响。在这之前,仍然有许多基础工作需要完成。没有数据基础,贸然推广应用收到惊艳的 效果。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/6755.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Pytorch 实现 GAN 对抗网络

GAN 对抗网络 GAN&#xff08;Generative Adversarial Network&#xff09;对抗网络指的是神经网络中包括两个子网络&#xff0c;一个用于生成信息&#xff0c;一个用于验证信息。下面的例子是生成图片的对抗网络&#xff0c;一个网络用于生成图片&#xff0c;另一个网络用于验…

[C++基础学习-06]----C++指针详解

前言 指针是一个存储变量地址的变量&#xff0c;可以用来访问内存中的数据。在C中&#xff0c;指针是一种非常有用的数据类型&#xff0c;可以帮助我们在程序中对内存进行操作和管理。 正文 01-指针简介 指针的基本概念如下&#xff1a; 声明指针&#xff1a;使用“*”符…

[单片机课设]十字路口交通灯的设计

题目要求&#xff1a; 模拟交通灯运行情况。南北绿灯亮30秒&#xff0c;南北黄灯亮3秒&#xff0c;东西红灯亮33秒&#xff1b;南北红灯亮33秒&#xff0c;东西绿灯亮30秒&#xff0c;东西黄灯亮3秒&#xff1b;要求数码管同步显示时间的倒计时&#xff0c;用定时器实现延时。…

(HAL)STM32F103C8T6——内部flash模拟EEPROM

内部Flash大部分空间是用来存储烧录进单片机的程序代码&#xff0c;因此可以将非代码等无关区域用来存储数据。项目工程的代码量可以通过Keil uVision5软件底下框查看&#xff0c;如下图所示。一般只需参考代码量&#xff08;Code&#xff09;以及只读数据&#xff08;RO-data&…

某盾BLACKBOX逆向关键点

需要准备的东西&#xff1a; 1、原JS码 2、AST解混淆码 3、token(来源于JSON) 一、原JS码很好获取&#xff0c;每次页面刷新&#xff0c;混淆的代码都会变&#xff0c;这是正常&#xff0c;以下为部分代码 while (Qooo0) {switch (Qooo0) {case 110 14 - 55: {function O0…

C++入门第二节--关键字、命名空间、输入输出

点赞关注不迷路&#xff01;本节涉及c入门关键字、命名空间、输入输出... 1. C关键字 C总计63个关键字&#xff0c;C语言32个关键字 asmdoifreturntrycontinueautodoubleinlineshorttypedefforbooldynamic_castintsignedtypeidpublicbreakelselongsizeoftypenamethrowcaseen…

A Dexterous Hand-Arm Teleoperation System

A Dexterous Hand-Arm Teleoperation System Based on Hand Pose Estimation and Active Vision解读 摘要1. 简介2.相关工作2.1 机器人遥操作2.2 主动视觉&#xff08;Active Vision&#xff09; 3. 硬件设置4. 基于视觉的机器人手部姿态估计4.1 Transteleop4.2 Dataset 5. 主动…

升级OpenSSH版本(安装telnet远程管理主机)

一 OpenSSH是什么 OpenSSH 是 SSH &#xff08;Secure SHell&#xff09; 协议的免费开源实现。SSH协议族可以用来进行远程控制&#xff0c; 或在计算机之间传送文件。而实现此功能的传统方式&#xff0c;如telnet(终端仿真协议)、 rcp ftp、 rlogin、 rsh都是极为不安全的&…

C++奇迹之旅:string类接口详解(上)

文章目录 &#x1f4dd;为什么学习string类&#xff1f;&#x1f309; C语言中的字符串&#x1f309;string考察 &#x1f320;标准库中的string类&#x1f309;string类的常用接口说明&#x1f320;string类对象的常见构造 &#x1f6a9;总结 &#x1f4dd;为什么学习string类…

二维泊松方程(Neumann+Direchliet边界条件)有限元Matlab编程求解|程序源码+说明文本

专栏导读 作者简介&#xff1a;工学博士&#xff0c;高级工程师&#xff0c;专注于工业软件算法研究本文已收录于专栏&#xff1a;《有限元编程从入门到精通》本专栏旨在提供 1.以案例的形式讲解各类有限元问题的程序实现&#xff0c;并提供所有案例完整源码&#xff1b;2.单元…

stm32开发之netxduo网口通讯,网线热插拔处理

前言 在使用netxduo组件时&#xff0c;如果在上电过程中&#xff0c;未插入网线&#xff0c;eth驱动使能过程中未正常初始化本次使用以下几种方式进行设置 问题原因 使用定时器事件回调方式 网络组件中进行调整 /** Copyright (c) 2024-2024&#xff0c;shchl** SPDX-Licen…

Initialize failed: invalid dom.

项目场景&#xff1a; 在vue中使用Echarts出现的错误 问题描述 提示&#xff1a;这里描述项目中遇到的问题&#xff1a; 例如&#xff1a;在vue中使用Echarts出现的错误 ERROR Initialize failed: invalid dom.at Module.init (webpack-internal:///./node_modules/echarts…

Delta lake with Java--入门

最近在研究数据湖&#xff0c;虽然不知道研究成果是否可以用于工作&#xff0c;但我相信机会总是留给有准备的人。 数据湖尤其是最近提出的湖仓一体化概念&#xff0c;很少有相关的资料&#xff0c;目前开源的项目就三个&#xff0c;分别是hudi, delta lake, iceberg。最终选择…

算法打卡day41

今日任务&#xff1a; 1&#xff09;198.打家劫舍 2&#xff09;213.打家劫舍II 3&#xff09;337.打家劫舍III 4&#xff09;复习day16 198.打家劫舍 题目链接&#xff1a;198. 打家劫舍 - 力扣&#xff08;LeetCode&#xff09; 你是一个专业的小偷&#xff0c;计划偷窃沿街…

【hive】transform脚本

文档地址&#xff1a;https://cwiki.apache.org/confluence/display/Hive/LanguageManualTransform 一、介绍二、实现1.脚本上传到本地2.脚本上传到hdfs 三、几个需要注意的点1.脚本名不要写全路径2.using后面语句中&#xff0c;带不带"python"的问题3.py脚本Shebang…

LNMP部署wordpress

1.环境准备 总体架构介绍 序号类型名称外网地址内网地址软件02负载均衡服务器lb0110.0.0.5192.168.88.5nginx keepalived03负载均衡服务器lb0210.0.0.6192.168.88.6nginx keepalived04web服务器web0110.0.0.7192.168.88.7nginx05web服务器web0210.0.0.8192.168.88.8nginx06we…

基于Springboot的校园生活服务平台(有报告)。Javaee项目,springboot项目。

演示视频&#xff1a; 基于Springboot的校园生活服务平台&#xff08;有报告&#xff09;。Javaee项目&#xff0c;springboot项目。 项目介绍&#xff1a; 采用M&#xff08;model&#xff09;V&#xff08;view&#xff09;C&#xff08;controller&#xff09;三层体系结构…

shell脚本-监控系统内存和磁盘容量

监控内存和磁盘容量除了可以使用zabbix监控工具来监控&#xff0c;还可以通过编写Shell脚本来监控。 #! /bin/bash #此脚本用于监控内存和磁盘容量&#xff0c;内存小于500MB且磁盘容量小于1000MB时报警#提取根分区剩余空间 disk_size$(df / | awk /\//{print $4})#提取内存剩…

《机器学习算法面试宝典》重磅发布!

我们经常会组织场算法岗技术&面试讨论会&#xff0c;会邀请了一些互联网大厂朋友、今年参加社招和校招面试的同学。 针对新手如何入门算法岗、该如何准备面试攻略、面试常考点等热门话题进行了深入的讨论。 基于讨论和经验总结&#xff0c;历时半年的梳理和修改&#xff…

eNSP-浮动静态路由配置

ip route-static 192.168.1.0 24 192.168.3.2 preference 60 #设置路由 目标网络地址 和 下一跳地址 preference值越大 优先级越低 一、搭建拓扑结构 二、主机配置 pc1 pc2 三、配置路由器 1.AR1路由器配置 <Huawei>sys #进入系统视图 [Huawei]int g0/0/0 #进入接…