前言
本书的一到三章介绍 Mininet 的安装和使用;第四章介绍一些高级功能;五到七章分析 Mininet 的源码实现。
- 0.6: 2013-12-16
- 完善对 topo 模块、net 模块等的分析。
- 0.5: 2013-12-11
- 补充对部分 example 文件的分析;
- 增加对 clean 模块的分析。
- 0.4: 2013-11-18
- 补充对 link 和 node 库的核心代码分析;补 充运行文件分析。
- 0.3: 2013-11-16
- 完成运行文件分析。
- 0.2: 2013-11-15
- 完成库文件分析。
- 0.1: 2013-10-11
- 完成代码结构分析。
- 在 GitHub 上
fork
到自己的仓库,如user/mininet_book
,然后clone
到本地,并设置用户信息。$ git clone [email protected]:user/mininet_book.git$ cd mininet_book$ git config user.name "User"$ git config user.email [email protected] - 修改代码后提交,并推送到自己的仓库。$ #do some change on the content$ git commit -am "Fix issue #1: change helo to hello"$ git push
- 在 GitHub 网站上提交 pull request。
- 定期使用项目仓库内容更新自己仓库内容。```$ git fetch upstream$ git checkout master$ git rebase upstream/master$ git push -f origin master
Last modified 3yr ago