赫斯曼M4000系列交换机RM_GUI_L3P_Rel90图形化配置手册

需积分: 9 2 下载量 104 浏览量 更新于2024-07-16 收藏 2.53MB PDF 举报
本资源为赫斯曼M4000系列交换机的用户配置手册——RM_GUI_L3P_Rel9.002/2015,该手册针对的是图形用户界面(GU)的配置指导。赫斯曼作为工业以太网(包括Gigabit速率)交换机的提供商,其产品如PowerMICE、MACH104、MACH1040和MACH4000,特别强调了其GUI设计旨在简化用户的配置过程,使得即使是技术相对不熟悉的用户也能更轻松地理解和操作。 在本手册中,赫斯曼明确指出,尽管提及的商标名称未特别注明,但它们受到版权保护,不应被误认为可以随意使用。版权信息表明,所有手册和软件均受法律保护,未经许可不得复制、复制成电子介质或扫描。用户仅允许为自己备份软件副本,且对于包含嵌入式软件的设备,还需遵循随附光盘/DVD上提供的最终用户许可证协议。 性能特性部分,手册声明这些描述仅在订立合同时经过明确同意的情况下才具有约束力。这意味着用户在使用前应确保已充分了解并接受相关性能规格。手册的制作遵循了Hirschmann Automation and Control GmbH公司的最佳实践标准,旨在为用户提供准确且详尽的指导。 这份RM_GUI_L3P_Rel9.002/2015文档是赫斯曼M4000系列交换机图形用户界面配置的重要参考资料,它不仅包含了详细的设置步骤,还强调了法律合规性和性能承诺,确保用户在安全合规的范围内进行设备管理。
2023-07-22 上传

改进以下代码 currentpath = os.path.dirname(os.path.realpath(__file__)) time_date = '{}{}'.format(self.time_date,self.random_char(5)) contents = os.path.join(currentpath, time_date, self.ref.split('/')[-1]) ref = self.ref.split('/')[-1] private_token = self.gl.private_token path = "lib" if ref == "master": if os.path.exists(os.path.join(contents, self.name)): subprocess.call("rm -rf {} ".format(os.path.join(contents, self.name)), shell=True, cwd=contents) time.sleep(3) retcode = start.clone(int(self.project_id), ref, contents, private_token) if retcode == 0: start.clone_frontend(self.get_frontend()[0],self.get_frontend()[1], contents, private_token,self.get_frontend()[2] ) start.clone_abc(self.get_abc()[0], self.get_abc()[1], contents, private_token,"mc_abc") start.clone_model(start.get_clkrst()[0], start.get_clkrst()[1], contents, private_token,"clkrst") start.clone_model(start.get_ara()[0], start.get_ara()[1], contents, private_token,"ara") start.clone_model(start.get_wfl()[0], start.get_wfl()[1], contents, private_token,"wfl") subprocess.call("echo '*.t' >> {}".format(os.path.join(contents, self.name, ".gitignore")),shell=True) code = start.make_lib(os.path.join(contents, self.name)) rel, err = code.communicate() if "make: *** [main] Error 2" in err.decode('utf-8'): print("loading push error log") filename = os.path.join(contents, self.name, "error_make_log") subprocess.call("echo '' > {}".format(filename), shell=True, cwd=contents) start.error_make(filename, rel.decode('utf-8') ) start.error_make(filename, err.decode('utf-8') ) else: print("loading push libs") # start.push_lib(os.path.join(contents, self.name), path, ref)

2023-06-01 上传