-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRD.txt
83 lines (83 loc) · 2.17 KB
/
IRD.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"meta": {
"cost-types": {
"num-routing": {
"cost-mode": "numerical",
"cost-metric": "routingcost",
"description": "My default"
},
"num-hop": {
"cost-mode": "numerical",
"cost-metric": "hopcount"
},
"ord-routing": {
"cost-mode": "ordinal",
"cost-metric": "routingcost"
},
"ord-hop": {
"cost-mode": "ordinal",
"cost-metric": "hopcount"
}
},
"default-alto-network-map": "my-default-network-map"
},
"resources": {
"my-default-network-map": {
"uri": "http://alto.example.com/networkmap",
"media-type": "application/alto-networkmap+json"
},
"numerical-routing-cost-map": {
"uri": "http://alto.example.com/costmap/num/routingcost",
"media-type": "application/alto-costmap+json",
"capabilities": {
"cost-type-names": [
"num-routing"
]
},
"uses": [
"my-default-network-map"
]
},
"numerical-hopcount-cost-map": {
"uri": "http://alto.example.com/costmap/num/hopcount",
"media-type": "application/alto-costmap+json",
"capabilities": {
"cost-type-names": [
"num-hop"
]
},
"uses": [
"my-default-network-map"
]
},
"custom-maps-resources": {
"uri": "http://custom.alto.example.com/maps",
"media-type": "application/alto-directory+json"
},
"endpoint-property": {
"uri": "http://alto.example.com/endpointprop/lookup",
"media-type": "application/alto-endpointprop+json",
"accepts": "application/alto-endpointpropparams+json",
"capabilities": {
"prop-types": [
"my-default-network-map.pid",
"priv:ietf-example-prop"
]
}
},
"endpoint-cost": {
"uri": "http://alto.example.com/endpointcost/lookup",
"media-type": "application/alto-endpointcost+json",
"accepts": "application/alto-endpointcostparams+json",
"capabilities": {
"cost-constraints": true,
"cost-type-names": [
"num-routing",
"num-hop",
"ord-routing",
"ord-hop"
]
}
}
}
}