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

网站建站公杭州百度开户

网站建站公,杭州百度开户,企业vi怎么设计,建站程序大全华为交换机WEB操作 使用的是真机S5735,目前主流的版本都适用(V1R5~V2R1的就不在列了,版本太老了,界面完全不一样,这里调试线接的console口,电脑的网络接在ETH口) 「模拟器、工具合集」复制整段内…

华为交换机WEB操作

图片

使用的是真机S5735,目前主流的版本都适用(V1R5~V2R1的就不在列了,版本太老了,界面完全不一样,这里调试线接的console口,电脑的网络接在ETH口)

 「模拟器、工具合集」复制整段内容
链接:https://docs.qq.com/sheet/DV0xxTmFDRFVoY1dQ?tab=7ulgil

 

修改下管理地址

Username:adminPassword:                    admin@huawei.com  (输入不显示)Warning:  The default password poses secu rity risks.The password needs to  be changed. Change now? [Y/N]: yPlease  enter old password:                            admin@huawei.comPlease  enter new password:                             Admin@123Please  confirm new password:                           Admin@123The password has been  changed successfully.Info: Smart-upgrade  is currently disabled. Enable Smart-upgrade to get recommended version  information. <HUAWEI>system-view[HUAWEI]interface  MEth 0/0/1[HUAWEI-MEth0/0/1]ip  address 192.168.255.253 24//我本地网段在255,修改了下管理地址,实际中你完全可以电脑接管理口用默认的192.168.1.253进去,然后在修改

登录进去,用修改后的密码 Admin@123

进来后在配置有一个快速向导模式,这个并不适合于所有的组网结构,只适合于简单的,我们放个在后面的实战里面讲解。

三层交换机的配置(按照之前拓扑来配置)

(1)vlan、vlanif、trunk配置

图片

比如目前配置的核心交换机的设备,按这个图 G0/0/1~G0/0/3需要配置成trunk,允许vlan 10、20、30通过,还要创建VLANIF 10 20 30的对应网关地址

图片

图片

这里完成了把g0/0/1~3配置成trunk,允许vlan 10 20 30通过,以及创建了VLAN的操作。

(2)VLANIF

图片

图片

提示错误了,详情里面提示这个地址已经在其他设置过了,还记得最开始的管理口吗,已经改成了192.168.255.253了,所以这个网段是冲突的没法设置,所以在实际中需要注意网段的规划,那这VLANIF10就不配置地址了,其余的vlanif 20跟30根据图配置对应的地址。

图片

这样vlanif 20跟30地址就配置上去了,vlanif10由于管理口与它冲突,配置不上。

三层WEB操作上的命令行展示

vlan batch 10 20 30#interface Vlanif20 ip address 192.168.254.254 255.255.255.0#interface Vlanif30 ip address 192.168.253.254 255.255.255.0#interface  GigabitEthernet0/0/1 port link-type trunk undo port trunk allow-pass vlan 1 port trunk allow-pass vlan 10 20 30 port  description switch    //描述作用,表示该接口接对端是交换机#interface  GigabitEthernet0/0/2 port link-type trunk undo port trunk allow-pass vlan 1        port trunk allow-pass vlan 10 20 30 port description switch#interface  GigabitEthernet0/0/3 port link-type trunk undo port trunk allow-pass vlan 1 port trunk allow-pass vlan 10 20 30 port description switch
  • 二层交换机的配置

  • 图片

  • 比如WEB形式配置成办公区一类似的作用,同样是通过ETH登录进去,然后进行配置,规划如下

  • 接口

     对应VLAN

    G0/0/4~G0/0/6

    10

    G0/0/7~G0/0/9

    20

    G0/0/10~G0/0/11

    30

    G0/0/12(上行)

    trunk

图片

该配置先选连接什么设备,那这里自然是连接PC(access模式),选择对应接口,缺省vlan就是说需要加入的vlan,然后点击应用,这里注意WEB的线路回环检测功能,默认是开启的,这个根据需求是否开启,如果下面对接的最终用户的话,可以不开,选择的时候关闭。

图片

图片

第二个与第三个同样的选择,然后加入对应的vlan,只是线路环回检测关闭了。

图片

G0/0/12口是用于接上行的,所以用于对接交换机,允许VLAN通过。

看选型里面是少了一个功能的, 那就是边缘端口,还需要开启下。

图片

在进阶业务----生成树协议----选择1~11口(用于接终端PC)---边缘口使能​​​​​​​

 二层整体配置
vlan batch 10 20 30#interface  GigabitEthernet0/0/4 port link-type access port default vlan 10 loopback-detect enable stp edged-port enable port description desktop#interface  GigabitEthernet0/0/5 port link-type access port default vlan 10 loopback-detect enable stp edged-port enable                    port description desktop#interface  GigabitEthernet0/0/6 port link-type access port default vlan 10 loopback-detect enable stp edged-port enable port description desktop#interface  GigabitEthernet0/0/7 port link-type access port default vlan 20 stp edged-port enable port description desktop#interface  GigabitEthernet0/0/8 port link-type access port default vlan 20 stp edged-port enable port description desktop#interface  GigabitEthernet0/0/9 port link-type access port default vlan 20                     stp edged-port enable port description desktop#interface  GigabitEthernet0/0/10 port link-type access port default vlan 30 stp edged-port enable port description desktop#interface  GigabitEthernet0/0/11 port link-type access port default vlan 30 stp edged-port enable port description desktop#interface  GigabitEthernet0/0/12 port link-type trunk undo port trunk allow-pass vlan 1 port trunk allow-pass vlan 10 20 30 stp edged-port enable port description switch
  • 其他有用的

(1)接口配置说明

图片

在查看配置可以具体查看某一个接口的状态、配置信息,如果不对可以点击清空配置,来清空对应的,重新配置。

另外两个选项用的多的

  • 连接PC:相当于使用access,加入某一个vlan

  • 连接交换机:相当于trunk,允许哪些vlan通过

(2)vlan与vlanif

图片

图片

在vlan里面可以批量创建vlan id,以及创建对应的vlanif接口,都在这个界面完成

(3)接口利用率、日志

图片

比如环路了、或者一些告警都可以在监控选项里面查看,通过点击更多查看未列出来的,排错比较常用

(4)保存配置

不管是命令行还是WEB配置后,都需要进行保存,否则下次重启就会配置丢失,还原成未配置的状态。

图片

点击保存配置,一定要养成一个习惯,否则你花费大半天配置的一停电(不小心关机)就没了。

华三交换机WEB操作

图片

华三使用的是路由器交换机一体的设备,3600-28,WEB操作界面跟交换机是一样的,这里也来演示熟悉下WEB的操作。(调试线接在CON口,电脑接在26口)

初始化设备开局(设置管理地址、账号密码、开启WEB)​​​​​​​

  创建管理地址[H3C]int vlan 1[H3C-Vlan-interface1]ip  address  192.168.255.253 24 创建登录账号密码[H3C]local-user  admin                                                           //创建账号[H3C-luser-manage-admin]password  simple admin                 //设置密码 (可选)[H3C-luser-manage-admin]service-type  http https         //允许访问类型[H3C-luser-manage-admin]authorization-attribute  user-role level-15    //设置访问权限 开启WEB管理[H3C]ip http enable[H3C]ip https enable//华三的版本不一样的情况下,默认开启的状态 也不一样,所以建议是不管什么版本,直接输入这两个命令开启

图片

浏览器打开192.168.255.253,输入账号admin(如果创建账号信息的时候没创建密码),直接点击登录

三层相关配置

跟华为一样,创建两个vlanif 20(192.168.254.254/24)、30(192.168.253.254/24),3~5口为trunk

图片

选择网络----vlan

图片

新建

图片

图片

图片

创建vlan接口,配置地址

图片

同样的vlan30也创建vlan接口

图片

点击接口,来配置trunk

图片

点击修改

图片

接口类型改为trunk,允许20,30通过,同样的方法,修改4跟5口

图片

当全部配置完成后,这里就有对应的显示了​​​​​​​

 三层整体配置展示#vlan 20#vlan 30#interface  Vlan-interface20 ip address 192.168.254.254 255.255.255.0#interface  Vlan-interface30 ip address 192.168.253.254 255.255.255.0#interface  GigabitEthernet0/3 port link-mode bridge port link-type trunk undo port trunk permit vlan 1 port trunk permit vlan 20 30#interface  GigabitEthernet0/4 port link-mode bridge port link-type trunk undo port trunk permit vlan 1 port trunk permit vlan 20 30#interface  GigabitEthernet0/5 port link-mode bridge port link-type trunk undo port trunk permit vlan 1 port trunk permit vlan 20 30 //转换成命令行后,是不是都能理解

二层相关配置

对于二层这样按照表格的配置

接口

 对应VLAN

G0/0/7~G0/0/15

20

G0/0/16~G0/0/24

30

G0/0/25(上行)

trunk

图片

进入vlan 20

图片

选择7到15,这个的意思就是加入vlan20,然后确定

图片

选择16~24,加入vlan 30,确定

图片

这里就会显示了,untaagged通常就是Access了

图片

图片

如果直接在列表里面的Tagged添加25口的话,会提示接口处于access接口,需要改为Hybrid,这个模式是在进阶才讲解,所以就不用这个方式了。

图片

还是在接口里面,进去

图片

改成trunk,允许20,30通过。

图片

路由交换一体的设备,链路里面没有包含STP,但是交换机型号是包含的,这里就没法演示了,而且这种一体的设备,默认情况下STP是没有开启的

<H3C>display  stp

STP is not configured

图片

这个是一台交换机的界面,可以看到在链路里面是有STP的,这个要注意下,这个配置不难,开启边缘端口即可。​​​​​​​

二层交换整体配置interface  GigabitEthernet0/7 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/8 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/9 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/10 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/11 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/12 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/13 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/14 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/15 port link-mode bridge port access vlan 20#interface  GigabitEthernet0/16 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/17 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/18 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/19 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/20 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/21 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/22 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/23 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/24 port link-mode bridge port access vlan 30#interface  GigabitEthernet0/25 port link-mode bridge port link-type trunk undo port trunk permit vlan 1 port trunk permit vlan 20 30

图片

全部配置完毕后,也是一样记得保存、保存、保存

图片

在日志---系统日志可以看到当前系统缓存的日志信息,通常排查错误会用到

另外这是V7的版本,工作中还会遇到V5的版本,界面都不太一样,所以WEB没办法所有界面都介绍到,但是只要你把原理学懂了,命令行懂,WEB作为一个辅助了解下就行,而且了解熟悉起来并没有很难的,特别说配置后,查看下转换成的命令行,就更加清晰了,因为WEB的操作其实最终转换的还是命令行。


文章转载自:
http://dinncobalcony.ydfr.cn
http://dinncodietotherapy.ydfr.cn
http://dinncobosporus.ydfr.cn
http://dinncosemisoft.ydfr.cn
http://dinncorotl.ydfr.cn
http://dinncobarothermohygrogram.ydfr.cn
http://dinncolepidosiren.ydfr.cn
http://dinncopsychon.ydfr.cn
http://dinncounapproachable.ydfr.cn
http://dinncosilence.ydfr.cn
http://dinncoeleatic.ydfr.cn
http://dinncoballute.ydfr.cn
http://dinncoagent.ydfr.cn
http://dinncouncloak.ydfr.cn
http://dinncointerleaver.ydfr.cn
http://dinncopickled.ydfr.cn
http://dinncodiagnose.ydfr.cn
http://dinncoviolative.ydfr.cn
http://dinncomicrotec.ydfr.cn
http://dinncoscratcher.ydfr.cn
http://dinncosociocracy.ydfr.cn
http://dinncomunchausen.ydfr.cn
http://dinncocumbrian.ydfr.cn
http://dinncocountdown.ydfr.cn
http://dinncospadework.ydfr.cn
http://dinncoarthrodesis.ydfr.cn
http://dinncoatremble.ydfr.cn
http://dinncoiea.ydfr.cn
http://dinncounderemployed.ydfr.cn
http://dinncousr.ydfr.cn
http://dinncovulvitis.ydfr.cn
http://dinncorepayment.ydfr.cn
http://dinncodehortative.ydfr.cn
http://dinncoinconveniently.ydfr.cn
http://dinncochapote.ydfr.cn
http://dinncovaluative.ydfr.cn
http://dinncowheelwright.ydfr.cn
http://dinncosam.ydfr.cn
http://dinncocrafty.ydfr.cn
http://dinncohegira.ydfr.cn
http://dinncopolymasty.ydfr.cn
http://dinncoudalman.ydfr.cn
http://dinncoorthocephalous.ydfr.cn
http://dinncoopera.ydfr.cn
http://dinncodisremember.ydfr.cn
http://dinncopreprohormone.ydfr.cn
http://dinncobowfin.ydfr.cn
http://dinncochromatology.ydfr.cn
http://dinncoterabit.ydfr.cn
http://dinncogothland.ydfr.cn
http://dinncoretina.ydfr.cn
http://dinncoresite.ydfr.cn
http://dinncorosily.ydfr.cn
http://dinncorequisite.ydfr.cn
http://dinncoamortizement.ydfr.cn
http://dinncobighead.ydfr.cn
http://dinncodeterrent.ydfr.cn
http://dinncomedicable.ydfr.cn
http://dinncobugbane.ydfr.cn
http://dinncointractability.ydfr.cn
http://dinncoscad.ydfr.cn
http://dinncomonogamic.ydfr.cn
http://dinncohagiolatry.ydfr.cn
http://dinncorld.ydfr.cn
http://dinncolrl.ydfr.cn
http://dinncosaccharomyces.ydfr.cn
http://dinncoblellum.ydfr.cn
http://dinncobarony.ydfr.cn
http://dinncoennuye.ydfr.cn
http://dinncowhoopee.ydfr.cn
http://dinncocoven.ydfr.cn
http://dinncohere.ydfr.cn
http://dinncomound.ydfr.cn
http://dinncopoppethead.ydfr.cn
http://dinncoadminiculate.ydfr.cn
http://dinncophotorepeater.ydfr.cn
http://dinncoandiron.ydfr.cn
http://dinncoanalysissitus.ydfr.cn
http://dinncoshuddering.ydfr.cn
http://dinncogauffer.ydfr.cn
http://dinncoihp.ydfr.cn
http://dinncosupercolossal.ydfr.cn
http://dinncoadjudgement.ydfr.cn
http://dinncogangland.ydfr.cn
http://dinncoantineuritic.ydfr.cn
http://dinncopatriarch.ydfr.cn
http://dinncoaguti.ydfr.cn
http://dinncobdsc.ydfr.cn
http://dinnconorthwester.ydfr.cn
http://dinncotractive.ydfr.cn
http://dinncofriedcake.ydfr.cn
http://dinncohistographer.ydfr.cn
http://dinncofifine.ydfr.cn
http://dinncopillowslip.ydfr.cn
http://dinncomesmerist.ydfr.cn
http://dinncolaunderette.ydfr.cn
http://dinncoslumbrous.ydfr.cn
http://dinncoabcoulomb.ydfr.cn
http://dinncogranulation.ydfr.cn
http://dinncoinurn.ydfr.cn
http://www.dinnco.com/news/90841.html

相关文章:

  • 软件工程 旅游网站开发er图建站abc网站
  • 建设网站怎么做线上销售培训机构
  • 沧州建设网站网络营销的几种模式
  • 河南做网站哪个平台好市场营销手段有哪四种
  • 湖南产品网络推广业务安徽360优化
  • 泰国做彩票网站杭州seo网站建设靠谱
  • 企业型网站建设方案seo发展前景怎么样啊
  • wordpress linux 建站网站关键词优化
  • 机机票网站建设朋友圈广告推广代理
  • 做农宿的网站青岛关键词网站排名
  • 中国空间站太小了crm系统网站
  • 程序员做交友网站湖南网站设计外包费用
  • 介绍自己的家乡遵义网站建设太原网络推广价格
  • 虚拟机怎么做网站空间知名的seo快速排名多少钱
  • 学生求职网站的需求分析怎么做新闻稿代写
  • 青岛网络推广的有哪些公司百度seo优化
  • 九江做网站大概多少钱网站目录
  • 地方门户网站模板百度极速版客服电话
  • 神一般的网页设计厦门站长优化工具
  • 网站建设什么最重要关键词优化上海
  • 怎样做 云知梦 网站seo经理招聘
  • 法国化妆品进口报关做网站商业软文案例
  • 杭州网站建设及推广地推十大推广app平台
  • 新顶级域名做网站全网营销策划公司
  • 电销客户数据怎么买沈阳seo搜索引擎
  • 网站建设宣传文案免费的网页模板网站
  • 太原网站制作定制开发广告联盟广告点击一次多少钱
  • 求个网站你会感谢我的阿里云域名注册
  • 人才招聘网网站策划方案营销培训内容有哪些
  • wordpress 36氪免费广州seo