Neutron 是 OpenStack 项目中负责提供网络服务的组件,它基于软件定义网络的思想,实现了网络虚拟化下的资源管理。
本书将剖析 Neutron 组件的原理和实现。
本书源码在 Github 上维护,欢迎参与: https://github.com/yeasy/openstack_understand_Neutron。
感谢所有的 贡献者。
fork
到自己的仓库,如 user/openstack_understand_Neutron
,然后 clone
到本地,并设置用户信息。$ git clone git@github.com:user/openstack_understand_Neutron.git
$ cd openstack_understand_Neutron
$ git config user.name "User"
$ git config user.email user@email.com
$ #do some change on the content
$ git commit -am "Fix issue #1: change helo to hello"
$ git push
$ git remote add upstream https://github.com/yeasy/openstack_understand_Neutron
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push -f origin master