Results 1 to 6 of 6

Thread: Lab 3-12: Redistribute giữa IGRP và EIGRP

  1. #1

    Default Lab 3-12: Redistribute giữa IGRP và EIGRP

    Lab 3-12: Redistribute giữa IGRP và EIGRP




    Mô tả

    –Mạng A sử dụng giao thức định tuyến EIGRP trên RouterA, RouterB và RouterC. RouterB đóng vai trò là DCE cung cấp xung clock hoạt động cho RouterA và RouterC.

    –Mạng B sử dụng giao thức định tuyến IGRP trên RouterC và RouterD. RouterC đóng vai trò là DCE cung cấp xung clock hoạt động cho RouterD.

    –Bài lab này sẽ mô tả cách thức redistribution giữa IGRP và EIGRP.

    Cấu hình

    RouterA
    !
    hostname RouterA
    !
    interface Loopback0
    ip address 192.1.1.1 255.255.255.0
    !
    interface Serial0
    ip address 192.1.1.1 255.255.255.0
    !
    router eigrp 100
    network 192.1.1.0
    network 1.0.0.0
    !
    end

    RouterB
    !
    hostname RouterB
    !
    interface Serial0
    ip address 192.1.1.2 255.255.255.0
    clock rate 64000  Cung cấp xung clock hoạt động cho RouterA
    !
    interface Serial1
    ip address 194.1.1.2 255.255.255.0
    clock rate 64000  Cung cấp xung clock hoạt động cho RouterC
    !
    router eigrp 100
    network 192.1.1.0
    network 194.1.1.0
    !
    end

    RouterC
    !
    hostname RouterC
    !
    interface Serial0
    ip address 194.1.1.1 255.255.255.0
    !
    interface Serial1
    ip address 195.1.1.1 255.255.255.0
    clock rate 64000  Cung cấp hoạt động cho RouterD
    !
    router eirgp 100
    network 194.1.1.0
    !
    router igrp 200
    network 195.1.1.0
    !
    end

    RouterD
    !
    hostname RouterD
    !
    interface Loopback0
    ip address 4.4.4.4 255.255.255.0
    !
    interface Serial0
    ip address 195.1.1.2 255.255.255.0
    !
    router igrp 200
    network 195.1.1.0
    network 4.0.0.0
    !
    end

    Thực hiện

    1. Cấu hình trên RouterA
    Router> en
    Router# conf t
    Router(config)# hostname RouterA
    RouterA (config)# int lo0  Định nghĩa interface ảo để làm điểm kiểm tra
    RouterA (config-if)# ip addr 1.1.1.1 255.255.255.0
    RouterA (config-if)# int s0
    RouterA (config-if)# ip addr 192.1.1.1 255.255.255.0
    RouterA (config-if)# no shut
    RouterA (config-if)#exit

    RouterA (config)# router eigrp 100  Cấu hình định tuyến eigrp với autonomous number là 100
    RouterA (config-router)# network 192.1.1.0
    RouterA (config-router)# network 1.0.0.0

    RouterA (config-router)# end
    RouterA# copy run start
    RouterA#


    2. Cấu hình trên RouterB

    Router(config)# hostname RouterB
    RouterB (config)# int s0
    RouterB (config-if)# ip addr 192.1.1.2 255.255.255.0
    RouterB (config-if)# clock rate 64000  Cung cấp xung clock hoạt động cho RouterA
    RouterB (config-if)# no shut
    RouterB (config-if)# int s1
    RouterB (config-if)# ip addr 194.1.1.2 255.255.255.0
    RouterB (config-if)# clock rate 64000  Cung cấp xung clock hoạt động cho RouterC
    RouterB (config-if)# no shut
    RouterB (config-if)#exit

    RouterB (config)# router eigrp 100  Cấu hình định tuyến eigrp với autonomous number là 100
    RouterB (config-router)# network 192.1.1.0
    RouterB (config-router)# network 194.1.1.0
    RouterB (config-router)# end
    RouterB# copy run start
    RouterB#

    3. Cấu hình trên RouterC


    Router> en
    Router# conf t
    Router(config)# hostname RouterC
    RouterC (config)# int s0
    RouterC (config-if)# ip addr 194.1.1.1 255.255.255.0
    RouterC (config-if)# no shut
    RouterC (config-if)# int s1
    RouterC (config-if)# ip addr 195.1.1.1 255.255.255.0
    RouterC (config-if)# clock rate 64000


    + Cung cấp xung clock hoạt động cho RouterD
    RouterC (config-if)# no shut
    RouterC (config-if)#exit
    RouterC (config)# router eigrp 100  Cấu hình định tuyến eigrp với autonomous number là 100
    RouterC (config-router)# network 194.1.1.0
    RouterC (config-router)# router igrp 200  Cấu hình định tuyến igrp với autonomous number là 200
    RouterC (config-router)# network 195.1.1.0
    RouterC (config-router)# end
    RouterC# copy run start
    RouterC#


    4. Cấu hình trên RouterD


    Router> en
    Router# conf t
    Router(config)# hostname RouterD
    RouterD(config)# int lo0 ← Định nghĩa interface ảo để làm điểm kiểm tra
    RouterD(config-if)# ip addr 4.4.4.4 255.255.255.0
    RouterD(config-if)# int s0
    RouterD(config-if)# ip addr 195.1.1.2 255.255.255.0
    RouterD(config-if)# no shut
    RouterD(config-if)#exit
    RouterD(config)# router igrp 200  Cấu hình định tuyến igrp với autonomous number là 200
    RouterD(config-router)# network 195.1.1.0
    RouterD(config-router)# network 4.0.0.0
    RouterD(config-router)# end
    RouterD# copy run start
    RouterD#


    Kiểm tra

    1. Xem bảng định tuyến eigrp trên RouterC bằng lệnh show ip route.

    RouterC# show ip route
    D 1.0.0.0/8 [90/2809856] via 194.1.1.2, 00:00:55, Serial0
    I 4.0.0.0/8 [100/8976] via 195.1.1.2, 00:00:10, Serial1
    D 192.1.1.0/24 [90/2681856] via 194.1.1.2, 00:00:55, Serial0
    C 194.1.1.0/24 is directly connected, Serial0
    C 195.1.1.0/24 is directly connected, Serial1
    RouterC#


    Chú ý rằng RouterC học các route của RouterA qua giao thức định tuyến EIGRP.

    2. Xem bảng định tuyến eigrp trên RouterB bằng lệnh show ip route.

    RouterB# show ip route
    D 1.0.0.0/8 [90/2297856] via 192.1.1.1, 00:01:50, Serial0
    C 192.1.1.0/24 is directly connected, Serial0
    C 194.1.1.0/24 is directly connected, Serial1
    RouterB#

    Chú ý rằng RouterB không học các route xuất phát từ NetworkB.

    3. Xem bảng định tuyến eigrp trên RouterD bằng lệnh show ip route.

    RouterD# show ip route
    4.0.0.0/24 is subnetted, 1 subnets
    C 4.4.4.0 is directly connected, Loopback0
    C 195.1.1.0/24 is directly connected, Serial0
    RouterD#


    –Chú ý rằng RouterB không học các route xuất phát từ NetworkA. Tại sao IGRP và EIGRP không thực hiện automatic redistribution? Nguyên do là IGRP và EIGRP có số AS number khác nhau, tính năng automatic redistribution chỉ thực hiện khi IGRP và EIGRP có cùng số AS number.

    –EIGRP và IGRP sử dụng metric có cấu trúc giống nhau. Do đó nếu các router chạy IGRP và các router khác chạy EIGRP và cả hai đều có cùng số autonomous system thì thông tin định tuyến sẽ tự động chia sẻ giữa hai hệ thống.

    –EIGRP dùng 32 bit để lưu trữ metric và IGRP dùng 24 bit để lưu trữ metric. Khi đó các tuyến đường EIRGP được chia cho 256 để chuyển về cấu trúc 24 bit của IGRP và các tuyến đường IGRP được nhân cho 256 để chuyển về cấu trúc 32 bit của EIGRP.

    4. Do đó cần thay đổi số AS number của IGRP trên RouterC và RouterD là 100.

    RouterC(config)# no router igrp 200
    RouterC(config)# router igrp 100
    RouterC(config-router)# network 195.1.1.0

    RouterD(config)# no router igrp 200
    RouterD(config)# router igrp 100
    RouterD(config-router)# network 195.1.1.0
    RouterD(config-router)# network 4.0.0.0


    5. Kiểm tra lại bảng định tuyến trên RouterD bằng lệnh show ip route

    RouterD# show ip route
    I 1.0.0.0/8 [100/12976] via 195.1.1.1, 00:00:05, Serial0
    4.0.0.0/24 is subnetted, 1 subnets
    C 4.4.4.0 is directly connected, Loopback0
    I 192.1.1.0/24 [100/12476] via 195.1.1.1, 00:00:05, Serial0
    I 194.1.1.0/24 [100/12476] via 195.1.1.1, 00:00:05, Serial0
    RouterD#

    Ta thấy RouterD đã học các route xuất phát từ NetworkA.

    6. Nếu không thay đổi số AS number của IGRP thì có thể thực hiện redistribution từ EIGRP sang IGRP và từ IGRP qua EIGRP trên RouterC.

    RouterC#config t
    Enter configuration commands, one per line. End with CNTL/Z.
    RouterC(config)#router igrp 200
    RouterC(config-router)#redistribute eigrp 100 metric 2000 200 255 1 1500
    RouterC(config-router)#exit
    RouterC(config)#router eigrp 100
    RouterC(config-router)#redistribute igrp 200 metric 2000 200 255 1 1500
    RouterC(config-router)#


    7. Cuối cùng kiểm tra lại bảng định tuyến để xem sự thay đổi route trên mỗi router.
    Viet Professionals Co. Ltd. VnPro ®
    ---------------------------------------
    149/1D Ung Văn Khiêm P25 Q.Bình thạnh TPHCM
    Tel: (08) 35124257 (7 lines)
    Fax: (08) 5124314
    Support forum: http://vnpro.org
    LiveChat : http://www.vnpro.vn/support
    Blog VnPro : http://vnpro.org/blog
    Forum Wifi : http://wifipro.org

  2. Post Redistribution EIGRP-IGRP

    Quote Originally Posted by admin View Post
    Lab 3-12: Redistribute giữa IGRP và EIGRP




    Mô tả

    –Mạng A sử dụng giao thức định tuyến EIGRP trên RouterA, RouterB và RouterC. RouterB đóng vai trò là DCE cung cấp xung clock hoạt động cho RouterA và RouterC.

    –Mạng B sử dụng giao thức định tuyến IGRP trên RouterC và RouterD. RouterC đóng vai trò là DCE cung cấp xung clock hoạt động cho RouterD.

    –Bài lab này sẽ mô tả cách thức redistribution giữa IGRP và EIGRP.

    Cấu hình

    RouterA
    !
    hostname RouterA
    !
    interface Loopback0
    ip address 192.1.1.1 255.255.255.0
    !
    interface Serial0
    ip address 192.1.1.1 255.255.255.0
    !
    router eigrp 100
    network 192.1.1.0
    network 1.0.0.0
    !
    end

    RouterB
    !
    hostname RouterB
    !
    interface Serial0
    ip address 192.1.1.2 255.255.255.0
    clock rate 64000  Cung cấp xung clock hoạt động cho RouterA
    !
    interface Serial1
    ip address 194.1.1.2 255.255.255.0
    clock rate 64000  Cung cấp xung clock hoạt động cho RouterC
    !
    router eigrp 100
    network 192.1.1.0
    network 194.1.1.0
    !
    end

    RouterC
    !
    hostname RouterC
    !
    interface Serial0
    ip address 194.1.1.1 255.255.255.0
    !
    interface Serial1
    ip address 195.1.1.1 255.255.255.0
    clock rate 64000  Cung cấp hoạt động cho RouterD
    !
    router eirgp 100
    network 194.1.1.0
    !
    router igrp 200
    network 195.1.1.0
    !
    end

    RouterD
    !
    hostname RouterD
    !
    interface Loopback0
    ip address 4.4.4.4 255.255.255.0
    !
    interface Serial0
    ip address 195.1.1.2 255.255.255.0
    !
    router igrp 200
    network 195.1.1.0
    network 4.0.0.0
    !
    end

    Thực hiện

    1. Cấu hình trên RouterA
    Router> en
    Router# conf t
    Router(config)# hostname RouterA
    RouterA (config)# int lo0  Định nghĩa interface ảo để làm điểm kiểm tra
    RouterA (config-if)# ip addr 1.1.1.1 255.255.255.0
    RouterA (config-if)# int s0
    RouterA (config-if)# ip addr 192.1.1.1 255.255.255.0
    RouterA (config-if)# no shut
    RouterA (config-if)#exit

    RouterA (config)# router eigrp 100  Cấu hình định tuyến eigrp với autonomous number là 100
    RouterA (config-router)# network 192.1.1.0
    RouterA (config-router)# network 1.0.0.0

    RouterA (config-router)# end
    RouterA# copy run start
    RouterA#

    2. Cấu hình trên RouterB

    Router(config)# hostname RouterB
    RouterB (config)# int s0
    RouterB (config-if)# ip addr 192.1.1.2 255.255.255.0
    RouterB (config-if)# clock rate 64000  Cung cấp xung clock hoạt động cho RouterA
    RouterB (config-if)# no shut
    RouterB (config-if)# int s1
    RouterB (config-if)# ip addr 194.1.1.2 255.255.255.0
    RouterB (config-if)# clock rate 64000  Cung cấp xung clock hoạt động cho RouterC
    RouterB (config-if)# no shut
    RouterB (config-if)#exit

    RouterB (config)# router eigrp 100  Cấu hình định tuyến eigrp với autonomous number là 100
    RouterB (config-router)# network 192.1.1.0
    RouterB (config-router)# network 194.1.1.0
    RouterB (config-router)# end
    RouterB# copy run start
    RouterB#

    3. Cấu hình trên RouterC

    Router> en
    Router# conf t
    Router(config)# hostname RouterC
    RouterC (config)# int s0
    RouterC (config-if)# ip addr 194.1.1.1 255.255.255.0
    RouterC (config-if)# no shut
    RouterC (config-if)# int s1
    RouterC (config-if)# ip addr 195.1.1.1 255.255.255.0
    RouterC (config-if)# clock rate 64000

    + Cung cấp xung clock hoạt động cho RouterD
    RouterC (config-if)# no shut
    RouterC (config-if)#exit
    RouterC (config)# router eigrp 100  Cấu hình định tuyến eigrp với autonomous number là 100
    RouterC (config-router)# network 194.1.1.0
    RouterC (config-router)# router igrp 200  Cấu hình định tuyến igrp với autonomous number là 200
    RouterC (config-router)# network 195.1.1.0
    RouterC (config-router)# end
    RouterC# copy run start
    RouterC#

    4. Cấu hình trên RouterD

    Router> en
    Router# conf t
    Router(config)# hostname RouterD
    RouterD(config)# int lo0 ← Định nghĩa interface ảo để làm điểm kiểm tra
    RouterD(config-if)# ip addr 4.4.4.4 255.255.255.0
    RouterD(config-if)# int s0
    RouterD(config-if)# ip addr 195.1.1.2 255.255.255.0
    RouterD(config-if)# no shut
    RouterD(config-if)#exit
    RouterD(config)# router igrp 200  Cấu hình định tuyến igrp với autonomous number là 200
    RouterD(config-router)# network 195.1.1.0
    RouterD(config-router)# network 4.0.0.0
    RouterD(config-router)# end
    RouterD# copy run start
    RouterD#

    Kiểm tra

    1. Xem bảng định tuyến eigrp trên RouterC bằng lệnh show ip route.

    RouterC# show ip route
    D 1.0.0.0/8 [90/2809856] via 194.1.1.2, 00:00:55, Serial0
    I 4.0.0.0/8 [100/8976] via 195.1.1.2, 00:00:10, Serial1
    D 192.1.1.0/24 [90/2681856] via 194.1.1.2, 00:00:55, Serial0
    C 194.1.1.0/24 is directly connected, Serial0
    C 195.1.1.0/24 is directly connected, Serial1
    RouterC#

    Chú ý rằng RouterC học các route của RouterA qua giao thức định tuyến EIGRP.

    2. Xem bảng định tuyến eigrp trên RouterB bằng lệnh show ip route.

    RouterB# show ip route
    D 1.0.0.0/8 [90/2297856] via 192.1.1.1, 00:01:50, Serial0
    C 192.1.1.0/24 is directly connected, Serial0
    C 194.1.1.0/24 is directly connected, Serial1
    RouterB#

    Chú ý rằng RouterB không học các route xuất phát từ NetworkB.

    3. Xem bảng định tuyến eigrp trên RouterD bằng lệnh show ip route.

    RouterD# show ip route
    4.0.0.0/24 is subnetted, 1 subnets
    C 4.4.4.0 is directly connected, Loopback0
    C 195.1.1.0/24 is directly connected, Serial0
    RouterD#

    –Chú ý rằng RouterB không học các route xuất phát từ NetworkA. Tại sao IGRP và EIGRP không thực hiện automatic redistribution? Nguyên do là IGRP và EIGRP có số AS number khác nhau, tính năng automatic redistribution chỉ thực hiện khi IGRP và EIGRP có cùng số AS number.

    –EIGRP và IGRP sử dụng metric có cấu trúc giống nhau. Do đó nếu các router chạy IGRP và các router khác chạy EIGRP và cả hai đều có cùng số autonomous system thì thông tin định tuyến sẽ tự động chia sẻ giữa hai hệ thống.

    –EIGRP dùng 32 bit để lưu trữ metric và IGRP dùng 24 bit để lưu trữ metric. Khi đó các tuyến đường EIRGP được chia cho 256 để chuyển về cấu trúc 24 bit của IGRP và các tuyến đường IGRP được nhân cho 256 để chuyển về cấu trúc 32 bit của EIGRP.

    4. Do đó cần thay đổi số AS number của IGRP trên RouterC và RouterD là 100.

    RouterC(config)# no router igrp 200
    RouterC(config)# router igrp 100
    RouterC(config-router)# network 195.1.1.0

    RouterD(config)# no router igrp 200
    RouterD(config)# router igrp 100
    RouterD(config-router)# network 195.1.1.0
    RouterD(config-router)# network 4.0.0.0

    5. Kiểm tra lại bảng định tuyến trên RouterD bằng lệnh show ip route

    RouterD# show ip route
    I 1.0.0.0/8 [100/12976] via 195.1.1.1, 00:00:05, Serial0
    4.0.0.0/24 is subnetted, 1 subnets
    C 4.4.4.0 is directly connected, Loopback0
    I 192.1.1.0/24 [100/12476] via 195.1.1.1, 00:00:05, Serial0
    I 194.1.1.0/24 [100/12476] via 195.1.1.1, 00:00:05, Serial0
    RouterD#

    Ta thấy RouterD đã học các route xuất phát từ NetworkA.

    6. Nếu không thay đổi số AS number của IGRP thì có thể thực hiện redistribution từ EIGRP sang IGRP và từ IGRP qua EIGRP trên RouterC.

    RouterC#config t
    Enter configuration commands, one per line. End with CNTL/Z.
    RouterC(config)#router igrp 200
    RouterC(config-router)#redistribute eigrp 100 metric 2000 200 255 1 1500
    RouterC(config-router)#exit
    RouterC(config)#router eigrp 100
    RouterC(config-router)#redistribute igrp 200 metric 2000 200 255 1 1500
    RouterC(config-router)#

    7. Cuối cùng kiểm tra lại bảng định tuyến để xem sự thay đổi route trên mỗi router.

    Anh Admin và mọi người chỉ giúp mình nhe!
    Sau khi thay đổi AS tại Router C va D mà ping (check) thì ko thông (thử tại Router A-->ping đến các interface)---->cụ thể:
    _Tại Router C:
    no router igrp 200
    router igrp 100
    net 195.1.1.0
    _Tại Router D:
    no router igrp 200
    router igrp 100
    net 195.1.1.0
    net 4.0.0.0
    Help me!
    Thanks for view!

  3. #3

    Default

    6. Nếu không thay đổi số AS number của IGRP thì có thể thực hiện redistribution từ EIGRP sang IGRP và từ IGRP qua EIGRP trên RouterC.

    RouterC#config t
    Enter configuration commands, one per line. End with CNTL/Z.
    RouterC(config)#router igrp 200
    RouterC(config-router)#redistribute eigrp 100 metric 2000 200 255 1 1500[/COLOR]
    RouterC(config-router)#exit
    RouterC(config)#router eigrp 100
    RouterC(config-router)#redistribute igrp 200 metric 2000 200 255 1 1500
    RouterC(config-router)#

    cho mình hỏi những giá trị ở trên có ý nghĩa gì vậy????????

  4. #4

    Default

    Các giá trị đó là

    BW: băng thông của đường truyền
    DLY: Độ trễ delay
    LOAD: lưu lượng của đường truyền
    MTU: Kích thước lớn nhất của một gói tin mà đường truyền chấp nhận.
    Đặng Quang Minh, CCIE#11897 CCSI#31417

    Email : dangquangminh@vnpro.org

    -----------------------------------------------------------------------------------------------
    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

  5. #5

    Talking Em nghe mà chẳng hiểu gì cả ^!^

    Em đọc xong mà như tẩu hỏa nhập ma đó . Hôm nay em mới ngồi đọc lại mấy bài hôm trước thầy em dạy mà thấy mơ hồ quá
    Toàn pro thấy mình gà quá . Phải cố gắng nào , S2 nghe có vẻ khó quá , thi không qua thì chết em

  6. #6
    Join Date
    Aug 2008
    Location
    VnPro
    Posts
    1,155

    Default

    Bạn thắc mắc chỗ nào trong cấu hình? Nếu kiến thức bạn còn mơ hồ thì bạn nên hỏi trực tiếp các thầy trong trường. Chúc bạn học tốt.
    Phan Hoàng Gia Liêm - Instructor
    Email : gialiem@vnpro.org
    Yahoo : gialiem_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

Similar Threads

  1. Hỏi về lab OSPF nssa
    By Im_Sam in forum ROUTE / BSCI
    Replies: 6
    Last Post: 09-08-2008, 09:21 AM
  2. Routing between RIPv1 & RIPv2
    By themask in forum ROUTE / BSCI
    Replies: 5
    Last Post: 10-03-2004, 02:25 PM
  3. Redistribute IGRP OSPF
    By R3 in forum CCNP LabPro - CCNP Routing
    Replies: 0
    Last Post: 07-01-2004, 12:56 PM
  4. Redistribute IGRP - RIP
    By R3 in forum ICND 2 - Routing & Access-list
    Replies: 3
    Last Post: 29-10-2003, 01:41 PM
  5. Replies: 4
    Last Post: 05-07-2003, 09:26 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
 
   TRUNG TÂM TIN HỌC VNPRO
149/1D Ung Văn Khiêm, P. 25, Q.Bình Thạnh
Phone:(08) 35124257
Fax: (08) 35124314
Email: vnpro@vnpro.org
Powered by vBulletin Version 4.2.1
Copyright 2000 - 2011, Jelsoft Enterprises Ltd.
License owned by : VietProfessional Co.,Ltd
 

Ve may bay |Ve may bay gia re |Ve may bay di Ha Noi |Ve may bay di Nha Trang |Ve may bay di Da Nang |Ve may bay di Da Lat |Ve may bay di Vinh |Ve may bay di Hue |Ve may bay di Con Dao |Ve may bay di TP HCM |Air Asia |Tiger Airways |Vietnam Airlines |Lion Air |Aeroflot |Jetstar |Vietjet Air |Asiana |Delta Airlines |Singapore Airlines |Thai Airways |quantas |Turkish Airlines |China Southern Airlines |Air China |Ve may bay gia re |Ve may bay di Anh |Ve may bay di Canada |Ve may bay di Ha Lan |Ve may bay di Han Quoc |Ve may bay di Hong Kong |Ve may bay di Y |Ve may bay di Italia |Ve may bay di Malaysia |Ve may bay di Nga |Ve may bay di Phap |Ve may bay di Philippines |Ve may bay di Singapore |Ve may bay di Thai Lan |Ve may bay di Trung Quoc |Ve may bay di Uc |Ve may bay di Ukraina |Ve may bay di Duc |Ve may bay di My |Ve may bay di My