Wednesday, April 16, 2014

Adding IP resource in Parallel Veritas Cluster Group

There may be case that we need to add IP resource in one of parallel group in VCS  cluster. IP should be uniq for each system and must come up on designated system. Below is example how to add such Ip resource


group A_parallel_group (
        SystemList = { system1 = 0, system2 = 1 }
        Parallel = 1
        AutoStartList = { system1, system2 }
        )

        IP app_ip(
                Device @system1 = "eth2"
                Device @system2 = "eth3"
                Address @system1 = "10.10.10.100"
                Address @system2 = "10.10.10.200"
                NetMask = "255.255.255.0"
                )

No comments:

Post a Comment