├── .gitignore ├── README.md ├── drafts ├── mpls-te-topology │ ├── draft-ietf-teas-yang-te-mpls-topology.md │ ├── draft-ietf-teas-yang-te-mpls-topology.txt │ └── draft-ietf-teas-yang-te-mpls-topology.xml ├── te-topo-and-tunnel-modeling │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-03.docx │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-03.pdf │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-03.txt │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-04.docx │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-04.pdf │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-04.txt │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-06.docx │ ├── draft-ietf-teas-te-topo-and-tunnel-modeling-06.pdf │ └── draft-ietf-teas-te-topo-and-tunnel-modeling-06.txt ├── te-topo-profile │ ├── draft-ietf-teas-te-topology-profiles.md │ ├── draft-ietf-teas-te-topology-profiles.txt │ ├── draft-ietf-teas-te-topology-profiles.xml │ └── figures │ │ ├── mp-link-example.txt │ │ └── p2mp-link-example.txt └── te-types-update │ ├── draft-ietf-teas-rfc8776-update.md │ ├── draft-ietf-teas-rfc8776-update.txt │ └── draft-ietf-teas-rfc8776-update.xml ├── ietf-inet-types.yang ├── ietf-interfaces.yang ├── ietf-key-chain.yang ├── ietf-l3-te-topology-state.tree ├── ietf-l3-te-topology-state.yang ├── ietf-l3-te-topology.tree ├── ietf-l3-te-topology.yang ├── ietf-mpls-static-extended.yang ├── ietf-mpls-static-extended.yang.tree ├── ietf-mpls-static.tree ├── ietf-mpls-static.yang ├── ietf-mpls-static.yang.tree ├── ietf-mpls-te-types.tree ├── ietf-mpls-te-types.yang ├── ietf-mpls-te.tree ├── ietf-mpls.yang ├── ietf-mpls.yang.tree ├── ietf-routing-mpls.yang.tree ├── ietf-routing-types.yang ├── ietf-routing.yang ├── ietf-rsvp-all.yang.tree ├── ietf-rsvp-extended.yang ├── ietf-rsvp-extended.yang.tree ├── ietf-rsvp-te-mpls.yang ├── ietf-rsvp-te-mpls.yang.tree ├── ietf-rsvp-te.yang ├── ietf-rsvp-te.yang.tree ├── ietf-rsvp.yang ├── ietf-rsvp.yang.tree ├── ietf-schedule.yang ├── ietf-sr-topology-state.tree ├── ietf-sr-topology-state.yang ├── ietf-sr-topology.tree ├── ietf-sr-topology.yang ├── ietf-te-01.tree ├── ietf-te-02.tree ├── ietf-te-all.tree ├── ietf-te-dev.tree ├── ietf-te-device.yang ├── ietf-te-mpls-topology.tree ├── ietf-te-mpls-topology.yang ├── ietf-te-mpls.yang ├── ietf-te-packet-types.tree ├── ietf-te-packet-types.yang ├── ietf-te-sr-mpls.yang ├── ietf-te-topology-packet-state.tree ├── ietf-te-topology-packet-state.yang ├── ietf-te-topology-packet.tree ├── ietf-te-topology-packet.yang ├── ietf-te-topology-state.tree ├── ietf-te-topology-state.yang ├── ietf-te-topology-todo-list.txt ├── ietf-te-topology.tree ├── ietf-te-topology.yang ├── ietf-te-types.tree ├── ietf-te-types.yang ├── ietf-te.tree ├── ietf-te.yang ├── ietf-yang-types.yang ├── rsvp_instance.tree ├── rsvp_te_model.tree └── te-json-examples ├── basic-tunnel-example.json ├── individual-path-constraints-tunnel-example.json ├── ipv6-tunnel-example.json ├── json ├── basic-tunnel.json ├── ipv6-tunnel.json ├── multi-domain-tunnel.json ├── multi-paths-tunnel.json ├── named-path-constraints.json ├── path-constraints-tunnel.json ├── prova.json └── tunnel-state.json ├── multi-domain-tunnel-example.json ├── multi-paths-tunnel-example.json ├── named-path-constraints-global-example.json ├── named-path-constraints-tunnel-example.json ├── te-json-examples.txt └── tunnel-state-example.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/README.md -------------------------------------------------------------------------------- /drafts/mpls-te-topology/draft-ietf-teas-yang-te-mpls-topology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/mpls-te-topology/draft-ietf-teas-yang-te-mpls-topology.md -------------------------------------------------------------------------------- /drafts/mpls-te-topology/draft-ietf-teas-yang-te-mpls-topology.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/mpls-te-topology/draft-ietf-teas-yang-te-mpls-topology.txt -------------------------------------------------------------------------------- /drafts/mpls-te-topology/draft-ietf-teas-yang-te-mpls-topology.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/mpls-te-topology/draft-ietf-teas-yang-te-mpls-topology.xml -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-03.docx -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-03.pdf -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-03.txt -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-04.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-04.docx -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-04.pdf -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-04.txt -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-06.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-06.docx -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-06.pdf -------------------------------------------------------------------------------- /drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-and-tunnel-modeling/draft-ietf-teas-te-topo-and-tunnel-modeling-06.txt -------------------------------------------------------------------------------- /drafts/te-topo-profile/draft-ietf-teas-te-topology-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-profile/draft-ietf-teas-te-topology-profiles.md -------------------------------------------------------------------------------- /drafts/te-topo-profile/draft-ietf-teas-te-topology-profiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-profile/draft-ietf-teas-te-topology-profiles.txt -------------------------------------------------------------------------------- /drafts/te-topo-profile/draft-ietf-teas-te-topology-profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-profile/draft-ietf-teas-te-topology-profiles.xml -------------------------------------------------------------------------------- /drafts/te-topo-profile/figures/mp-link-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-profile/figures/mp-link-example.txt -------------------------------------------------------------------------------- /drafts/te-topo-profile/figures/p2mp-link-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-topo-profile/figures/p2mp-link-example.txt -------------------------------------------------------------------------------- /drafts/te-types-update/draft-ietf-teas-rfc8776-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-types-update/draft-ietf-teas-rfc8776-update.md -------------------------------------------------------------------------------- /drafts/te-types-update/draft-ietf-teas-rfc8776-update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-types-update/draft-ietf-teas-rfc8776-update.txt -------------------------------------------------------------------------------- /drafts/te-types-update/draft-ietf-teas-rfc8776-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/drafts/te-types-update/draft-ietf-teas-rfc8776-update.xml -------------------------------------------------------------------------------- /ietf-inet-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-inet-types.yang -------------------------------------------------------------------------------- /ietf-interfaces.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-interfaces.yang -------------------------------------------------------------------------------- /ietf-key-chain.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-key-chain.yang -------------------------------------------------------------------------------- /ietf-l3-te-topology-state.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-l3-te-topology-state.tree -------------------------------------------------------------------------------- /ietf-l3-te-topology-state.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-l3-te-topology-state.yang -------------------------------------------------------------------------------- /ietf-l3-te-topology.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-l3-te-topology.tree -------------------------------------------------------------------------------- /ietf-l3-te-topology.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-l3-te-topology.yang -------------------------------------------------------------------------------- /ietf-mpls-static-extended.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-static-extended.yang -------------------------------------------------------------------------------- /ietf-mpls-static-extended.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-static-extended.yang.tree -------------------------------------------------------------------------------- /ietf-mpls-static.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-static.tree -------------------------------------------------------------------------------- /ietf-mpls-static.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-static.yang -------------------------------------------------------------------------------- /ietf-mpls-static.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-static.yang.tree -------------------------------------------------------------------------------- /ietf-mpls-te-types.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-te-types.tree -------------------------------------------------------------------------------- /ietf-mpls-te-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-te-types.yang -------------------------------------------------------------------------------- /ietf-mpls-te.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls-te.tree -------------------------------------------------------------------------------- /ietf-mpls.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls.yang -------------------------------------------------------------------------------- /ietf-mpls.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-mpls.yang.tree -------------------------------------------------------------------------------- /ietf-routing-mpls.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-routing-mpls.yang.tree -------------------------------------------------------------------------------- /ietf-routing-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-routing-types.yang -------------------------------------------------------------------------------- /ietf-routing.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-routing.yang -------------------------------------------------------------------------------- /ietf-rsvp-all.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp-all.yang.tree -------------------------------------------------------------------------------- /ietf-rsvp-extended.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp-extended.yang -------------------------------------------------------------------------------- /ietf-rsvp-extended.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp-extended.yang.tree -------------------------------------------------------------------------------- /ietf-rsvp-te-mpls.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp-te-mpls.yang -------------------------------------------------------------------------------- /ietf-rsvp-te-mpls.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp-te-mpls.yang.tree -------------------------------------------------------------------------------- /ietf-rsvp-te.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp-te.yang -------------------------------------------------------------------------------- /ietf-rsvp-te.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp-te.yang.tree -------------------------------------------------------------------------------- /ietf-rsvp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp.yang -------------------------------------------------------------------------------- /ietf-rsvp.yang.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-rsvp.yang.tree -------------------------------------------------------------------------------- /ietf-schedule.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-schedule.yang -------------------------------------------------------------------------------- /ietf-sr-topology-state.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-sr-topology-state.tree -------------------------------------------------------------------------------- /ietf-sr-topology-state.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-sr-topology-state.yang -------------------------------------------------------------------------------- /ietf-sr-topology.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-sr-topology.tree -------------------------------------------------------------------------------- /ietf-sr-topology.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-sr-topology.yang -------------------------------------------------------------------------------- /ietf-te-01.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-01.tree -------------------------------------------------------------------------------- /ietf-te-02.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-02.tree -------------------------------------------------------------------------------- /ietf-te-all.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-all.tree -------------------------------------------------------------------------------- /ietf-te-dev.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-dev.tree -------------------------------------------------------------------------------- /ietf-te-device.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-device.yang -------------------------------------------------------------------------------- /ietf-te-mpls-topology.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-mpls-topology.tree -------------------------------------------------------------------------------- /ietf-te-mpls-topology.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-mpls-topology.yang -------------------------------------------------------------------------------- /ietf-te-mpls.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-mpls.yang -------------------------------------------------------------------------------- /ietf-te-packet-types.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-packet-types.tree -------------------------------------------------------------------------------- /ietf-te-packet-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-packet-types.yang -------------------------------------------------------------------------------- /ietf-te-sr-mpls.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-sr-mpls.yang -------------------------------------------------------------------------------- /ietf-te-topology-packet-state.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology-packet-state.tree -------------------------------------------------------------------------------- /ietf-te-topology-packet-state.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology-packet-state.yang -------------------------------------------------------------------------------- /ietf-te-topology-packet.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology-packet.tree -------------------------------------------------------------------------------- /ietf-te-topology-packet.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology-packet.yang -------------------------------------------------------------------------------- /ietf-te-topology-state.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology-state.tree -------------------------------------------------------------------------------- /ietf-te-topology-state.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology-state.yang -------------------------------------------------------------------------------- /ietf-te-topology-todo-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology-todo-list.txt -------------------------------------------------------------------------------- /ietf-te-topology.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology.tree -------------------------------------------------------------------------------- /ietf-te-topology.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-topology.yang -------------------------------------------------------------------------------- /ietf-te-types.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-types.tree -------------------------------------------------------------------------------- /ietf-te-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te-types.yang -------------------------------------------------------------------------------- /ietf-te.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te.tree -------------------------------------------------------------------------------- /ietf-te.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-te.yang -------------------------------------------------------------------------------- /ietf-yang-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/ietf-yang-types.yang -------------------------------------------------------------------------------- /rsvp_instance.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/rsvp_instance.tree -------------------------------------------------------------------------------- /rsvp_te_model.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/rsvp_te_model.tree -------------------------------------------------------------------------------- /te-json-examples/basic-tunnel-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/basic-tunnel-example.json -------------------------------------------------------------------------------- /te-json-examples/individual-path-constraints-tunnel-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/individual-path-constraints-tunnel-example.json -------------------------------------------------------------------------------- /te-json-examples/ipv6-tunnel-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/ipv6-tunnel-example.json -------------------------------------------------------------------------------- /te-json-examples/json/basic-tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/basic-tunnel.json -------------------------------------------------------------------------------- /te-json-examples/json/ipv6-tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/ipv6-tunnel.json -------------------------------------------------------------------------------- /te-json-examples/json/multi-domain-tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/multi-domain-tunnel.json -------------------------------------------------------------------------------- /te-json-examples/json/multi-paths-tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/multi-paths-tunnel.json -------------------------------------------------------------------------------- /te-json-examples/json/named-path-constraints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/named-path-constraints.json -------------------------------------------------------------------------------- /te-json-examples/json/path-constraints-tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/path-constraints-tunnel.json -------------------------------------------------------------------------------- /te-json-examples/json/prova.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/prova.json -------------------------------------------------------------------------------- /te-json-examples/json/tunnel-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/json/tunnel-state.json -------------------------------------------------------------------------------- /te-json-examples/multi-domain-tunnel-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/multi-domain-tunnel-example.json -------------------------------------------------------------------------------- /te-json-examples/multi-paths-tunnel-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/multi-paths-tunnel-example.json -------------------------------------------------------------------------------- /te-json-examples/named-path-constraints-global-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/named-path-constraints-global-example.json -------------------------------------------------------------------------------- /te-json-examples/named-path-constraints-tunnel-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/named-path-constraints-tunnel-example.json -------------------------------------------------------------------------------- /te-json-examples/te-json-examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/te-json-examples.txt -------------------------------------------------------------------------------- /te-json-examples/tunnel-state-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsaad-dev/te/HEAD/te-json-examples/tunnel-state-example.json --------------------------------------------------------------------------------