热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

RunP4withoutP4factoryASimpleExampleInTutorials.

前言本文是我运行P4社区于Github开源教程Tutorials中的P4SIGCOMM2015Tutorial一些实战小结,Github链接:Githu

前言

本文是我运行P4社区于Github开源教程Tutorials中的P4 SIGCOMM 2015 Tutorial一些实战小结,Github链接:

  • Github。

测试的例子:P4 SIGCOMM 2015 - Source Routing

实验环境:

Linux,Ubuntu 14.04 64bit。

实验步骤:

准备工作:

安装 bmv2 和 p4c-bm:

请移步我的另外一篇博客:

  • P4 前端编译器p4c-bm、后端编译器bmv2命令安装 make error问题

上面给出的博文中,还有一个小bug还在处理中。

安装pip:

请移步:

  • Linux 安装pip

安装Mininet:

请移步:

  • Mininet实验 源码安装Mininet

安装其他工具:

命令:

sudo pip install scapy thrift networkx

关于thrift的安装遇到的一些问题:

  • 解决thrift: ···No such file or directory问题
  • P4行为模型BMV2依赖关系安装:thrift nanomsg nnpy安装

准备完毕之后:

bmv2:/home/wasdns/bmv2

p4c-bm:/home/wasdns/p4c-bmv2

java -version(比较老的版本):

java version "1.7.0_79"
Java(TM) SE Runtime Environment (build 1.7.0_79-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.79-b02, mixed mode)

python -V:

Python 2.7.6

thrift -version:

Thrift version 1.0.0-dev

就不一一列举了。

实验步骤

1.将Github上的Tutorials下载下来:

git clone https://github.com/p4lang/tutorials.git

2.更改env.sh脚本中的路径信息:

命令:

vim env.sh

env.sh脚本:

THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )# ---------------- EDIT THIS ------------------
BMV2_PATH=$THIS_DIR/../bmv2
# e.g. BMV2_PATH=$THIS_DIR/../bmv2
P4C_BM_PATH=$THIS_DIR/../p4c-bmv2
# e.g P4C_BM_PATH=$THIS_DIR/../p4c-bm
# ---------------- END ------------------

我没有使用THIS_DIR的路径,直接修改为:

THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )# ---------------- EDIT THIS ------------------
BMV2_PATH=/home/wasdns/bmv2
# e.g. BMV2_PATH=$THIS_DIR/../bmv2
P4C_BM_PATH=/home/wasdns/p4c-bmv2
# e.g P4C_BM_PATH=$THIS_DIR/../p4c-bm
# ---------------- END ------------------

:wq保存退出。

3.进入source_routing目录

root@ubuntu:/home/wasdns/tutorials# cd SIGCOMM_2015
root@ubuntu:/home/wasdns/tutorials/SIGCOMM_2015# cd source_routing/

4.对本实验的简单介绍

请参考:

  • Description of the EasyRoute protocol

5.解压solution.tar.gz

tar -zxvf solution.tar.gz

这里借用了barefoot提供的现成的解决方案,p4源程序source_routing.p4如下:

/*
Copyright 2013-present Barefoot Networks, Inc. Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/header_type easyroute_head_t {fields {preamble: 64;num_valid: 32;}
}header easyroute_head_t easyroute_head;header_type easyroute_port_t {fields {port: 8;}
}header easyroute_port_t easyroute_port;parser start {return select(current(0, 64)) {0: parse_head;default: ingress;}
}parser parse_head {extract(easyroute_head);return select(latest.num_valid) {0: ingress;default: parse_port;}
}parser parse_port {extract(easyroute_port);return ingress;
}action _drop() {drop();
}action route() {modify_field(standard_metadata.egress_spec, easyroute_port.port);add_to_field(easyroute_head.num_valid, -1);remove_header(easyroute_port);
}table route_pkt {reads {easyroute_port: valid;}actions {_drop;route;}size: 1;
}control ingress {apply(route_pkt);
}control egress {// leave empty
}

并将该p4程序及其目录p4src拷贝至source_routing目录下:

mv /home/wasdns/tutorials/SIGCOMM_2015/source_routing/p4src /home/wasdns/tutorials/SIGCOMM_2015/source_routing/p4src1cp -r /home/wasdns/tutorials/SIGCOMM_2015/source_routing/solution/p4src /home/wasdns/tutorials/SIGCOMM_2015/source_routing

6.将env.sh拷贝至source_routing目录下:

cp -r /home/wasdns/tutorials/env.sh /home/wasdns/tutorials/SIGCOMM_2015/source_routing

7.修改run_demo.sh脚本内容:

run_demo.sh脚本:

#!/bin/bash# Copyright 2013-present Barefoot Networks, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )source $THIS_DIR/../../env.shP4C_BM_SCRIPT=$P4C_BM_PATH/p4c_bm/__main__.pySWITCH_PATH=$BMV2_PATH/targets/simple_switch/simple_switchCLI_PATH=$BMV2_PATH/tools/runtime_CLI.py$P4C_BM_SCRIPT p4src/source_routing.p4 --json source_routing.json
# This gives libtool the opportunity to "warm-up"
sudo $SWITCH_PATH >/dev/null 2>&1
sudo PYTHONPATH=$PYTHONPATH:$BMV2_PATH/mininet/ python topo.py \--behavioral-exe $SWITCH_PATH \--json source_routing.json \
--cli $CLI_PATH

source $THIS_DIR/../../env.sh

改为:

source $THIS_DIR/env.sh

8.添加python模块p4_mininet:

请移步:

  • P4实验问题 解决python模块导入

9.修改command.txt:

在我第一次做这个实验的时候,h1发送的数据报是到达不了h3的,RunTimeCmd报错如下:

/home/wasdns/bmv2/tools/runtime_CLI.py --json source_routing.json --thrift-port 22222
Control utility for runtime P4 table manipulation
RuntimeCmd: Error: Invalid table name (ecmp_group)
RuntimeCmd: Error: Invalid table name (ecmp_nhop)
RuntimeCmd: Error: Invalid table name (forward)
RuntimeCmd: Error: Invalid table name (send_frame)
RuntimeCmd: Error: Invalid table name (ecmp_group)
RuntimeCmd: Error: Invalid table name (ecmp_nhop)
RuntimeCmd: Error: Invalid table name (ecmp_nhop)
RuntimeCmd: Error: Invalid table name (forward)
RuntimeCmd: Error: Invalid table name (forward)
RuntimeCmd: Error: Invalid table name (send_frame)
RuntimeCmd: Error: Invalid table name (send_frame)
RuntimeCmd:

原因是因为我没有仔细阅读ReadMe,直接把另外一个P4程序的command.txt拿来用了,本实验的P4程序没有这个表的定义,自然报错。

依照ReadMe,了解以下两种command即可:

1. table_set_default [action_data]: this is used to set the default action of a given table2. table_add => [action_data]: this is used to add an entry to a table

ReadMe中也给出了一个具体的依照P4程序编写命令的model:

  • simple_router.p4
  • 依照上面p4写的command.txt

于是,我依照上面的model以及本次实验所用的source_routing.p4程序,写了一个命令来修改command.txt,内容如下。

command.txt:

table_set_default route_pkt route

我也在Github中询问了这个问题,最后自己解决了:)A ping problem in SIGCOMM2015/source_routing

10.启动虚拟端口:

sh /home/wasdns/bmv2/tools/veth_setup.sh

可以使用ifconfig命令验证是否开启。

11.运行脚本:

./run_demo.sh

12.在启动的mininet中打开h1和h3的终端:

xterm h1
xterm h3

13.分别在h1和h3终端上运行脚本:

先执行h3终端上的脚本:

./receive.py

再执行h1终端上的脚本:

./send.py h1 h3

实验结果:

885822-20161219165935963-1047313679.jpg

在h1的xterm上输入文本信息,在h3的xterm上能够接收。但是在mininet中执行h1 ping h3是没有办法ping通的,由此可以证实P4交换机在处理数据报的过程中,进行了协议匹配:当easyroute_port与valid相匹配时,执行route()动作。

总结:

1.勤奋搜索。

2.要理解每一个操作步骤在整个实验中的作用,能够解决很多搜索解决不了的问题。

参考:

  • Github p4lang/tutorial

2016/12/19


转:https://www.cnblogs.com/qq952693358/p/6195385.html



推荐阅读
  • 在Ubuntu 16.04 LTS上配置Qt Creator开发环境
    本文详细介绍了如何在Ubuntu 16.04 LTS系统中安装和配置Qt Creator,涵盖了从下载到安装的全过程,并提供了常见问题的解决方案。 ... [详细]
  • 嵌入式开发环境搭建与文件传输指南
    本文详细介绍了如何为嵌入式应用开发搭建必要的软硬件环境,并提供了通过串口和网线两种方式将文件传输到开发板的具体步骤。适合Linux开发初学者参考。 ... [详细]
  • CentOS7源码编译安装MySQL5.6
    2019独角兽企业重金招聘Python工程师标准一、先在cmake官网下个最新的cmake源码包cmake官网:https:www.cmake.org如此时最新 ... [详细]
  • 解决微信电脑版无法刷朋友圈问题:使用安卓远程投屏方案
    在工作期间想要浏览微信和朋友圈却不太方便?虽然微信电脑版目前不支持直接刷朋友圈,但通过远程投屏技术,可以轻松实现在电脑上操作安卓设备的功能。 ... [详细]
  • 本文详细记录了在银河麒麟操作系统和龙芯架构上使用 Qt 5.15.2 进行项目打包时遇到的问题及解决方案,特别关注于 linuxdeployqt 工具的应用。 ... [详细]
  • 本文介绍如何通过SSH协议使用Xshell远程连接到Ubuntu系统。为了实现这一目标,需要确保Ubuntu系统已安装并配置好SSH服务器,并保证网络连通性。 ... [详细]
  • 选择适合生产环境的Docker存储驱动
    本文旨在探讨如何在生产环境中选择合适的Docker存储驱动,并详细介绍不同Linux发行版下的配置方法。通过参考官方文档和兼容性矩阵,提供实用的操作指南。 ... [详细]
  • Symfony是一个功能强大的PHP框架,以其依赖注入(DI)特性著称。许多流行的PHP框架如Drupal和Laravel的核心组件都基于Symfony构建。本文将详细介绍Symfony的安装方法及其基本使用。 ... [详细]
  • 在编译BSP包过程中,遇到了一个与 'gets' 函数相关的编译错误。该问题通常发生在较新的编译环境中,由于 'gets' 函数已被弃用并视为安全漏洞。本文将详细介绍如何通过修改源代码和配置文件来解决这一问题。 ... [详细]
  • 深入理解 SQL 视图、存储过程与事务
    本文详细介绍了SQL中的视图、存储过程和事务的概念及应用。视图为用户提供了一种灵活的数据查询方式,存储过程则封装了复杂的SQL逻辑,而事务确保了数据库操作的完整性和一致性。 ... [详细]
  • 本文探讨了为何相同的HTTP请求在两台不同操作系统(Windows与Ubuntu)的机器上会分别返回200 OK和429 Too Many Requests的状态码。我们将分析代码、环境差异及可能的影响因素。 ... [详细]
  • 推荐几款高效测量图片像素的工具
    本文介绍了几款适用于Web前端开发的工具,这些工具可以帮助用户在图片上绘制线条并精确测量其像素长度。对于需要进行图像处理或设计工作的开发者来说非常实用。 ... [详细]
  • 搭建Jenkins、Ant与TestNG集成环境
    本文详细介绍了如何在Ubuntu 16.04系统上配置Jenkins、Ant和TestNG的集成开发环境,涵盖从安装到配置的具体步骤,并提供了创建Windows Slave节点及项目构建的指南。 ... [详细]
  • docker镜像重启_docker怎么启动镜像dock ... [详细]
  • 本文深入探讨了UNIX/Linux系统中的进程间通信(IPC)机制,包括消息传递、同步和共享内存等。详细介绍了管道(Pipe)、有名管道(FIFO)、Posix和System V消息队列、互斥锁与条件变量、读写锁、信号量以及共享内存的使用方法和应用场景。 ... [详细]
author-avatar
李东润
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有