blob: e452901d34db3d618eacda2579682d45b65fc443 [file] [log] [blame]
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -08001
2class SRRouting:
3 def __init__( self ):
4 self.default = ''
5
6 def CASE1( self, main ):
7 """
Andreas Pantelopoulosb7904ce2018-02-07 16:24:49 -08008 Ping between all ipv4 hosts in the topology.
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -08009 """
10
11 from tests.USECASE.SegmentRouting.SRRouting.dependencies.SRRoutingTest import SRRoutingTest
12
13 SRRoutingTest.runTest( main,
14 test_idx = 1,
15 onosNodes = 3,
16 dhcp=0,
17 routers=0,
18 ipv4=1,
19 ipv6=0,
Andreas Pantelopoulosb7904ce2018-02-07 16:24:49 -080020 description = "Ping between all ipv4 hosts in
21 the topology")
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080022