By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
FantasistaFantasista
  • Home
  • Network
  • System
  • Software
  • Security
    SecurityShow More
    Hướng dẫn chung về Kali Linux
    27/05/2022
    Ransomware tấn công có chủ đích vào các tổ chức
    03/11/2021
    Series Pentesterlab – Day 22: CVE-2007-1860: mod_jk double-decoding
    04/10/2021
    Series Pentesterlab – Day 21: From SQL Injection to Shell
    15/09/2021
    Series Tryhackme – Day 01: Starting Out In Cyber Sec
    13/09/2021
  • Coding
  • Life
Search
© 2022 Foxiz News Network. Ruby Design Company. All Rights Reserved.
Reading: Hướng dẫn cấu hình EIGRPv6
Share
Sign In
Notification Show More
Latest News
Hướng dẫn chung về Kali Linux
27/05/2022
Ransomware tấn công có chủ đích vào các tổ chức
03/11/2021
Hướng dẫn kích hoạt IDM Full không cần crack, sử dụng key an toàn
10/10/2021
Series Pentesterlab – Day 22: CVE-2007-1860: mod_jk double-decoding
04/10/2021
Series Pentesterlab – Day 21: From SQL Injection to Shell
15/09/2021
Aa
FantasistaFantasista
Aa
Search
Have an existing account? Sign In
Follow US
© 2022 Foxiz News Network. Ruby Design Company. All Rights Reserved.
Fantasista > Blog > Fantasista > Network > CCNA/CCNP > Hướng dẫn cấu hình EIGRPv6
CCNA/CCNPNetwork

Hướng dẫn cấu hình EIGRPv6

Fantasista
Fantasista 10/06/2021
Updated 2021/08/14 at 11:24 Sáng
Share
2 Min Read
SHARE
Mục lục
Đặc tính cơ bản của EIGRPv6Sơ đồ mạng trong bài lab

Đặc tính cơ bản của EIGRPv6

Chào mọi người, hôm nay mình sẽ hướng dẫn cách cấu hình chi tiết EIGRP IPv6 trên EVE-NG theo các mode khác nhau như Classic AS, Named. Thêm vào đó là cách cấu hình passive-interface để ngăn gửi bản tin eigrp đến router khác. Nào, hãy bắt đầu ngay thôi!

image 1 - Hướng dẫn cấu hình EIGRPv6

Sơ đồ mạng trong bài lab

Tham khảo chi tiết lại bài viết sau:

https://www.ccna7.com/5-1-2-lab-implement-eigrp-for-ipv6-answers/
image 2 - Hướng dẫn cấu hình EIGRPv6

Cấu hình trên Router R1:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Router(config)#host R1
R1(config)#int e0/0
R1(config-if)#ipv6 add 2001:db8:cafe:1::1/64
R1(config-if)#no sh
R1(config-if)#int e0/1
R1(config-if)#no sh
R1(config-if)#int e0/1.1
R1(config-subif)#encapsulation dot1Q 1
R1(config-subif)#ipv6 add 2001:db8:acad:1::1/64
R1(config-subif)#no sh
R1(config-subif)#int e0/1.2
R1(config-subif)#encapsulation dot1Q 2
R1(config-subif)#ipv6 add 2001:db8:acad:2::1/64
R1(config-subif)#no sh
R1(config-subif)#exit
R1(config)#ipv6 unicast-routing
R1(config)#end

Kiểm tra cấu hình trên R1 đã đúng chưa bằng lệnh sau:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
R1#<strong>sh ipv6 interface bri</strong>
Ethernet0/0            [up/up]
    FE80::A8BB:CCFF:FE00:1000 #đây là IP local, tự động sinh
    2001:DB8:CAFE:1::1
Ethernet0/1            [up/up]
    unassigned
Ethernet0/1.1          [up/up]
    FE80::A8BB:CCFF:FE00:1010
    2001:DB8:ACAD:1::1
Ethernet0/1.2          [up/up]
    FE80::A8BB:CCFF:FE00:1010
    2001:DB8:ACAD:2::1
Ethernet0/2            [administratively down/down]
    unassigned
Ethernet0/3            [administratively down/down]
    unassigned
 
 

Cấu hình R2:

1
2
3
4
5
6
7
8
9
10
11
12
13
R2(config)#ipv6 unicast-routing
R2(config)#int e0/0
R2(config-if)#ipv6 add 2001:db8:cafe:1::2/64
R2(config-if)#no sh
R2(config-if)#int e0/1
R2(config-if)#ipv6 add 2001:db8:cafe:2::2/64
R2(config-if)#no sh
R2(config-if)#int lo0
R2(config-if)#ipv6 add 2001:db8:ff:999::1/64
R2(config-if)#int lo1
R2(config-if)#ipv6 add 2001:db8:cede::1/64  
R2(config-if)#int lo2
R2(config-if)#ipv6 add 2001:db8:cede:1::1/64

Cấu hình R3:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
R3(config)#ipv6 unicast-routing
R3(config)#int e0/0
R3(config-if)#ipv6 add 2001:db8:cafe:2::1/64
R3(config-if)#no sh
R3(config-if)#int e0/1
R3(config-if)#ipv6 add 2001:db8:acad:3::1/64
R3(config-if)#no sh
R3(config-if)#int lo1
R3(config-if)#ipv6 add 2001:db8:abcd:8::1/64
R3(config-if)#int lo2
R3(config-if)#ipv6 add 2001:db8:abcd:9::1/64
R3(config-if)#int lo3                      
R3(config-if)#ipv6 add 2001:db8:abcd:10::1/64
R3(config-if)#int lo4                        
R3(config-if)#ipv6 add 2001:db8:abcd:11::1/64
R3(config-if)#int lo5                        
R3(config-if)#ipv6 add 2001:db8:abcd:12::1/64

Cấu hình D2:

1
2
3
4
5
6
7
8
9
10
11
12
D2(config)#ipv6 unicast-routing
D2(config-if)#int e0/0
D2(config-if)#no switchport
D2(config-if)#ipv6 address 2001:db8:acad:3::2/64
D2(config-if)#no sh
D2(config-if)#int e0/1                          
D2(config-if)#no switchport
D2(config-if)#ipv6 address 2001:db8:acad:1::2/64
D2(config-if)#no sh
D2(config)#router eigrp EIGRP_IPV6
D2(config-router)#address-family ipv6 unicast autonomous-system 43
D2(config-router-af)#eigrp router-id 132.132.132.132

Cấu hình D1:

1
2
3
4
5
6
7
8
D1(config)#int e0/1
D1(config-if)#switchport trunk encapsulation dot1q  
D1(config-if)#sw mode trunk
D1(config-if)#int e0/2
D1(config-if)#sw access vlan 2
D1(config-if)#int e0/0
D1(config-if)#sw trunk encapsulation dot1q  
D1(config-if)#sw mode trunk

You Might Also Like

Chia sẻ icon, visio stencil của các thiết bị network, server

Cơ bản về PNETLAB

So sánh các chương trình giả lập giả lập thiết bị mạng GNS3, EVE-NG và Packet Tracer

Bắt gói tin các thiết bị giả lập trong EVE bằng Wireshark

Các thuật ngữ trong OSPF

TAGGED: ccnp, network

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Fantasista 10/06/2021
Share this Article
Facebook TwitterEmail Copy Link Print
Share
Posted by Fantasista
Follow:
Xin chào, mình là Tân. Mình tạo blog này 01/06/2021. Đây là nơi mình ghi chép lại những suy nghĩ, cảm nhận trong cuộc sống và những kiến thức mà mình học được.
Previous Article Hướng dẫn cài đặt theme tin tức Newspaper giống demo hoàn toàn
Next Article Các thuật ngữ trong OSPF
1 Comment 1 Comment
  • Hà viết:
    08/08/2021 lúc 22:11

    Thank you!

    Trả lời

Trả lời Hủy

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *

Stay Connected

235.3k Followers Like
69.1k Followers Follow
11.6k Followers Pin
56.4k Followers Follow
136k Subscribers Subscribe
4.4k Followers Follow
- Advertisement -
Ad imageAd image

Latest News

Hướng dẫn chung về Kali Linux
Bảo mật Công cụ bảo mật 27/05/2022
Ransomware tấn công có chủ đích vào các tổ chức
An toàn thông tin Bảo mật 03/11/2021
Hướng dẫn kích hoạt IDM Full không cần crack, sử dụng key an toàn
Phần mềm Tiện ích 10/10/2021
Series Pentesterlab – Day 22: CVE-2007-1860: mod_jk double-decoding
Bảo mật Pentest 04/10/2021
https://pbs.twimg.com/profile_images/1542611508093661184/MR5LYGqH_normal.jpg
@envato
1.5k Following
71k Followers
https://pbs.twimg.com/profile_images/1542611508093661184/MR5LYGqH_normal.jpg 8 giờ ago
@barts_ron Hi! Thanks for contacting us. It looks like all our systems are running smoothly. You can check the stat… https://t.co/Haz9yXFnMM
https://pbs.twimg.com/profile_images/1542611508093661184/MR5LYGqH_normal.jpg 15 giờ ago
@NeilEvansRocks Thank you for reaching out. I am happy to answer general questions here. For more personalized assi… https://t.co/KG3fxSwwXS
https://pbs.twimg.com/profile_images/1542611508093661184/MR5LYGqH_normal.jpg Mar 26, 2023
@olaarrh Hi there, to continue we would need you to submit a help ticket since we will be dealing with sensitive ac… https://t.co/sbSNJf6LC7

You Might also Like

Công cụ networkPhần mềm

Chia sẻ icon, visio stencil của các thiết bị network, server

12/09/2021
Công cụ networkNetwork

Cơ bản về PNETLAB

15/08/2021
Công cụ networkNetwork

So sánh các chương trình giả lập giả lập thiết bị mạng GNS3, EVE-NG và Packet Tracer

07/08/2021
Công cụ networkNetwork

Bắt gói tin các thiết bị giả lập trong EVE bằng Wireshark

20/07/2021
//

We influence 20 million users and is the number one business and technology news network on the planet

Quick Link

  • About
  • Contact
  • FAQs

Top Categories

  • Home
  • Network
  • System
  • Software
  • Security
  • Coding
  • Life
FantasistaFantasista
Follow US

© 2022 Foxiz News Network. Ruby Design Company. All Rights Reserved.

Join Us!

Subscribe to our newsletter and never miss our latest news, podcasts etc..

Zero spam, Unsubscribe at any time.

Removed from reading list

Undo
Welcome Back!

Sign in to your account

Register Lost your password?