Thứ Sáu, 23 tháng 12, 2011

IS-IS Multi Area Lab2





### IS-IS Multi Area CONFIGURE
## 1, BASIC CONFIG, HOSTNAME, IP ADDRESS ACCORDING TO THE DIAGRAM.
# R1: HOSTNAME R1
      enable
    config terminal
    hostname R1
    line console 0
    loggin synch
    no exec-timeout
    no ip domain-lookup
    line console 0
       privilege level 15
       no login
    line vty 0 4
       privilege level 15
       no login
    end
    wr
=====================================

# R2: HOSTNAME R2
      enable
    config terminal
    hostname R2
    line console 0
    loggin synch
    no exec-timeout
    no ip domain-lookup
    line console 0
       privilege level 15
       no login
    line vty 0 4
       privilege level 15
       no login
    end
    wr
=====================================

# R3: HOSTNAME R3
      enable
    config terminal
    hostname R3
    line console 0
    loggin synch
    no exec-timeout
    no ip domain-lookup
    line console 0
       privilege level 15
       no login
    line vty 0 4
       privilege level 15
       no login
    end
    wr
=====================================

## 2 CONFIGURE IP ADDRESS ACCORDING TO THE DIAGRAM
# R1:
    config terminal
      interface f0/0
        ip address 172.16.0.1 255.255.255.0
        no shutdown
        exit
      interface s1/0
        ip address 10.0.0.1 255.255.255.252
        no shutdown
        exit
      interface loopback 0
        ip address 192.168.10.1 255.255.255.255
        end
        wr
=======================================================

# R2:
    config terminal
      interface f0/0
        ip address 172.16.0.2 255.255.255.0
        no shutdown
        exit
      interface loopback 0
        ip address 192.168.20.2 255.255.255.255
        end
        wr
=======================================================

# R3:
    config terminal
      interface s1/0
        ip address 10.0.0.2 255.255.255.252
        no shutdown
        exit
      interface loopback 0
        ip address 192.168.30.3 255.255.255.255
        end
        wr
=======================================================

## 3 CONFIGURE INTEGRATED IS-IS
# R1
    config terminal
      router isis
        net 49.0001.1111.1111.1111.00
        is-type level-1-2       
        exit
      interface f0/0
        ip router isis
        isis circuit-type level-1
        exit
      interface s1/0
        ip router isis
        isis circuit-type level-1-2
        exit
      interface loopback 0
        ip router isis
        isis circuit-type level-1
        end
        wr
==================================================================

# R2
    config terminal
      router isis
        net 49.0001.2222.2222.2222.00
        is-type level-1       
        exit
      interface f0/0
        ip router isis
        isis circuit-type level-1
        exit
      interface loopback 0
        ip router isis
        isis circuit-type level-1
        end
        wr
==================================================================

# R3
    config terminal
      router isis
        net 49.0002.3333.3333.3333.00
        is-type level-2       
        exit
      interface s1/0
        ip router isis
        isis circuit-type level-2
        exit
      interface loopback 0
        ip router isis
        isis circuit-type level-2
        end
        wr
=================================================================
## 4 VERIFYING IS-IS ADJACENCIES AND OPERATION
# show ip protocols
# show clns protocols
# show clns neighbors
# show clns neighbors detail
# show isis database
# show clns interface f0/0
# show isis database R1.00-00 detail
# show isis topology
# show ip route
==================================================================

================The End==========================

Không có nhận xét nào:

Đăng nhận xét