Project

General

Profile

Bug #2719

Updated by Vince Lehman about 8 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

Back