EIGRP POINT-TO-POINT OVER FRAME-RELAY

tháng 6 04, 2019
Frame Relay Point to Point with EIGRP

Frame-relay Point-to-point 
Chúng tôi đang sử dụng cùng một cấu trúc liên kết để chứng minh EIGRP điểm-điểm qua chuyển tiếp khung với một điểm khác biệt.Liên kết điểm-điểm yêu cầu Mạng con IP trên PVC: 
Hub and Spoke1: 192.168.12.0/24 
Hub and Spoke2: 192.168.13.0/24
cấu hình:
Trên router R1:
R1(config)#interface serial 3/0
R1(config-if)#encapsulation frame-relay
!
R1(config)#interface serial 3/0.1 point-to-point
R1(config-subif)#ip address 192.168.12.1 255.255.255.0
R1(config-subif)#frame-relay interface-dlci 101
!
R1(config)#interface serial 3/0.2 point-to-point
R1(config-subif)#ip address 192.168.13.1 255.255.255.0
R1(config-subif)#frame-relay interface-dlci 102
!
R1(config)#router eigrp 1
R1(config-router)#network 192.168.12.1 0.0.0.0
R1(config-router)#network 192.168.13.1 0.0.0.0
R1(config-router)#no auto-summary
R1(config-router)#end
Trên router R2:
R2(config)#interface serial 3/0
R2(config-if)#encapsulation frame-relay
!
R2(config)#interface serial 3/0.1 point-to-point
R2(config-subif)#ip address 192.168.12.2 255.255.255.0
R2(config-subif)#frame-relay interface-dlci 201
!
R1(config)#router eigrp 1
R1(config-router)#network 192.168.12.2 0.0.0.0
R1(config-router)#no auto-summary
R1(config-router)#end
Trên router R3:
R3(config)#interface serial 3/0
R3(config-if)#encapsulation frame-relay
!
R3(config)#interface serial 3/0.1 point-to-point
R3(config-subif)#ip address 192.168.13.3 255.255.255.0
R3(config-subif)#frame-relay interface-dlci 301
!
R3(config)#router eigrp 1
R3(config-router)#network 192.168.13.3 0.0.0.0
R3(config-router)#no auto-summary
R3(config-router)#end

Cấu hình quay số PPPoE trên router Cisco

Cấu hình quay số PPPoE trên router Cisco

tháng 5 26, 2019

 Mô hình FTTH






Mô hình : ISP - Router0 - Switch - user .

ISP sẽ kéo 1 đường FTTH tới chỗ bạn, tùy từng gói cước và nhu cầu mà được trang bị modem của nhà mạng hay là converter. Ở đây mình gắn vào cổng F0/0 của router để kết nối tới ISP (WAN), cổng F0/1 sẽ gắn vào switch ( LAN)

LAN LOCAL : 192.168.10.0/24  .
Cấu hình trên Router0 :
B1: Chọn Interface kết nối PPPoE
Router0 (config-if)# interface FastEthernet0/0
Router0 (config-if)pppoe enable // bật PPPoE trên interface
Router0 (config-if)pppoe-client dial-pool-number 1 //tạo pool quay số số 1
Router0 (config-if)no shutdown 

B2: Cấu hình interface quay số:
interface Dialer1 
ip address negotiated  //Tự động lấy IP address từ ISP
ip mtu 1492   // mỗi nhà mạng có 1 MTU , có thể đổi
ip nat outside // do đấu với ISP nên sẽ là cổng NAT outside
encapsulation ppp //phương thức đóng gói packet

ip tcp adjust-mss 1452 //chống phân mảnh gói tin 
dialer pool 1 //tạo pool để quay số, để add vào interface
ppp authentication pap callin //tự thiết lập xác thực
ppp pap sent-username abc password 0 xyz   : điền account FTTH ( ví dụ abc ) và passwork ( ví dụ xyz)
ppp ipcp dns request // lấy DNS từ ISP
no shutdown 

B3: Tạo default route ra internet
ip route 0.0.0.0 0.0.0.0 Dialer1
B4: Nat overload trên cổng Dialer1 để mạng LAN ra internet
ip nat inside source list 100 interface Dialer0 overload

Cấu hình cổng inside ( LAN LOCAL)
interface f0/1
ip address 192.168.10.1 255.255.255.0
ip nat inside
no shutdown

Sau khi hoàn thành bạn hãy check kết quả nhé!!