You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trust anchor locators are grouped by the repository the trust anchor resides is, so APNICs 5 trust anchors are all grouped together. This is done to make prefetching easier.
35
+
Trust anchor locators should be grouped by _the repository the trust anchor resides in_. For example all 5 of APNICs trust anchors are grouped together. This is done to make prefetching easier.
25
36
26
37
#### Prefetching
27
-
Some repositories have a flat structure, and thus the normal recursive fetching process takes a long time (using rsync). To shorten the process prefetching aims to download as much of the repository in advance. In MIRO/Browser/prefetching you can see the URIs set to being prefetched for every TAL grouping.
38
+
Some repositories have a flat structure, and thus the normal recursive fetching process takes a long time (using rsync). To shorten the process prefetching aims to download as much of the repository in advance. In `MIRO/Browser/prefetching` you can see the URIs set to being prefetched for every TAL grouping.
39
+
40
+
If you are adding new TALs that point to repositories that are flat, it would be a good idea to make a file `/var/data/MIRO/Browser/prefetching/<your TAL group>` that contains URIs to prefetch.
28
41
29
42
### Updating
30
-
In order to trigger an update, a connection coming from the loopback interface needs to be made to the update port (default 9234).
31
-
One way to do this (python):
32
-
```
43
+
In order to trigger an update, a connection coming from the **loopback interface** needs to be made to the update port (default 9234).
44
+
One way to do this (python2):
45
+
```python
33
46
sock = socket.socket()
34
47
try:
35
48
sock.connect(("localhost",9234))
@@ -40,10 +53,10 @@ except socket_error as e:
40
53
To setup regular updates, use a cronjob.
41
54
42
55
### Export
43
-
The last downloaded resource certificate trees as well as ROAs are saved at /var/data/MIRO/Browser/exports
56
+
The last downloaded resource certificate trees as well as ROAs are saved at `/var/data/MIRO/Browser/exports`
44
57
45
58
### Config file
46
-
In the conf file /var/data/MIRO/Browser/miro.browser.conf you can change the update port (default 9234)
59
+
In the conf file `/var/data/MIRO/Browser/miro.browser.conf` you can change the update port (default 9234)
0 commit comments