Junos OS

last person joined: yesterday 

Ask questions and share experiences about Junos OS.
  • 1.  VRRP on subinterfaces

    Posted 11-10-2009 03:25

    I try configure vrrp on vlan interfaces. I have three virtual interfaces on one physical ethernet interface. This is my interface ge-0/0/0 config:

     

    vlan-tagging;
    unit 123 {
        vlan-id 123;
        family inet {
            address 192.168.246.20/28 {
                vrrp-group 10 {
                    virtual-address 192.168.246.20;
                    priority 255;
                }
            }
        }
    }
    unit 722 {
        vlan-id 722;
        family inet {
            address 192.168.246.122/29 {
                vrrp-group 20 {
                    virtual-address 192.168.246.122;
                    priority 255;
                }
            }
        }
    }
    unit 724 {
        vlan-id 724;
        family inet {
            address 192.168.246.138/29 {
                vrrp-group 30 {
                    virtual-address 192.168.246.138;
                    priority 255;
                }
            }
        }
    }

     

     

     

    When I try commit this configuration, I receive error message:

     

    [edit interfaces ge-0/0/0 unit 722 family inet address 192.168.246.122/29]
    
    'vrrp-group 20'
    
    Can't have more than one group with an IP address owner on this interface
    
    error: configuration check-out failed

     

     

     

    What is solution to configuration vrrp for each virtual interfaces on J2320 platform?

     

    Regards

    Jakub

     



  • 2.  RE: VRRP on subinterfaces
    Best Answer

    Posted 11-10-2009 03:37

    Hi,

     

    just configure your VIP != to physical IP address to get rid of this error.

     

    Kind Regards

    Michael Pergament

     

    If this worked for you please flag my post as an "Accepted Solution" so others can benefit. A kudo would be cool if you think I earned it.

     



  • 3.  RE: VRRP on subinterfaces

    Posted 11-10-2009 04:01

    thx, It's works.

     

    Regards

    Jakub