Juniper (JNCIS-SP)
  • 1) Juniper Initial Configuration
  • 2) Juniper VLANs + Inter VLAN Routing + DHCP
    • 2.1) Классическая маршрутизация между VLAN (При помощи роутера)
      • Настройка VLAN'ов на SW-MSK-ARB
      • Настройка VLAN'ов на SW-SPB-NEV
      • Настройка IP-адресации, DHCP и маршрутизации между VLAN'ами
      • Проверка конфигурации
      • Полезные ссылки
    • 2.2) Маршрутизация между VLAN на L3-коммутаторе
  • 3) LAGs + Static Routing (с резервированием) + SysLog + SSH
    • Агрегирование каналов и настройка IP-адресов
    • Статическая маршрутизация с резервированием
    • Настройка доступа к Juniper по SSH
    • SysLog Server
    • Конфигурации Устройств
    • Полезные ссылки
  • 4) Q-in-Q
    • Настройка Q-in-Q
    • Конфигурации устройств
  • 5) MC-LAG (Multi-Chassis LAG) + BFD + IRB
    • MC-LAG
    • Конфигурации устройств
    • Полезные ссылки
  • 6) STP (RSTP/VSTP/MSTP + MVRP)
    • RSTP
    • VSTP
    • MSTP
    • STP Protection
    • Конфигурации устройств
    • Полезные ссылки
  • 7) Basic Routing Concepts
    • Полезные ссылки
  • 8) OSPF
    • 4.1) Смена типов областей и Load Balancing
      • Конфигурации устройств
    • 4.2) Настройка Virtual-Link, OSPF в Broadcast-сетях (Выбор DR и BDR) и OSPF summarization
      • Выбор DR и BDR
      • Настройка Virtual-Link + Route Summarization
      • Конфигурации устройств
    • Примечание (Router-ID)
    • OSPF Database and LSA
    • Полезные ссылки
  • 9) IS-IS
    • Практическая часть
    • Конфигурации устройств
    • Полезные ссылки
  • 10) BGP
    • eBGP
    • Анонсирование первых префиксов
    • iBGP
      • BGP Confederations
      • Атрибут Next-Hop и iBGP
      • BGP Route Reflectors
    • BGP Routing Policies
    • BGP Load Balancing
    • BGP Session Attributes
    • Конфигурации устройств
    • Примечание (Router-ID)
    • Полезные ссылки:
  • 11) MPLS
    • Static LSP
    • LDP
    • RSVP
    • L2/L3 VPN
    • Конфигурации Устройств
    • Полезные ссылки
  • 12) CSPF (Dynamic TE)
    • Настройка
    • Конфигурации устройств
    • Полезные ссылки
  • 13) Tunneling Technologies (IPIP/GRE)
    • Конфигурации устройств
    • Полезные ссылки
  • 14) High Availability
    • Конфигурации устройств
    • Полезные ссылки
  • 15) IPv6
  • Полезные ссылки
Powered by GitBook
On this page

Was this helpful?

  1. 9) IS-IS

Конфигурации устройств

system {
    host-name MX1-L1;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 25.0.0.8/31;
            }
            family iso;
        }
    }
    ge-0/0/1 {
        unit 0 {
            family inet {
                address 25.0.0.1/29;
            }
            family iso;
        }                               
    }
    lo0 {
        unit 0 {
            family inet {
                address 25.0.0.254/32;
            }
            family iso {
                address 49.0001.0250.0000.0254.00;
            }
        }
    }
}
protocols {
    isis {
        level 2 disable;
        interface ge-0/0/0.0 {
            point-to-point;
        }
        interface ge-0/0/1.0 {
            level 2 disable;
            level 1 priority 77;
        }
        interface lo0.0;                
    }
}
system {
    host-name MX2-L1;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 25.0.0.9/31;
            }
            family iso;
        }
    }
    ge-0/0/1 {
        unit 0 {
            family inet {
                address 25.0.0.2/29;
            }
            family iso;
        }                               
    }
    lo0 {
        unit 0 {
            family inet {
                address 25.0.0.253/32;
            }
            family iso {
                address 49.0001.0250.0000.0253.00;
            }
        }
    }
}
protocols {
    isis {
        level 2 disable;
        interface ge-0/0/0.0 {
            point-to-point;
        }
        interface ge-0/0/1.0;
        interface lo0.0;
    }
}
system {
    host-name MX3-L1-L2;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 1.1.1.0/31;
            }
            family iso;
        }
    }
    ge-0/0/2 {
        unit 0 {
            family inet {
                address 25.0.0.3/29;
            }
            family iso;
        }                               
    }
    ge-0/0/3 {
        unit 0 {
            family inet {
                address 1.1.1.2/31;
            }
            family iso;
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 25.0.0.252/32;
            }
            family iso {
                address 49.0001.0250.0000.0252.00;
            }
        }
    }
}
routing-options {
    aggregate {
        route 25.0.0.0/24;              
    }
}
protocols {
    isis {
        export Summarization;
        interface ge-0/0/0.0 {
            point-to-point;
            level 1 disable;
        }
        interface ge-0/0/2.0 {
            level 2 disable;
        }
        interface ge-0/0/3.0 {
            point-to-point;
            level 1 disable;
        }
        interface lo0.0 {
            level 2 disable;
        }
    }
}
policy-options {
    policy-statement Summarization {    
        term 2 {
            from protocol aggregate;
            to level 2;
            then accept;
        }
        term 1 {
            from {
                route-filter 25.0.0.0/24 orlonger;
            }
            then reject;
        }
    }
}
system {
    host-name MX4-L2;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 1.1.1.1/31;
            }
            family iso;
        }
    }
    ge-0/0/1 {
        unit 0 {
            family inet {
                address 1.1.1.6/31;
            }
            family iso;
        }                               
    }
    lo0 {
        unit 0 {
            family inet {
                address 2.2.2.2/32;
            }
            family iso {
                address 49.0002.0020.0200.2002.00;
            }
        }
    }
}
protocols {
    isis {
        overload timeout 500;
        interface ge-0/0/0.0 {
            point-to-point;
            level 1 disable;
        }
        interface ge-0/0/1.0 {
            point-to-point;
            level 1 disable;
        }                               
        interface lo0.0 {
            level 1 disable;
        }
    }
}
system {
    host-name MX5-L2;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 1.1.1.4/31;
            }
            family iso;
        }
    }
    ge-0/0/3 {
        unit 0 {
            family inet {
                address 1.1.1.3/31;
            }
            family iso;
        }                               
    }
    lo0 {
        unit 0 {
            family inet {
                address 3.3.3.3/32;
            }
            family iso {
                address 49.0003.0030.0300.3003.00;
            }
        }
    }
}
protocols {
    isis {
        interface ge-0/0/0.0 {
            point-to-point;
            level 1 disable;
        }
        interface ge-0/0/3.0 {
            point-to-point;
            level 1 disable;
        }
        interface lo0.0 {               
            level 1 disable;
        }
    }
}
system {
    host-name MX6-L2;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 1.1.1.5/31;
            }
            family iso;
        }
    }
    ge-0/0/2 {
        unit 0 {
            family inet {
                address 1.1.1.8/31;
            }
            family iso;
        }                               
    }
    lo0 {
        unit 0 {
            family inet {
                address 3.3.3.4/32;
            }
            family iso {
                address 49.0003.0030.0300.3004.00;
            }
        }
    }
}
protocols {
    isis {
        interface ge-0/0/0.0 {
            point-to-point;
            level 1 disable;
        }
        interface ge-0/0/2.0 {
            point-to-point;
            level 1 disable;
        }
        interface lo0.0 {               
            level 1 disable;
        }
    }
}
system {
    host-name MX7-L1-L2;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 50.0.0.0/31;
            }
            family iso;
        }
    }
    ge-0/0/1 {
        unit 0 {
            family inet {
                address 1.1.1.7/31;
            }
            family iso;
        }                               
    }
    ge-0/0/2 {
        unit 0 {
            family inet {
                address 1.1.1.9/31;
            }
            family iso;
        }
    }
    ge-0/0/3 {
        unit 0 {
            family inet {
                address 1.1.1.10/31;
            }
            family iso;
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 50.0.0.254/32;
            }
            family iso {                
                address 49.0004.0500.0000.0254.00;
            }
        }
    }
}
protocols {
    isis {
        interface ge-0/0/0.0 {
            point-to-point;
            level 2 disable;
        }
        interface ge-0/0/1.0 {
            point-to-point;
            level 1 disable;
        }
        interface ge-0/0/2.0 {
            point-to-point;
            level 1 disable;
        }
        interface ge-0/0/3.0 {
            point-to-point;
            level 1 disable;
        }                               
        interface lo0.0 {
            level 2 disable;
        }
    }
}
system {
    host-name MX8-L1;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 50.0.0.1/31;
            }
            family iso;
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 50.0.0.253/32;
            }
            family iso {
                address 49.0004.0500.0000.0253.00;
            }
        }
    }
}
protocols {
    isis {
        level 2 disable;
        interface ge-0/0/0.0 {
            point-to-point;
        }
        interface lo0.0;
    }
}
system {
    host-name MX9-L1-L2;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 75.0.0.0/31;
            }
            family iso;
        }
    }
    ge-0/0/1 {
        unit 0 {
            family inet {
                address 1.1.1.12/31;
            }
            family iso;
        }                               
    }
    ge-0/0/3 {
        unit 0 {
            family inet {
                address 1.1.1.11/31;
            }
            family iso;
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 75.0.0.254/32;
            }
            family iso {
                address 49.0005.0750.0000.0254.00;
            }
        }
    }
}
protocols {
    isis {
        interface ge-0/0/0.0 {          
            point-to-point;
            level 2 disable;
        }
        interface ge-0/0/1.0 {
            point-to-point;
            level 1 disable;
        }
        interface ge-0/0/3.0 {
            point-to-point;
            level 1 disable;
        }
        interface lo0.0 {
            level 2 disable;
        }
    }
}
system {
    host-name MX10-L1;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 75.0.0.1/31;
            }
            family iso;
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 75.0.0.253/32;
            }
            family iso {
                address 49.0005.0750.0000.0253.00;
            }
        }
    }
}
protocols {
    isis {
        level 2 disable;
        interface ge-0/0/0.0 {
            point-to-point;
        }
        interface lo0.0;
    }
}
system {
    host-name MX11-L1-L2;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 100.0.0.0/31;
            }
            family iso;
        }
    }
    ge-0/0/1 {
        unit 0 {
            family inet {
                address 1.1.1.13/31;
            }
            family iso;
        }                               
    }
    lo0 {
        unit 0 {
            family inet {
                address 100.0.0.254/32;
            }
            family iso {
                address 49.0006.1000.0000.0254.00;
            }
        }
    }
}
protocols {
    isis {
        interface ge-0/0/0.0 {
            point-to-point;
            level 2 disable;
        }
        interface ge-0/0/1.0 {
            point-to-point;
            level 1 disable;
        }
        interface lo0.0 {               
            level 2 disable;
        }
    }
}
system {
    host-name MX12-L1;
    root-authentication {
        encrypted-password "$1$leeNuE75$ZZxUWOiLbXj65EWo4ZO2s1"; ## SECRET-DATA
    }
}
interfaces {
    ge-0/0/0 {
        unit 0 {
            family inet {
                address 100.0.0.1/31;
            }
            family iso;
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 100.0.0.253/32;
            }
            family iso {
                address 49.0006.1000.0000.0253.00;
            }
        }
    }
}
protocols {
    isis {
        level 2 disable;
        interface ge-0/0/0.0 {
            point-to-point;
        }
        interface lo0.0 {
            passive;
        }
    }
}
PreviousПрактическая частьNextПолезные ссылки

Last updated 4 years ago

Was this helpful?