本文整理汇总了Python中host.Host.setPapel方法的典型用法代码示例。如果您正苦于以下问题:Python Host.setPapel方法的具体用法?Python Host.setPapel怎么用?Python Host.setPapel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类host.Host
的用法示例。
在下文中一共展示了Host.setPapel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Host
# 需要导入模块: from host import Host [as 别名]
# 或者: from host.Host import setPapel [as 别名]
# __ __ __
#| | | | | |
#| |----| |----| |
#|--| |--| |--|
# h0 r0 h1
rotas ={'10.0.0.0': '0', '10.1.1.0': '1'}
#Rede
#-hosts
h0 = Host("h0")
h0.ip = '10.0.0.1'
h0.setPapel('ircc')
h0
h1 = Host("h1")
h1.ip = '10.1.1.1'
h1.setPapel('ircc')
h1
#-roteadores
r0 = Router("r0", 2)
ipRouter = ['0', '10.0.0.2','1','10.1.1.2', '2' , '192.168.3.3']
r0.setIp(ipRouter)
r0
#-enlaces
e0 = Enlace(h0, r0.getPorta(0), "10M", "5s")
e1 = Enlace(h1, r0.getPorta(1), "10M", "5s")
#e1 = Enlace(h0, h1, "10M", "5s")
#-atribuindo enlaces