Skip to main content

EDGE connecting to a CORE

In this example, configure the EDGE appliance of Customer 1 to connect to the CORE of ISP 1 via a SCION link on a dedicated physical interface as shown in the figure below.

169.254.0.0/30
169.254.0....
.1:31000
.1:31...
.2:31000
.2:31...
100
100
1
1
Customer 1
ISD-AS: 1-ff00:1:10
Customer 1...
ISP 1
ISD-AS: 1-ff00:0:1
ISP 1...
200
200
Anapaya CORE
Anapaya CORE
Anapaya EDGE
Anapaya EDGE
SCION Link
SCION Link
SCION Interface ID
SCION Interface ID
Text is not SVG - cannot display

Configure the following:

  1. The physical network interface that is used for the SCION link in the interfaces section of the configuration.
  2. The PARENT SCION link to ISP 1 in the scion.ases.neighbors section of the configuration.

The relevant parts of the configuration for the EDGE appliance of Customer 1 are shown below.

Example: Network interfaces
{
"interfaces": {
"ethernets": [
{
"name": "eth0",
"addresses": ["169.254.0.2/30"],
}
]
}
}
Example: SCION link
{
"scion": {
"ases": [
{
"isd_as": "1-ff00:1:10",
"neighbors": [
{
"neighbor_isd_as": "1-ff00:0:1",
"relationship": "PARENT",
"interfaces": [
{
"address": "169.254.0.2"
"administrative_state": "UP",
"interface_id": 1,
"scion_mtu": 1472,
"remote": {
"address": "169.254.0.1",
"interface_id": 100
}
}
]
}
]
}
]
}
}