基本信息
源码名称:华为S2300系列交换机web管理文件(页面模板)
源码大小:0.39M
文件格式:.zip
开发语言:CSS
更新时间:2022-10-04
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
华为S2300系列交换机web管理文件(页面模板)


开启交换机ftp功能,设置ftp用户名和密码 System-view
//进入系统视图

ftp server enable //使能FTP服务,使用ftp服务必须使用用户名和密码,所以要使用aaa验证模式

aaa 进入AAA视图

Local-user user-name password simple|cipher password
//配置ftp用户名和密码

Local-user user-name ftp-directory flash:/
//配置ftp用户的访问路径,必须配,否则ftp无法登录

local-user user-name service-type ftp|telnet|http
//配置此用户可以使用的服务类型,一个用户只能用于一种服务类型
使用ftp上传web网页文件至交换机,加载web网页
在PC的cmd视图下

执行命令ftp ip-address,输入用户名和密码,登录S2300

在FTP 视图下执行put D:\文件名 命令,将PC 上的Web
网页文件(例如:2300web.zip)上传至S2300。

ftp> put D:\2300web.zip //稍等片刻

200 Port command okay.

150 Opening ASCII mode data connection for web.zip.

226 Transfer complete.

ftp: by //输入 by退出ftp
交换机加载Web网页,并使能http服务

加载前,确保文件已经上传到交换机

System-view //进入系统视图

http server load web.zip //加载网页文件

http server enable //完成此命令后,输入交换机ip后,应该可以打开登录页面
创建,web网管帐号 AAA //进入aaa视图

Local-user user-name password simple|cipher password
//配置http用户名和密码

Local-user user-name service-type http
//配置用户user-name的访问类型为http

Quit

关闭FTP Undo ftp server


.
├── img
│   ├── background_img
│   │   ├── address_bg.gif
│   │   ├── content_menu.gif
│   │   ├── footer_bg.gif
│   │   ├── header_bg.gif
│   │   ├── lable_bg.gif
│   │   ├── lable_select.gif
│   │   ├── log_button.gif
│   │   ├── logging_bg.gif
│   │   ├── logo_bg.gif
│   │   └── menu_bg.gif
│   ├── button_img
│   │   └── exit_button.gif
│   ├── calendar.gif
│   ├── device
│   │   ├── fan.gif
│   │   ├── green_big.gif
│   │   ├── green_ele.gif
│   │   ├── green_small.gif
│   │   ├── grey_big.gif
│   │   ├── grey_ele.gif
│   │   ├── grey_small.gif
│   │   ├── white_big.gif
│   │   ├── white_ele.gif
│   │   └── white_small.gif
│   ├── down.gif
│   ├── e-handle.gif
│   ├── edit.gif
│   ├── infromation_img
│   │   └── logo.gif
│   ├── loading.gif
│   ├── none.gif
│   ├── picture_img
│   │   ├── address_pic.gif
│   │   └── system_file.gif
│   └── up.gif
├── script
│   ├── ajax.js
│   ├── config.js
│   ├── device.js
│   ├── device_obj.js
│   ├── en.js
│   ├── function.js
│   ├── imports.js
│   ├── language.js
│   ├── service.js
│   ├── tool
│   │   ├── Geometry.js
│   │   ├── calendar.js
│   │   ├── linkdetails.js
│   │   ├── sortabletable.js
│   │   ├── supermactext.js
│   │   ├── supertext.js
│   │   └── tooltip.js
│   ├── util.js
│   ├── util2.js
│   ├── vlan.js
│   └── zh-cn.js
├── style
│   └── frame_style
│       ├── frame_left.css
│       ├── frame_main.css
│       ├── frame_right.css
│       └── layout.css
├── view
│   ├── about_main.html
│   ├── equipment
│   │   ├── acl
│   │   │   ├── acl_all_list.html
│   │   │   ├── acl_base_rule_create.html
│   │   │   ├── acl_base_rule_modify.html
│   │   │   ├── acl_config_create.html
│   │   │   ├── acl_config_modify.html
│   │   │   ├── acl_efficient_time_range.html
│   │   │   ├── acl_high_rule_create.html
│   │   │   ├── acl_high_rule_modify.html
│   │   │   ├── acl_select_time_range.html
│   │   │   ├── acl_time_range_create.html
│   │   │   ├── acl_time_range_modify.html
│   │   │   ├── acl_twofloor_rule_create.html
│   │   │   └── acl_twofloor_rule_modify.html
│   │   ├── dns
│   │   │   ├── dns_domain_name_create.html
│   │   │   ├── dns_domain_name_list.html
│   │   │   ├── dns_information_list.html
│   │   │   ├── dns_resolve_config.html
│   │   │   ├── dns_server_create.html
│   │   │   └── dns_server_list.html
│   │   ├── mac.html
│   │   ├── mac_agingtime.html
│   │   ├── mac_blackhole.html
│   │   ├── mac_blackhole_add.html
│   │   ├── mac_learn.html
│   │   ├── mac_learn_config.html
│   │   ├── mac_static.html
│   │   ├── mac_static_add.html
│   │   ├── mac_static_modify.html
│   │   ├── mac_stickymac.html
│   │   ├── poe
│   │   │   ├── poe_config_edit.html
│   │   │   ├── poe_global_config.html
│   │   │   ├── poe_information.html
│   │   │   └── poe_interface_config.html
│   │   ├── stp
│   │   │   ├── stp_all_config.html
│   │   │   ├── stp_all_view.html
│   │   │   ├── stp_i_view.html
│   │   │   ├── stp_inteface_config.html
│   │   │   ├── stp_inteface_detail.html
│   │   │   ├── stp_modify_region.html
│   │   │   ├── stp_modify_region_a.html
│   │   │   ├── stp_modify_region_m.html
│   │   │   └── stp_region.html
│   │   ├── vlan.html
│   │   ├── vlan_add.html
│   │   ├── vlan_batchDel.html
│   │   ├── vlan_batchadd.html
│   │   ├── vlan_inteface.html
│   │   ├── vlan_inteface_config.html
│   │   ├── vlan_modify.html
│   │   ├── vlan_vlanif.html
│   │   └── voice_vlan
│   │       ├── voice_vlan_aging_time.html
│   │       ├── voice_vlan_config.html
│   │       ├── voice_vlan_config_create.html
│   │       ├── voice_vlan_oui.html
│   │       └── voice_vlan_oui_create.html
│   ├── frame_footer.html
│   ├── frame_header.html
│   ├── frame_left.html
│   ├── frame_middle.html
│   ├── frame_right.html
│   ├── interface
│   │   ├── flowmeter_detail.html
│   │   ├── flowmeter_main.html
│   │   ├── interface.html
│   │   ├── interface_config.html
│   │   ├── interface_config_bbb.html
│   │   ├── lacp.html
│   │   ├── loopback.html
│   │   ├── loopback_add.html
│   │   ├── loopback_modify.html
│   │   ├── trunk.html
│   │   ├── trunk_add.html
│   │   └── trunk_modify.html
│   ├── login.html
│   ├── main.html
│   ├── manage
│   │   ├── filemanage_download.html
│   │   ├── filemanage_filelist.html
│   │   ├── filemanage_recycle.html
│   │   ├── filemanage_upload.html
│   │   ├── plug.html
│   │   ├── restart_comeback.html
│   │   ├── restart_config.html
│   │   ├── software_update_config.html
│   │   ├── system_info_config.html
│   │   ├── system_time_config.html
│   │   └── undoplug.html
│   ├── port.html
│   ├── qos
│   │   ├── add_traffic_behavior.html
│   │   ├── add_traffic_classifier.html
│   │   ├── add_traffic_policy.html
│   │   ├── add_use_traffic_policy.html
│   │   ├── addmatch_traffic_classifier.html
│   │   ├── interface_limit.html
│   │   ├── mod_interface_limit.html
│   │   ├── mod_qos_queue_cirpir.html
│   │   ├── mod_traffic_behavior.html
│   │   ├── mod_traffic_classifier.html
│   │   ├── mod_traffic_policy.html
│   │   ├── qos_queue_cirpir.html
│   │   ├── select_acl.html
│   │   ├── traffic_behavior.html
│   │   ├── traffic_classifier.html
│   │   ├── traffic_policy.html
│   │   └── use_traffic_policy.html
│   ├── route
│   │   ├── route_ipv4config_add.html
│   │   ├── route_ipv4config_local.html
│   │   ├── route_ipv4config_modify.html
│   │   ├── route_ipv4config_public.html
│   │   └── route_table_ipv4.html
│   ├── safety
│   │   ├── aaa
│   │   │   ├── add_user.html
│   │   │   ├── mod_user.html
│   │   │   └── user.html
│   │   └── igmp_snooping
│   │       ├── igmp_snooping_global_config.html
│   │       ├── igmp_snooping_vlan_config.html
│   │       └── igmp_snooping_vlan_edit.html
│   ├── save.html
│   └── tool
│       ├── ping.html
│       ├── tracert.html
│       └── vct.html
└── 好例子网_2300web.zip

25 directories, 175 files