• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
Xin chào ! Nếu đây là lần đầu tiên bạn đến với diễn đàn, xin vui lòng danh ra một phút bấm vào đây để đăng kí và tham gia thảo luận cùng VnPro.

Announcement

Collapse
No announcement yet.

CCNA Configuration SIM Question (RIPv2 SIM)

Collapse
This is a sticky topic.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • CCNA Configuration SIM Question (RIPv2 SIM)

    Question:
    To configure the router (R2-RC) click on the console host icon that is connected to a router by a serial console cable (shown in the diagram as a dashed black line)
    CCNA Training Company recently installed a new router in their office. Complete the network installation by performing the initial router configurations and configuring RIPV2 routing using the router command line interface (CLI) on the R2-RC.
    Name of the router is R2-RC
    Enable-secret password is cisco1
    The password to access user EXEC mode using the console is cisco2
    The password to allow telnet access to the router is cisco3
    IPV4 addresses must be configured as follows:
    Ethernet network 209.165.202.128/27 – router has last assignable host address in subnet
    Serial network is 192.0.2.16/28 – router has last assignable host address in the subnet. Interfaces should be enabled.
    Router protocol is RIP V2
    Attention :
    In practical examinations, please note the following, the actual information will prevail.
    1. Name of the router is xxx
    2. Enable-secret password is xxx
    3. Password to access user EXEC mode using the console is xxx
    4. The password to allow telnet access to the router is xxx
    5. IP information Solution:


    1) Name the router:
    Router>enable
    Router#configure terminal
    Router(config)#hostname R2-RC
    2) Set secret password:
    R2-RC(config)# enable secret cisco1
    3) Set password for the console:
    R2-RC(config)#line console 0
    R2-RC(config-line)#password cisco2
    R2-RC(config-line)#login
    R2-RC(config-line)#exit
    4) Set the Telnet password:
    R2-RC(config)#line vty 0 4
    R2-RC(config-line)#password cisco3
    R2-RC(config-line)#login
    R2-RC(config-line)#exit
    5) Assign IP address for Ethernet interface (Fa0/0):
    The Ethernet network 209.165.202.128/27 has:
    Increment:32 (/27 = 255.255.255.224 or 1111 1111.1111 1111.1111 1111.1110 0000)
    Network address: 209.165.202.128
    Broadcast address: 209.165.202.159 (because 128 + 32 – 1 = 159)
    Therefore the last assignable host address in this subnet is 209.165.202.158 and we will assign it to Fa0/0 interface with these commands:
    R2-RC(config)# interface fa0/0
    R2-RC(config-if)#ip address 209.165.202.158 255.255.255.224
    R2-RC(config-if)#no shutdown
    R2-RC(config-if)#exit
    6) Assign IP address for Serial interface (S0/0/0):
    Serial network 192.0.2.16/28 has:
    Increment:16 (/28 = 255.255.255.240 or 1111 1111.1111 1111.1111 1111.1111 0000)
    Network address: 192.0.2.16
    Broadcast address
    : 192.0.2.31 (because 16 + 16 – 1 = 31)
    So the last assignable host address in this subnet is 192.0.2.30. Finally we assign it to s0/0/0 interface:
    R2-RC(config)# interface s0/0/0
    R2-RC(config-if)#ip address 192.0.2.30 255.255.255.240
    R2-RC(config-if)#no shutdown
    R2-RC(config-if)#exit
    7) Configure RIP v2 routing protocol:
    R2-RC(config)#router rip
    R2-RC(config-router)#version 2
    R2-RC(config-router)#network 209.165.202.128
    R2-RC(config-router)#network 192.0.2.16
    R2-RC(config-router)#end
    R2-RC#copy running-config startup-config
    Phạm Minh Tuấn

    Email : phamminhtuan@vnpro.org
    Yahoo : phamminhtuan_vnpro
    -----------------------------------------------------------------------------------------------
Trung Tâm Tin Học VnPro
149/1D Ung Văn Khiêm P25 Q.Bình thạnh TPHCM
Tel : (08) 35124257 (5 lines)
Fax: (08) 35124314

Home page: http://www.vnpro.vn
Support Forum: http://www.vnpro.org
- Chuyên đào tạo quản trị mạng và hạ tầng Internet
- Phát hành sách chuyên môn
- Tư vấn và tuyển dụng nhân sự IT
- Tư vấn thiết kế và hỗ trợ kỹ thuật hệ thống mạng

Network channel: http://www.dancisco.com
Blog: http://www.vnpro.org/blog

  • #2
    Sao trong phần cấu hình RIP version2 lại ko có dòng no auto-summary?

    Comment


    • #3
      Originally posted by lenhung View Post
      Sao trong phần cấu hình RIP version2 lại ko có dòng no auto-summary?
      Vì sao lại phải no auto-summary vậy bạn?đầu bài đâu có yêu cầu là chỉ được RIP V2 cho 2 mạng con đó đâu.

      Comment


      • #4
        Originally posted by halq View Post
        Vì sao lại phải no auto-summary vậy bạn?đầu bài đâu có yêu cầu là chỉ được RIP V2 cho 2 mạng con đó đâu.
        Vâỵ khi nào mình dùng no auto-summary và khi nào ko dùng?

        Comment

        • Working...
          X