Skip to content

Commit 72461e7

Browse files
authored
Update NLSR with seq recovery (#29)
1 parent 072a885 commit 72461e7

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ services:
9999
- ${PWD}/dist/ndncert/site.ndncert:/certs/site.ndncert:ro
100100
- ${PWD}/anchors:/keys/anchors:ro
101101
entrypoint: /bin/bash
102-
command: ['-c', 'ndn6-serve-certs /keys/anchors/*.base64 /certs/*.ndncert']
102+
command: ["-c", "ndn6-serve-certs /keys/anchors/*.base64 /certs/*.ndncert"]
103103
restart: unless-stopped
104104
depends_on:
105105
nfd: { condition: service_healthy }
106106
logging:
107107
driver: local
108108

109109
nlsr:
110-
image: ghcr.io/named-data/nlsr:20250502
110+
image: ghcr.io/named-data/nlsr:20260328
111111
init: true
112112
volumes:
113113
- /run/nfd:/run/nfd:ro
@@ -162,7 +162,7 @@ services:
162162
- ${PWD}/dist/ndncert/ndncert-mail.conf:/etc/ndncert/ndncert-mail.conf:ro
163163
- ${PWD}/dist/ndncert/ndncert-ca.conf:/config/ndncert-ca.conf:ro
164164
environment:
165-
NDN_LOG: '*=TRACE'
165+
NDN_LOG: "*=TRACE"
166166
restart: unless-stopped
167167
depends_on:
168168
nfd: { condition: service_healthy }
@@ -171,7 +171,7 @@ services:
171171

172172
root-http-ca:
173173
image: ghcr.io/named-data/testbed-master:20240512
174-
profiles: [root-ca] # in .env
174+
profiles: [root-ca] # in .env
175175
init: true
176176
tty: true
177177
volumes:
@@ -191,15 +191,15 @@ services:
191191

192192
root-ndncert:
193193
image: ghcr.io/ucla-irl/ndncert-ca:20250923
194-
profiles: [root-ca] # in .env
194+
profiles: [root-ca] # in .env
195195
init: true
196196
volumes:
197197
- /run/nfd:/run/nfd:ro
198198
- ${PWD}/root-ca-home:/config
199199
- ${PWD}/dist/root-ndncert/root-mail.conf:/etc/ndncert/ndncert-mail.conf:ro
200200
- ${PWD}/dist/root-ndncert/root-ca.conf:/config/ndncert-ca.conf:ro
201201
environment:
202-
NDN_LOG: '*=TRACE'
202+
NDN_LOG: "*=TRACE"
203203
restart: unless-stopped
204204
depends_on:
205205
nfd: { condition: service_healthy }

templates/nlsr/nlsr.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ fib
5454
advertising
5555
{
5656
{% for prefix in advertised_prefixes %}
57-
prefix {{ prefix }}
57+
{{ prefix }} 0
5858
{% endfor %}
5959
}
6060

0 commit comments

Comments
 (0)