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

一个网站两个域名吗静态网站 模板

一个网站两个域名吗,静态网站 模板,wordpress留言板制作,中文搜索引擎有哪些平台组网需求 如图1所示#xff0c;HostA和HostC通过Switch双归属到SwitchA和SwitchB。为减轻SwitchA上数据流量的承载压力#xff0c;HostA以SwitchA为默认网关接入Internet#xff0c;SwitchB作为备份网关#xff1b;HostC以SwitchB为默认网关接入Internet#xff0c;Switc…组网需求 如图1所示HostA和HostC通过Switch双归属到SwitchA和SwitchB。为减轻SwitchA上数据流量的承载压力HostA以SwitchA为默认网关接入InternetSwitchB作为备份网关HostC以SwitchB为默认网关接入InternetSwitchA作为备份网关以实现流量的负载均衡。 说明 请确保该场景下互联接口的STP处于未使能状态。同时将互连接口退出VLAN1避免形成环路。因为在使能STP的环形网络中如果用交换机的VLANIF接口构建三层网络会导致某个端口被阻塞从而导致三层业务不能正常运行。 配置思路 采用VRRP负载分担实现流量的负载均衡配置思路如下 配置各设备接口IP地址及路由协议使各设备间网络层连通。在SwitchA和SwitchB上创建VRRP备份组1和VRRP备份组2在备份组1中配置SwitchA为Master设备SwitchB为Backup设备在备份组2中配置SwitchB为Master设备SwitchA为Backup设备实现流量的负载均衡。 操作步骤 配置设备间的网络互连 # 配置设备各接口的IP地址以SwitchA为例。SwitchB和SwitchC的配置与SwitchA类似 [zhonwanghzhi]interface GigabitEthernet 0/0/1 [zhonwanghzhi-GigabitEthernet0/0/1]port link-type hybrid [zhonwanghzhi-GigabitEthernet0/0/1]port hybrid pvid vlan 300 [zhonwanghzhi-GigabitEthernet0/0/1]port hybrid untagged vlan 300 [zhonwanghzhi-GigabitEthernet0/0/1]quit [zhonwanghzhi]interface GigabitEthernet 0/0/2 [zhonwanghzhi-GigabitEthernet0/0/2]port link-type [zhonwanghzhi-port-group-link-type]quit [zhonwanghzhi]interface GigabitEthernet 0/0/2 [zhonwanghzhi-GigabitEthernet0/0/2]port link-type hybrid [zhonwanghzhi-GigabitEthernet0/0/2]port hybrid pvid vlan 100 [zhonwanghzhi-GigabitEthernet0/0/2]port hybrid untagged vlan 100 [zhonwanghzhi-GigabitEthernet0/0/2]quit [zhonwanghzhi] [zhonwanghzhi]interface Vlanif 100 [zhonwanghzhi-Vlanif100]ip address 10.1.1.1 24 [zhonwanghzhi-Vlanif100]quit [zhonwanghzhi]interface Vlanif 300 [zhonwanghzhi-Vlanif300]ip address 192.168.1.1 24 [zhonwanghzhi-Vlanif300]quit [zhonwanghzhi] # 配置Switch的二层转发功能。 [zhongwanzhi]interface GigabitEthernet 0/0/1 [zhongwanzhi-GigabitEthernet0/0/1]port link-type hybrid [zhongwanzhi-GigabitEthernet0/0/1]port hybrid pvid vlan 100 [zhongwanzhi-GigabitEthernet0/0/1]port hybrid untagged vlan 100 [zhongwanzhi-GigabitEthernet0/0/1]quit [zhongwanzhi]interface GigabitEthernet 0/0/2 [zhongwanzhi-GigabitEthernet0/0/2]port link-type hybrid [zhongwanzhi-GigabitEthernet0/0/2]port hybrid pvid vlan 100 [zhongwanzhi-GigabitEthernet0/0/2]port hybrid untagged vlan 100 [zhongwanzhi-GigabitEthernet0/0/2]quit [zhongwanzhi] # 配置SwitchA、SwitchB和SwitchC间采用OSPF协议进行互连。以SwitchA为例SwitchB和SwitchC的配置与SwitchA类似 [zhonwanghzhi]ospf 1 [zhonwanghzhi-ospf-1]area 0 [zhonwanghzhi-ospf-1-area-0.0.0.0]network 10.1.1.0 0.0.0.255 [zhonwanghzhi-ospf-1-area-0.0.0.0]network 192.168.1.0 0.0.0.255 [zhonwanghzhi-ospf-1-area-0.0.0.0]quit [zhonwanghzhi-ospf-1]quit 配置VRRP备份组 # 在SwitchA和SwitchB上创建VRRP备份组1配置SwitchA的优先级为120抢占延时为20秒作为Master设备SwitchB的优先级为缺省值作为Backup设备。 SwitchA [zhongwanzhi]interface Vlanif 100 [zhongwanzhi-Vlanif100]vrrp vrid 1 virtual-ip 10.1.1.111 [zhongwanzhi-Vlanif100]vrrp vrid 1 priority 120 [zhongwanzhi-Vlanif100]vrrp vrid 1 preempt-mode timer delay 20 [zhongwanzhi-Vlanif100]quit SwitchB [zhonwanghzhib]interface Vlanif 100 [zhonwanghzhib-Vlanif100]vrrp vrid 1 virtual-ip 10.1.1.111 [zhonwanghzhib-Vlanif100]quit # 在SwitchA和SwitchB上创建VRRP备份组2配置SwitchB的优先级为120抢占延时为20秒作为Master设备SwitchA的优先级为缺省值作为Backup设备。 SwitchA [zhonwanghzhi]interface Vlanif 100 [zhonwanghzhi-Vlanif100]vrrp vrid 2 virtual-ip 10.1.1.112 [zhonwanghzhi-Vlanif100]vrrp vrid 2 priority 120 [zhonwanghzhi-Vlanif100]vrrp vrid 2 preempt-mode timer delay 20 [zhonwanghzhi-Vlanif100]quit SwitchB [zhonwanghzhib]interface Vlanif 100 [zhonwanghzhib-Vlanif100]vrrp vrid 1 virtual-ip 10.1.2.112 [zhonwanghzhib-Vlanif100]quit 验证配置结果 # 完成上述配置后在SwitchA上执行display vrrp命令可以看到SwitchA在备份组1中作为Master设备在备份组2中作为Backup设备。 zhonwanghzhidisplay vrrpVlanif100 | Virtual Router 1State : MasterVirtual IP : 10.1.1.111Master IP : 10.1.1.1PriorityRun : 100PriorityConfig : 120MasterPriority : 120Preempt : YES Delay Time : 0 sTimerRun : 1 sTimerConfig : 1 sAuth type : NONEVirtual MAC : 0000-5e00-0101Check TTL : YESConfig type : normal-vrrpCreate time : 2023-12-15 16:49:27 UTC-08:00Last change time : 2023-12-15 16:49:30 UTC-08:00Vlanif100 | Virtual Router 2State : Virtual IP : 10.1.1.112Master IP : 10.1.1.2PriorityRun : 110PriorityConfig : 110MasterPriority : 110Preempt : YES Delay Time : 20 sTimerRun : 1 sTimerConfig : 1 sAuth type : NONEVirtual MAC : 0000-5e00-0102Check TTL : YESConfig type : normal-vrrpCreate time : 2023-12-15 16:56:51 UTC-08:00Last change time : 2023-12-15 16:56:55 UTC-08:00
http://www.hkea.cn/news/14375974/

相关文章:

  • 建外贸网站公司做彩票网站用什么服务器
  • 中国招投标网站官网呼和浩特注册公司流程和费用
  • 郑州网站建设企业推荐石家庄建网站挣钱优帮云
  • 北京比较好的网站公司网页设计师的主要职责
  • 巩义专业网站建设公司推荐做网站如何注意排版问题
  • 手机网站开发c 教程网站文章结构变更怎么做301
  • 韩国免费行情网站的推荐理由男生流出来白色的东西是什么
  • 网站百度不到验证码怎么办wordpress 创建子菜单
  • 做网站前期工作本地电脑如何做网站
  • 免费隐私网站推广app潍坊网站建设品牌
  • 青岛高创网站建设wordpress h5视频播放
  • 互助金融网站制作wordpress页面添加水印
  • 沈阳专业网站制作设计黄冈网站推广
  • 中小企业网站建设与管理课后答案1g做网站空间
  • 什么网站可以做高三英语试题防止wordpress目录显示
  • 东莞做网站要多少钱为什么做网站会被批捕
  • 中山网站建设品牌花店网站建设个人小结
  • 公司注册网站多少钱百度搜索引擎的网址是
  • 开原 铁岭网站建设专门做母婴的网站有哪些
  • 网页设计免费网站saas小程序开发
  • 泰安网站开发阿里网站多个域名
  • 开发网站需要什么网站建设介绍ppt模板
  • 太原做学校网站的公司昆明手机网站建设
  • wordpress站点管理员信息化建设包括网站建设
  • 大连比较好的网站公司河南省新闻出版学校怎么样
  • flash网站制作公司泸州市建设局网站
  • 大型网站tag标签 索引网站建设成本
  • 网站备案 取消接入wordpress能做商城
  • 专业积分商城网站制作界面十分好看的网站
  • 做网站打广告图片素材网络营销 长沙