本文整理汇总了Python中AutoNetkit.plot方法的典型用法代码示例。如果您正苦于以下问题:Python AutoNetkit.plot方法的具体用法?Python AutoNetkit.plot怎么用?Python AutoNetkit.plot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AutoNetkit
的用法示例。
在下文中一共展示了AutoNetkit.plot方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: plot
# 需要导入模块: import AutoNetkit [as 别名]
# 或者: from AutoNetkit import plot [as 别名]
def plot(self, matplotlib=False):
"""Plot the network topology
Args:
None
Returns:
None
Example usage:
>>> inet = ank.internet.Internet()
>>> inet.plot()
"""
LOG.info("Plotting")
matplotlib = matplotlib or config.settings['Plotting']['matplotlib']
if matplotlib:
ank.plot(self.network)
ank.jsplot(self.network)
ank.summarydoc(self.network)
ank.dump_graph(self.network.graph, os.path.join(config.log_dir, "physical"))
physical_single_edge = nx.Graph(self.network.graph)
ank.dump_graph(physical_single_edge, os.path.join(config.log_dir, "physical_single_edge"))
ibgp_graph = ank.get_ibgp_graph(self.network)
ebgp_graph = ank.get_ebgp_graph(self.network)
ank.dump_graph(ibgp_graph, os.path.join(config.log_dir, "ibgp"))
ank.dump_graph(ebgp_graph, os.path.join(config.log_dir, "ebgp"))
g_dns = nx.Graph(self.network.g_dns)
ank.dump_graph(g_dns, os.path.join(config.log_dir, "dns"))
ank.dump_graph(self.network.g_dns_auth, os.path.join(config.log_dir, "dns_auth"))
ank.dump_identifiers(self.network, os.path.join(config.log_dir, "identifiers.txt"))