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

设计一个公司网站多少钱wordpress单页展示主题

设计一个公司网站多少钱,wordpress单页展示主题,做内贸只要有什么网络推广网站,淄博网站制作高端营销目录 任务目的 任务内容 实验原理 实验环境 实验过程 1、打开ODL控制器 2、网页端打开ODL控制页面 3、创建拓扑 4、Postman中查看交换机的信息 5、L2层流表下发 6、L3层流表下发 7、L4层流表下发 任务目的 1、掌握OpenFlow流表相关知识#xff0c;理解SDN网络中L…目录 任务目的 任务内容 实验原理 实验环境 实验过程 1、打开ODL控制器 2、网页端打开ODL控制页面 3、创建拓扑 4、Postman中查看交换机的信息 5、L2层流表下发 6、L3层流表下发 7、L4层流表下发 任务目的 1、掌握OpenFlow流表相关知识理解SDN网络中L2L3L4层流表的概念。 2、学习并熟练掌握Postman工具下发L2L3L4层流表。 任务内容 1、学习OpenFlow流表的组成包头域的解析流程及流表的匹配流程。 2、熟悉OpenDaylight对接Mininet的使用。 3、使用Postman工具下发相应的L2L3L4层流表并验证。 实验原理 SDN的设计目标之一就是将网络设备的控制功能与转发功能进行分离进而将控制功能全部集中到远程的控制器上完成而SDN交换机只负责在本地做简单高速的数据转发。在SDN交换机运行的过程中其数据转发的依据就是流表。 实验环境 实验过程 1、打开ODL控制器 这里已经把ODL控制器的添加到了环境变量中所以直接使用karaf命令就可以启动ODL控制器如果没有添加到环境变量中就需要进入到ODL安装目录使用命令./bin/karaf启动ODL 2、网页端打开ODL控制页面 我这里电脑的IP地址为192.168.112.132因此在浏览器中输入http://192.168.112.132:8181/index.html即可进入ODL控制器的页面 3、创建拓扑 在另一台安装了mininet的虚拟机上创建拓扑并将控制器的地址改为192.168.112.132 mn --toposingle,2 --controllerremote,ip192.168.112.132,port6633 --switch ovsk,protocolsOpenFlow13 pingall 此时ODL页面就已经可以看到topo了 4、Postman中查看交换机的信息 Basic Auth页签Username字段填写adminPassword字段填写admin完成认证。 提交方式为GETURL地址栏中输入http://192.168.112.132:8080/restconf/operational/network-topology:network-topology 设置完成单击Send按钮获取交换机id信息输入 5、L2层流表下发 下发第一条L2流表 选择提交方式“PUT” URL地址栏输入如下形式的地址http://{controllerip}:8080/restconf/config/opendaylight-inventory:nodes/node/{node-id}/table/{table-id}/flow/{flow-id} 其中{controller-ip}为控制器的ip地址node-id为上面获取到的交换机id信息table-id这里为0flow-id根据下发不同流表变化可自定义。 如http://192.168.112.132:8080/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/107 “body”中选择“raw”格式为XMLapplication/xml并填写如下消息体注意修改源目MAC地址源地址为1端口连接的主机目的地址为2端口连接的地址 下发流表匹配源MAC为ce:45:a4:38:08:d0的流量目的MAC为76:ae:0d:50:d7:ad出端口为2优先级为300 这里可以看到交换机的2端口连接的是76:ae:0d:50:d7:ad因此以下配置中目的地址为76:ae:0d:50:d7:ad源地址为ce:45:a4:38:08:d0 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority200/priority flow-nameFoo1/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match ethernet-match ethernet-source addressce:45:a4:38:08:d0/address /ethernet-source ethernet-destination address76:ae:0d:50:d7:ad/address /ethernet-destination /ethernet-match /match id107/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connector2/output-node-connector /output-action /action /apply-actions /instruction /instructions /flow mininet上查看流表是否增加了一条优先级为300的流表 sh ovs-ofctl dump-flows s1 -O openflow13 下发第二条L2流表 下发流表匹配源MAC为76:ae:0d:50:d7:ad的流量目的MAC为ce:45:a4:38:08:d0出端口为1优先级为300 这里的源目MAC地址与第一条流表中的应该相反且流ID不能再是107应该换一个比如108 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority200/priority flow-nameFoo1/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match ethernet-match ethernet-source address76:ae:0d:50:d7:ad/address /ethernet-source ethernet-destination addressce:45:a4:38:08:d0/address /ethernet-destination /ethernet-match /match id108/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connector1/output-node-connector /output-action /action /apply-actions /instruction /instructions /flow 在mininet上查询流表是否已经下发 sh ovs-ofctl dump-flows s1 -O openflow13 测试下发的流表是否有效 pingall 此处可以看到匹配流表的数据增加了 6、L3层流表下发 L3层对应OSI模型的三层三层流表主要匹配的是IP包的协议类型和IP地址 URL地址栏输入http://192.168.112.132:8080/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/111 流表匹配源IP地址为10.0.0.1/32的报文并将其转发到2端口 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority300/priority flow-nameFoo1/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match ethernet-match ethernet-type type2048/type /ethernet-type /ethernet-match ipv4-source10.0.0.1/32/ipv4-source /match id111/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connector2/output-node-connector /output-action /action /apply-actions /instruction /instructions /flow URL地址栏输入http://192.168.112.132:8080/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/112 匹配源IP地址为10.0.0.2/32的报文并将其转发到1端口。 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority300/priority flow-nameFoo2/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match ethernet-match ethernet-type type2048/type /ethernet-type /ethernet-match ipv4-source10.0.0.2/32/ipv4-source /match id112/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connector1/output-node-connector /output-action /action /apply-actions /instruction /instructions /flow URL地址栏输入http://192.168.112.132:8080/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/113 流表下发arp匹配流表 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority300/priority flow-nameFoo1/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match ethernet-match ethernet-type type2054/type /ethernet-type /ethernet-match /match id113/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connectorNORMAL/output-node-connector max-length0/max-length /output-action /action /apply-actions /instruction /instructions /flow 7、L4层流表下发 L4对应的OSI模型中的四层即流表对应的TCP/UDP源端口TCP/UDP src port、TCP/UDP目的端口号TCP/UDP dst port字段。本实验匹配TCP目的端口 URL地址栏输入http://192.168.112.132:8080/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/117 匹配到目的IP地址为10.0.0.1/32且目的端口为5001的TCP报文将其转发到2端口 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority300/priority flow-nameFoo1/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match tcp-destination-port5001/tcp-destination-port ethernet-match ethernet-type type2048/type /ethernet-type /ethernet-match ipv4-destination10.0.0.1/32/ipv4-destination ip-match ip-protocol6/ip-protocol /ip-match /match id117/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connector2/output-node-connector /output-action /action /apply-actions /instruction /instructions /flow URL地址栏输入http://192.168.112.132:8080/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/118 匹配到目的IP地址为10.0.0.2/32且目的端口为5001的TCP报文将其转发到1端口 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority300/priority flow-nameFoo1/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match tcp-destination-port5001/tcp-destination-port ethernet-match ethernet-type type2048/type /ethernet-type /ethernet-match ipv4-destination10.0.0.2/32/ipv4-destination ip-match ip-protocol6/ip-protocol /ip-match /match id118/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connector1/output-node-connector /output-action /action /apply-actions /instruction /instructions /flow URL地址栏输入http://192.168.112.132:8080/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/119 流表下发arp匹配流表 ?xml version1.0 encodingUTF-8 standaloneno? flow xmlnsurn:opendaylight:flow:inventory priority300/priority flow-nameFoo1/flow-name idle-timeout0/idle-timeout hard-timeout0/hard-timeout match ethernet-match ethernet-type type2054/type /ethernet-type /ethernet-match /match id119/id table_id0/table_id instructions instruction order0/order apply-actions action order0/order output-action output-node-connectorFLOOD/output-node-connector max-length0/max-length /output-action /action /apply-actions /instruction /instructions /flow
http://www.w-s-a.com/news/80342/

相关文章:

  • 现在帮别人做网站赚钱不济南做网站建设公司
  • 嘉兴网站建设哪家好最近三天的国际新闻大事
  • 安丘网站建设制作做网站口碑比较好的大公司
  • 成都专业做网站公司哪家好优化大师下载安装免费
  • 防蚊手环移动网站建设广东深圳有几个区
  • 网站建设找哪些平台宜兴网站开发
  • 免费网站应用软件wordpress添加动态图标
  • 中小企业网站建设客户需求调查问卷昆明网站建设一条龙
  • 网站内容的特点wordpress 移动端网页
  • 专门网站建设培训网站系统建设
  • 自己设计手机的网站wordpress主题加密教程
  • 北京网站建设公司飞沐卖水果网站建设的策划书
  • 北京免费自己制作网站短视频宣传片制作
  • 怎样进入谷歌网站电子商务网站建设软件选择
  • 建个普通网站多少钱设计师培训多少
  • 建设校园网站的意义视频链接提取下载
  • 天津电子商务网站wordpress安装图片
  • 青岛房产网站东莞网络营销外包公司
  • 网站建设中的页数网上工伤做实网站
  • 给公司做网站这个工作怎么样wordpress不支持中文标签
  • 湖南网站推广优化cc域名做门户网站
  • 网站开发大概多久怎么制做网站
  • 鄂州官方网站食品网站建设需求分析
  • 福州网站建设金森要做好网络营销首先要
  • 中山哪里有好网站建设公司企业培训考试平台下载
  • 域名备案查询 网站备案查询企业网站建设问题研究
  • wordpress无法编辑北京优化网站方法
  • 公司建设一个网站最好的网站建设哪家好
  • 南京市住宅建设总公司网站wordpress 自己写的网页
  • 淄博网站制作企业高端长沙企业网站制作服务报价