Routing

last person joined: 3 days ago 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  Show interface terse in Juniper

    Posted 01-10-2017 08:48

    Hi I am new to Juniper. Anyone can explain the below interface? what do these interface mean? or send a link. What is a physical interface? Thank you

     

     

    ABC> show interfaces terse
    Interface Admin Link Proto Local Remote
    cbp0 up up
    demux0 up up
    dsc up up
    em0 up up
    gre up up
    ipip up up
    irb up up
    lo0 up up
    lo0.16384 up up inet 127.0.0.1 --> 0/0
    lo0.16385 up up inet 128.0.0.4 --> 0/0
    inet6 fe80::200:f:fc00:1111
    lsi up up
    mtun up up
    pimd up up
    pime up up
    pip0 up up
    pp0 up up
    tap up up



  • 2.  RE: Show interface terse in Juniper

    Posted 01-10-2017 09:28

    Hi,

     

    Please refer to the below link.

     

    Interface Naming Overview

     

     

    [KUDOS PLEASE! If you think I earned it!

    If this solution worked for you please flag my post as an "Accepted Solution" so others can benefit..]



  • 3.  RE: Show interface terse in Juniper
    Best Answer

    Posted 01-10-2017 09:41

    cbp0 up up..................> customer backbone port 

    https://www.juniper.net/documentation/en_US/junos13.3/topics/concept/pbb-pip-cbp-interface-understanding.html

     

    demux0 up up..............> its a logical subscriber interface and its created dynamically by DHCP access method.

    http://www.juniper.net/documentation/en_US/junos/topics/concept/subscriber-management-ip-demux.html


    dsc up up.....................> dsc is discard iterface and its a virtual interface 

    https://www.juniper.net/documentation/en_US/junos15.1/topics/concept/interfaces-discard-interfaces-overview.html


    em0 up up....................>Both EM0 and EM1 are internal interfaces that connect between the Routing Engine (RE) and the Control Board (CB).  There is no correlation between EM0/EM1 to any physical interfaces.


    gre up up.........................>Configuration of a GRE (Generic Routing Encapsulation) tunnel requires defining the tunnel source and tunnel destination addresses. It is important to note that the tunnel destination address is by default considered to be reachable using the default routing table "inet.0".

     

    ipip up up..........................> Its same as GRE tunnel interfce

    Internally generated IP-over-IP interface. This interface is generated by the Junos OS to handle IP-over-IP encapsulation. It is not a configurable interface.


    irb up up..........................> its logical interface for routing and bridging use for inter vlan routing. And also call it as routed vlan interfaces in ex series switches.


    lo0 up up..........................> loopback interface

    lo0.16384 up up inet 127.0.0.1 --> 0/0.........................> loopback interface
    lo0.16385 up up inet 128.0.0.4 --> 0/0.........................> loopback interfacehttps://www.juniper.net/documentation/en_US/junos15.1/topics/concept/interface-security-loopback-understanding.html

     


    inet6 fe80::200:f:fc00:1111............................................> ip version 6 interface


    lsi up up........................................................................> label switched interface used in VRF for MPLS VPNs.
    mtun up up....................................................................>Internally generated interface that is not configurable.
    pimd up up.....................................................................>Internally generated interface that is not configurable.

    pime up up.....................................................................>Internally generated interface that is not configurable.
    pip0 up up......................................................................>provider instance port 

    https://www.juniper.net/documentation/en_US/junos13.3/topics/concept/pbb-pip-cbp-interface-understanding.html

     

    pp0 up up.......................................................................> point to point interface
    tap up up........................................................................> Internally generated interface that is not configurable.

     

    OR

     

    pl refer below link for complete list of logical interfaces in juniper and sometimes its depends or series to series devices.

    https://www.juniper.net/documentation/en_US/junos/topics/concept/interfaces-interface-naming-overview.html

     



  • 4.  RE: Show interface terse in Juniper

    Posted 01-10-2017 10:14

    Thank you!