File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ webapp \
46
46
- sleep
47
47
- cat
48
48
- systemctl
49
+ - python2
49
50
50
51
## SCION Binaries Used/Checked
51
52
- $sbin/scmp
Original file line number Diff line number Diff line change 8
8
9
9
< h2 > SCIONLab Health Check</ h2 >
10
10
< p >
11
- If all automated tests have passed, please continue to < a href ="/apps "> Apps</ a >
11
+ Click on any test in the list below to read detailed results. If all
12
+ automated tests have passed, please continue to < a href ="/apps "> Apps</ a >
12
13
in the menu to use SCIONLab.
13
14
</ p >
14
15
< ul id ="health-list ">
@@ -17,7 +18,7 @@ <h2>SCIONLab Health Check</h2>
17
18
< span id ="test-complete "> </ span >
18
19
</ p >
19
20
< p >
20
- Some tests take a few seconds to succeed , click < a href ="/ "> Health</ a >
21
+ Some tests take a few seconds to complete , click < a href ="/ "> Health</ a >
21
22
to test again. Our < a
22
23
href ='http://netsec-ethz.github.io/scion-tutorials/general_scion_configuration/troubleshooting '> troubleshooting
23
24
guide</ a > may also be useful.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ as=$(echo ${iaFile} | cut -d"-" -f2)
10
10
topologyFile=$SCION_GEN /ISD$isd /AS$as /endhost/topology.json
11
11
12
12
# get remote addresses from interfaces
13
- ip_dsts=$( cat $topologyFile | python -c " import sys, json
13
+ ip_dsts=$( cat $topologyFile | python2 -c " import sys, json
14
14
brs = json.load(sys.stdin)['BorderRouters']
15
15
for b in brs:
16
16
for i in brs[b]['Interfaces']:
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ as=$(echo ${iaFile} | cut -d"-" -f2)
15
15
topologyFile=$SCION_GEN /ISD$isd /AS$as /endhost/topology.json
16
16
17
17
# get remote addresses from interfaces, return paired list
18
- dsts=($( cat $topologyFile | python -c " import sys, json
18
+ dsts=($( cat $topologyFile | python2 -c " import sys, json
19
19
brs = json.load(sys.stdin)['BorderRouters']
20
20
for b in brs:
21
21
for i in brs[b]['Interfaces']:
Original file line number Diff line number Diff line change 28
28
ipAddress=$( echo " $targetLines " | grep -oE " \b([0-9]{1,3}\.){3}[0-9]{1,3}\b" | head -n1)
29
29
topologyFile=$SCION_GEN /ISD* /AS* /endhost/topology.json
30
30
# ip address specified in the topology file. If "bind" parameter present, use that one; "public" if not
31
- ipTopology=$( cat $topologyFile | python -c " import sys, json
31
+ ipTopology=$( cat $topologyFile | python2 -c " import sys, json
32
32
brs = json.load(sys.stdin)['BorderRouters']
33
33
interfaces=next(iter(brs.values()))['Interfaces']
34
34
inter=next(iter(interfaces.values()))
You can’t perform that action at this time.
0 commit comments