named-data / python-ndn

An NDN client library with AsyncIO support in Python 3
https://python-ndn.readthedocs.io/en/latest
Apache License 2.0
24 stars 17 forks source link

How to remote register and auto readvertising? #58

Closed killerdbob closed 1 year ago

killerdbob commented 1 year ago

I remotely register into NFD, but the application could not auto advertise prefix. I notice that the application route origin=app. I would like to know how to change origin=app to origin=client ?

zjkmxy commented 1 year ago

I remotely register into NFD, but the application could not auto advertise prefix.

I'm not sure if people are still using the Automatic Prefix Propagation protocol. I have never used it myself. There is an article that may help you set it up: Let the World Reach Your NFD.

I notice that the application route origin=app. I would like to know how to change origin=app to origin=client ?

By NFD management protocol, I think an application should register a route with origin app. My personal view is that the origin client only indicates an route was created by an auto propagation. It is not how NFD decides which prefix to propagate.

killerdbob commented 1 year ago

ok, thanks