SRX

last person joined: 22 hours ago 

Ask questions and share experiences about the SRX Series, vSRX, and cSRX.
  • 1.  "no other famil y type can be configured on the same interface."

    Posted 10-30-2014 08:42
    admin@SRX650# commit
    [edit interfaces ge-6/0/2 unit 0]
      'family'
        When ethernet-switching family is configured on an interface, no other famil
    y type can be configured on the same interface.
    error: configuration check-out failed
    
    [edit]
    admin@SRX650#

     Hi support,

     

    After I commit the command line, it takes error message like above.

    Please tell me that' why and let us know how we can fix this issue?

     

    Thanks,

    Vinh Ng



  • 2.  RE: "no other famil y type can be configured on the same interface."

    Posted 10-30-2014 13:41

    Can you share the actual config statement for ge-6/0/2? That error typically occurs when combining mutliple families (ie ethernet-switching and inet) on the same interface.

     



  • 3.  RE: "no other famil y type can be configured on the same interface."

    Posted 10-30-2014 19:23

    Hi muttbarker,

     

    What is the exactly command line do you want to show the config ge-0/0/2

    Please let us know

     

    Thanks

    Vinh Ng



  • 4.  RE: "no other famil y type can be configured on the same interface."

    Posted 10-30-2014 22:16

    Hi VinhNg,

     

    You cannot configure ge-6/0/2 interface as both  L3 interface & L2 interface at the same time.


    Example:

     

    root@SRX240PoE-6# show interfaces ge-0/0/0
    unit 0 {
        family inet {
            address 10.204.115.128/24; <<<<<<<<<<<<<<<<<< L3 interface Type
        }
        family ethernet-switching { <<<<<<<<<<<<<<<<<<<< L2 interface type
            vlan {
                members test;
            }
        }
    }


    root@SRX240PoE-6# commit

    [edit interfaces ge-0/0/0 unit 0]
      'family'
        When ethernet-switching family is configured on an interface, no other family type can be configured on the same interface.
    error: configuration check-out faile

     

    so remove either family ethernet-switching or family inet configuration for the interface ge-6/0/2

     

    To check interface configuration: from the configuration mode , run this command: show interface ge-6/0/2


    Regards
    rparthi
     

    Please Mark My Solution Accepted if it Helped, Kudos are Appreciated Too



  • 5.  RE: "no other famil y type can be configured on the same interface."

    Posted 11-01-2014 03:33

    Hi rparthi,

     

    [edit]
    admin@SRX650# show interfaces ge-6/0/2
    unit 0 {
        family inet {
            address 10.0.20.15/24;
        }
        family ethernet-switching {
            port-mode access;
            vlan {
                members vlan20;
            }
        }
    }
    
    [edit]
    admin@SRX650#

     

     

    Thanks for your kindly explains

    Can you let us know how to remove family inet configuration for the interface ge-6/0/2?

     

    Thanks,

    Vinh Ng



  • 6.  RE: "no other famil y type can be configured on the same interface."
    Best Answer

    Posted 11-01-2014 03:43

    use the keyword "delete" to remove a configuration statement.

     

    delete interfaces ge-6/0/2 unit 0 family inet

     

     



  • 7.  RE: "no other famil y type can be configured on the same interface."

     
    Posted 11-01-2014 03:44

    Hi Vinh

     

    To remove inet from ge-6/0/2. run below:

     

    root# delete interfaces ge-6/0/2 unit 0 family inet

     

    Regards,

    Raveen



  • 8.  RE: "no other famil y type can be configured on the same interface."

    Posted 11-01-2014 04:07

    Thanks all,

     

    I can solve this case already!

     

    Vinh Ng