diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2025-08-11 20:32:23 +0200 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2025-08-18 08:29:23 +0200 |
commit | 961b3824bfb82ddb00f85c1a7fbed7f802f48219 (patch) | |
tree | f36d3f29f2a8a875b26db25307cb735db09f7711 /irmd.conf.in | |
parent | f3a8b05a9e71473b88132919f8f1813eb577f71a (diff) | |
download | ouroboros-961b3824bfb82ddb00f85c1a7fbed7f802f48219.tar.gz ouroboros-961b3824bfb82ddb00f85c1a7fbed7f802f48219.zip |
ipcpd: Configure link-state at bootstrap
The link-state component had some values defined in the source such as
link-state advertisement interval, link timeout period and the PFF
recalculation time. These can now be configured from the config file
or via "irm ipcp bootstrap" on the command line.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Diffstat (limited to 'irmd.conf.in')
-rw-r--r-- | irmd.conf.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/irmd.conf.in b/irmd.conf.in index dda5ccfd..2f7862bd 100644 --- a/irmd.conf.in +++ b/irmd.conf.in @@ -101,14 +101,17 @@ autobind=true # Defaults to false. # max_ttl=60 # Defaults to 60 (max 255). # addr-auth="flat" # Defaults to flat (currently only option). # routing="lfa" # Defaults to link-state (options: link-state, lfa, ecmp). +# ls_t_recalc=4 # Forwarding Function update interval (s) (Default 4). +# ls_t_update=15 # Link State Advertisement update interval (s) (Default 15). +# ls_t_timeo=60 # Link Timeout (s) (Default 60). # congestion="none" # Defaults to mb-ecn (options: none, mb-ecn). # directory=DHT # Defaults to DHT (options: DHT) # hash="SHA3_224" # Defaults to SHA3_256. # dht_alpha=3 # DHT parallel search factor (Default 3, optimal) # dht_k=8 # DHT replication factor (Default: 8, same as Mainline DHT) # dht_t_expiry=3600 # DHT entry expiry time (s) (Default: 86400 s) -# dht_t_refresh # DHT contact refresh interval (s) (Default: 900 s) -# dht_t_replicate # DHT replication interval (s) (Default: 900 s) +# dht_t_refresh=900 # DHT contact refresh interval (s) (Default: 900 s) +# dht_t_replicate=900 # DHT replication interval (s) (Default: 900 s) # NAMES KNOWN reg=["oping"] # Defaults to []. |