├── .gitignore ├── .gitmodules └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "OSHI-SR-dataplane-extensions"] 2 | path = OSHI-SR-dataplane-extensions 3 | url = https://github.com/netgroup/OSHI-SR-dataplane-extensions.git 4 | [submodule "SDN-TE-SR-tools"] 5 | path = SDN-TE-SR-tools 6 | url = https://github.com/netgroup/SDN-TE-SR-tools.git 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SDN-TE-SR 2 | SDN based Traffic Engineering and Segment Routing 3 | --------------------------------------------------------------------------------