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

织梦怎么用框架实现在浏览器的地址栏只显示网站的域名而不显示出文件名搜索网站排行

织梦怎么用框架实现在浏览器的地址栏只显示网站的域名而不显示出文件名,搜索网站排行,企业网站建设费用需要多少钱,建网站麻烦吗以下是华为交换机常用的操作指令总结&#xff0c;按功能分类说明&#xff1a; 1. 系统管理 进入系统视图system-view返回用户视图quit保存配置save查看当前配置display current-configuration重启设备reboot2. 用户管理 配置用户密码local-user <username> password ir…

以下是华为交换机常用的操作指令总结,按功能分类说明:


1. 系统管理

  • 进入系统视图
    system-view
    
  • 返回用户视图
    quit
    
  • 保存配置
    save
    
  • 查看当前配置
    display current-configuration
    
  • 重启设备
    reboot
    

2. 用户管理

  • 配置用户密码
    local-user <username> password irreversible-cipher <password>
    
  • 设置用户权限
    local-user <username> privilege level <level>
    
  • 查看在线用户
    display users
    

3. 网络接口配置

  • 进入接口视图
    interface <interface-type> <interface-number>
    
  • 配置接口 IP 地址
    ip address <ip-address> <subnet-mask>
    
  • 启用或关闭接口
    undo shutdown  # 启用接口
    shutdown       # 关闭接口
    
  • 查看接口状态
    display interface <interface-type> <interface-number>
    

4. VLAN 配置

  • 创建 VLAN
    vlan <vlan-id>
    
  • 配置接口加入 VLAN
    interface <interface-type> <interface-number>
    port link-type access
    port default vlan <vlan-id>
    
  • 配置 Trunk 接口
    interface <interface-type> <interface-number>
    port link-type trunk
    port trunk allow-pass vlan <vlan-id>
    

5. 路由配置

  • 配置静态路由
    ip route-static <destination-ip> <subnet-mask> <next-hop-ip>
    
  • 查看路由表
    display ip routing-table
    

6. 交换机信息查看

  • 查看设备基本信息
    display version
    
  • 查看设备运行时间
    display uptime
    
  • 查看设备硬件资源
    display device
    
  • 查看日志信息
    display logbuffer
    

7. 安全配置

  • 配置 ACL(访问控制列表)
    acl <acl-number>
    rule <rule-id> permit/deny <source-ip> <wildcard-mask>
    
  • 应用 ACL 到接口
    interface <interface-type> <interface-number>
    traffic-filter inbound acl <acl-number>
    

8. 远程管理

  • 配置 Telnet
    telnet server enable
    
  • 配置 SSH
    ssh user <username> authentication-type password
    
  • 查看远程登录会话
    display ssh user-information
    

9. 文件管理

  • 查看文件系统
    dir
    
  • 上传或下载配置文件
    ftp <server-ip>
    tftp <server-ip>
    
  • 删除文件
    delete <file-name>
    

10. 故障排查

  • Ping 测试
    ping <destination-ip>
    
  • Traceroute 路由跟踪
    tracert <destination-ip>
    
  • 查看诊断信息
    display diagnostic-information
    

以下是关于华为交换机的两种认证模式,以及系统升级和备份的相关操作说明:


1. 两种认证模式

华为交换机支持多种认证模式,以下是两种常见模式:

(1) 密码认证模式

  • 特点:仅使用用户名和密码进行登录验证,配置简单。
  • 配置方法
    # 启用 Telnet 服务
    telnet server enable# 配置 VTY 用户界面(以 VTY 0-4 为例)
    system-view
    user-interface vty 0 4
    authentication-mode password
    set authentication password cipher <password>
    
  • 使用场景:适用于简单场景,不需要高安全性的环境。

(2) SSH 公钥认证模式

  • 特点:通过 SSH 使用密钥对进行身份认证,更安全。

  • 配置方法

    1. 创建 SSH 用户并指定认证模式为密钥对
      system-view
      ssh user <username> authentication-type rsa
      
    2. 生成或导入公私钥对
      # 生成本地 RSA 密钥对
      rsa local-key-pair create
      
    3. 启用 SSH 服务
      ssh server enable
      
    4. 配置 VTY 用户界面支持 SSH 登录
      user-interface vty 0 4
      protocol inbound ssh
      
  • 使用场景:适用于需要高安全性、远程管理的场景。


2. 系统升级与备份

(1) 系统升级

  • 步骤
    1. 准备升级文件:确保已经获取到交换机对应型号的升级文件(通常是 .cc.bin 文件)。
    2. 上传升级文件到设备
      使用 FTP 或 TFTP 将升级文件传输到设备的 flash 存储空间:
      ftp <server-ip>
      get <upgrade-file>
      
    3. 加载升级文件
      boot-loader file flash:/<upgrade-file> all
      
    4. 查看当前启动文件
      display boot
      
    5. 重启设备以完成升级
      reboot
      

(2) 系统配置备份

  • 步骤
    1. 保存当前配置
      save
      
    2. 将配置文件上传到远程服务器
      使用 FTP 或 TFTP 上传配置文件:
      ftp <server-ip>
      put flash:/vrpcfg.zip
      
    3. 备份整个文件系统(可选):
      copy flash:/ vrpcfg-backup/
      

(3) 系统配置恢复

  • 步骤
    1. 从远程服务器下载备份文件
      ftp <server-ip>
      get <backup-file>
      
    2. 加载备份配置文件
      configuration replace flash:/<backup-file>
      
    3. 重新启动以应用恢复配置
      reboot
      

华为 S3700 V100R006C05

系列交换机的常用指令总结,按功能分类说明,涵盖基本操作、接口管理、VLAN配置、路由设置及安全等:


1. 系统管理指令

  • 进入系统视图模式
    system-view
    
  • 保存当前配置
    save
    
  • 查看当前设备版本信息
    display version
    
  • 查看设备运行时间
    display uptime
    
  • 显示设备基本信息
    display device
    
  • 显示当前配置
    display current-configuration
    
  • 重启设备
    reboot
    

2. 接口管理

  • 进入接口视图
    interface <interface-type> <interface-number>
    
    示例:
    interface GigabitEthernet 0/0/1
    
  • 配置接口IP地址
    ip address <ip-address> <subnet-mask>
    
    示例:
    ip address 192.168.1.1 255.255.255.0
    
  • 启用接口
    undo shutdown
    
  • 关闭接口
    shutdown
    
  • 查看接口状态
    display interface <interface-type> <interface-number>
    

3. VLAN 配置

  • 创建 VLAN
    vlan <vlan-id>
    
    示例:
    vlan 10
    
  • 配置接口为 Access 模式并加入 VLAN
- **Access 模式**:- 主要用于连接终端设备(如电脑、打印机)。- 只属于一个 VLAN。- 发送和接收的数据帧没有 VLAN 标签。- 简单理解就是,所有通过该接口进出的数据都属于同一个特定的 VLAN。- **Trunk 模式**:- 用于交换机之间或交换机与路由器之间的连接。- 可以承载多个 VLAN 的流量。- 数据帧带有 VLAN 标签,以便识别它们各自所属的 VLAN。- 允许不同 VLAN 的数据在同一物理链路上共存并正确传输到目的地。总结:Access 接口是为单一 VLAN 设计的,而 Trunk 接口可以同时处理来自多个 VLAN 的数据。
interface <interface-type> <interface-number>
port link-type access
port default vlan <vlan-id>

示例:

interface GigabitEthernet 0/0/1
port link-type access
port default vlan 10
  • 配置接口为 Trunk 模式
    port link-type trunk
    port trunk allow-pass vlan <vlan-id>
    
    示例:
    interface GigabitEthernet 0/0/1
    port link-type trunk
    port trunk allow-pass vlan 10 20
    

4. 路由配置

  • 配置静态路由
    ip route-static <destination-ip> <subnet-mask> <next-hop-ip>
    
    示例:
    ip route-static 192.168.2.0 255.255.255.0 192.168.1.2
    
  • 查看路由表
    display ip routing-table
    
  • 启用 RIPv2 动态路由
    rip
    version 2
    network <network-address>
    
    示例:
    rip
    version 2
    network 192.168.1.0
    

5. 安全配置

  • 配置 ACL(访问控制列表)

    acl number <acl-number>
    rule <rule-id> permit/deny <protocol> source <source-ip> <wildcard-mask> destination <destination-ip> <wildcard-mask>
    

    示例:

    acl number 3000
    rule 5 permit ip source 192.168.1.0 0.0.0.255 destination 192.168.2.0 0.0.0.255
    
  • 这行定义了一个编号为 3000 的扩展 ACL。ACL 编号用于标识不同的 ACL,并且根据编号范围可以知道它是标准 ACL 还是扩展 ACL。在这个例子中,3000 是一个扩展 ACL 的编号。

  • rule 5 表示这是 ACL 中的第一个规则(规则序号从 5 开始,以 5 的倍数递增)。

  • permit 表示允许符合条件的数据包通过。

  • ip 指定这条规则适用于 IP 协议。

  • source 192.168.1.0 0.0.0.255 定义了源 IP 地址的范围,即 192.168.1.0 到 192.168.1.255。

  • destination 192.168.2.0 0.0.0.255 定义了目的 IP 地址的范围,即 192.168.2.0 到 192.168.2.255。

综合来看,这条规则的意思是:允许来自 192.168.1.0/24 网络的所有 IP 数据包到 192.168.2.0/24 网络。

  • 将 ACL 应用于接口
interface <interface-type> <interface-number>
traffic-filter inbound acl <acl-number>  // 假设我们要应用到 GigabitEthernet 0/0/1 接口interface GigabitEthernet 0/0/1  // 选择接口traffic-filter inbound acl 3000  // 将 ACL 3000 应用到入站流量save  // 保存配置display acl all  // 查看所有 ACL 和它们的规则display traffic-filter interface GigabitEthernet 0/0/1  // 查看指定接   口上的流量过滤器状态
  • interface <interface-type> <interface-number> 用来指定要应用 ACL 的具体接口类型和编号。例如,interface GigabitEthernet0/1 指的是千兆以太网接口 0/1。

  • traffic-filter inbound acl <acl-number> 将编号为 <acl-number> 的 ACL 应用到该接口的入站流量上。这意味着所有进入此接口的数据包都会被检查是否符合 ACL 规则;如果数据包匹配 ACL 中的 permit 规则,则允许通过;否则,数据包将被丢弃。

综上所述,这段配置的作用是:创建一个扩展 ACL(编号 3000),其中包含一条规则,允许来自 192.168.1.0/24 网络到 192.168.2.0/24 网络的所有 IP 流量,并将这个 ACL 应用到指定接口的入站流量过滤上。这可以确保只有特定源地址范围内的设备能够向目标地址范围发送数据,从而提高了网络的安全性。


6. 故障排查

  • Ping 测试
    ping <destination-ip>
    
  • Traceroute 路由跟踪
    tracert <destination-ip>
    
  • 查看日志信息
    display logbuffer
    
  • 查看设备诊断信息
    display diagnostic-information
    

7. 文件管理

  • 查看文件列表
    dir
    
  • 删除文件
    delete <file-name>
    
  • 上传/下载配置文件
    ftp <server-ip>
    put/get <file-name>
    

以上是 华为 S3700 V100R006C05 系列交换机的常用配置和操作指令,可根据实际需求进行配置。


文章转载自:
http://dinncohaemorrhoid.tqpr.cn
http://dinnconovate.tqpr.cn
http://dinncoblindness.tqpr.cn
http://dinncofandango.tqpr.cn
http://dinncocountenance.tqpr.cn
http://dinncohagiarchy.tqpr.cn
http://dinncocither.tqpr.cn
http://dinncobouquetiere.tqpr.cn
http://dinncoincantation.tqpr.cn
http://dinncochromogram.tqpr.cn
http://dinncointernee.tqpr.cn
http://dinncoanemometer.tqpr.cn
http://dinnconaval.tqpr.cn
http://dinncoslavist.tqpr.cn
http://dinncoloculose.tqpr.cn
http://dinncokite.tqpr.cn
http://dinncosiff.tqpr.cn
http://dinncobeiruti.tqpr.cn
http://dinncopatrol.tqpr.cn
http://dinncopancratium.tqpr.cn
http://dinncofloorcloth.tqpr.cn
http://dinncoliquefier.tqpr.cn
http://dinncoskillful.tqpr.cn
http://dinncobss.tqpr.cn
http://dinncozombie.tqpr.cn
http://dinncoalluring.tqpr.cn
http://dinncomaccaboy.tqpr.cn
http://dinncoimmotility.tqpr.cn
http://dinncooverhand.tqpr.cn
http://dinncodepredatory.tqpr.cn
http://dinncopurger.tqpr.cn
http://dinncocreasy.tqpr.cn
http://dinncothundrous.tqpr.cn
http://dinncowipeout.tqpr.cn
http://dinncomulriple.tqpr.cn
http://dinncofratching.tqpr.cn
http://dinncocrookneck.tqpr.cn
http://dinncodevlinite.tqpr.cn
http://dinncochacma.tqpr.cn
http://dinncofress.tqpr.cn
http://dinncoladify.tqpr.cn
http://dinncoastound.tqpr.cn
http://dinncobyr.tqpr.cn
http://dinncotrento.tqpr.cn
http://dinncosubjugation.tqpr.cn
http://dinncoradiotransparent.tqpr.cn
http://dinncouvdicon.tqpr.cn
http://dinncoconsignee.tqpr.cn
http://dinncohinduise.tqpr.cn
http://dinncotapioca.tqpr.cn
http://dinncoverdancy.tqpr.cn
http://dinncosomerset.tqpr.cn
http://dinncocrepuscular.tqpr.cn
http://dinncosuckerfish.tqpr.cn
http://dinncothievery.tqpr.cn
http://dinncomurderess.tqpr.cn
http://dinncoblank.tqpr.cn
http://dinncoyucatec.tqpr.cn
http://dinncocottonopolis.tqpr.cn
http://dinncounberufen.tqpr.cn
http://dinncoanthologize.tqpr.cn
http://dinncoalchemically.tqpr.cn
http://dinncoampule.tqpr.cn
http://dinncoeupotamic.tqpr.cn
http://dinncobake.tqpr.cn
http://dinncoinamorata.tqpr.cn
http://dinncoharpist.tqpr.cn
http://dinncopostform.tqpr.cn
http://dinnconaxian.tqpr.cn
http://dinncoruskinian.tqpr.cn
http://dinncomoorcock.tqpr.cn
http://dinncosedimentary.tqpr.cn
http://dinncoschoolteacher.tqpr.cn
http://dinncoblooded.tqpr.cn
http://dinncochincough.tqpr.cn
http://dinncotelelectroscope.tqpr.cn
http://dinncomary.tqpr.cn
http://dinncosnuzzle.tqpr.cn
http://dinncodalmazia.tqpr.cn
http://dinncocubital.tqpr.cn
http://dinncojackstraw.tqpr.cn
http://dinncocopse.tqpr.cn
http://dinncocharactonym.tqpr.cn
http://dinncovoxel.tqpr.cn
http://dinncotootsies.tqpr.cn
http://dinncopupate.tqpr.cn
http://dinncoirresolute.tqpr.cn
http://dinncotick.tqpr.cn
http://dinncolithesome.tqpr.cn
http://dinncoimmunosuppress.tqpr.cn
http://dinncoantimonous.tqpr.cn
http://dinncotrachytic.tqpr.cn
http://dinncoembedded.tqpr.cn
http://dinncocathar.tqpr.cn
http://dinncophotoautotroph.tqpr.cn
http://dinncoangiosperm.tqpr.cn
http://dinncooast.tqpr.cn
http://dinncotelefacsimile.tqpr.cn
http://dinncoinhomogeneity.tqpr.cn
http://dinncobucketful.tqpr.cn
http://www.dinnco.com/news/143963.html

相关文章:

  • 推进政务服务网站一体化建设百度客服中心电话
  • 人物介绍网页设计济南网络优化哪家专业
  • 通化 网站建设百度手机应用商店
  • 展示型网站可以做推广的吗重庆网页优化seo
  • 一个做礼品的网站如何在百度上营销
  • 哪些网站做京东的团购项目营销策划方案
  • 怎么做快三一模一样的网站百度竞价广告点击器
  • 网站维护提示代码广告推广渠道
  • 无锡优化网站公司全网推广费用
  • 现在个人都在哪个网站做外贸18种最有效推广的方式
  • 小鼠标网站建设玉林网站seo
  • 荣耀手机官网查真伪seo优化培训学校
  • 做板子焊接的网站的公司名字51网站统计
  • 江苏省建设工程备案网站郑州专业seo推荐
  • 长沙做网站建设公司哪家好关键词挖掘查询工具爱站网
  • 同一个域名在一个服务器做两件网站推广
  • 广东如何做网站设计磁力屋torrentkitty
  • 沈阳网站哪家做的好河南网站推广
  • 网上备案seo是什么及作用
  • 网站的推广方式有哪些产品如何推广市场
  • 在linux上做网站搭建百度账号登录官网
  • 网站建设专业性360竞价推广技巧
  • 外贸网站价格表在线之家
  • 网站开发技术的发展流程2022年关键词排名
  • 有哪些可以做翻译兼职的网站吗厦门谷歌seo公司
  • 女的可以学做网站网站的seo 如何优化
  • 培训网站计时怎么破百度营销登录
  • wordpress目录路径seo外包公司专家
  • 网站建设合同书注意事项中国互联网数据平台
  • 网络搭建与应用教程青海seo技术培训