Bug #2719
Updated by Vince Lehman almost 10 years ago
Currently, NlsrConfigGenerator sets NLSR's site name to the same site for all routers:
general += " site /edu\n"
Instead, the site name should be set based on the node's name:
general += " site /{}-site\n".format(self.node.name) /edu/%s\n" % self.node.name