Showing posts with label Tài liệu cisco. Show all posts
Showing posts with label Tài liệu cisco. Show all posts

Wednesday, December 5, 2018

1. Cấu hình các interface cho router .
Cấu hình R1 :

R1#conf t
R1(config)#int lo1
R1(config-if)#ip add 192.168.1.1 255.255.255.252
R1(config-if)#int l02
R1(config-if)#ip add 192.168.1.3 255.255.255.252
Bad mask /30 for address 192.168.1.3
R1(config-if)#ip add 192.168.2.1 255.255.255.252
R1(config-if)#int lo3
R1(config-if)#ip add 192.168.3.1 255.255.255.252
R1(config-if)#int lo4
R1(config-if)#ip add 192.168.4.1 255.255.255.252
R1(config-if)#int s2/0
R1(config-if)#no sh
R1(config-if)#ip add 1.1.1.1 255.255.255.248
R1(config-if)#int s2/1
R1(config-if)#no sh
R1(config-if)#ip add 2.2.2.2 255.255.255.248
Cấu hình trên R2 :
R2#conf t
R2(config)#int s2/0
R2(config-if)#no sh
R2(config-if)#ip add 1.1.1.2 255.255.255.248
R2(config-if)#int s2/1
R2(config-if)#no sh
R2(config-if)#ip add 3.3.3.2 255.255.255.248
Cấu hình trên R3 :
R3#conf t
R3(config)#int s2/0
R3(config-if)#no sh
R3(config-if)#ip add 3.3.3.1 255.255.255.248
R3(config-if)#
R3(config-if)#int s2/1
R3(config-if)#no sh
R3(config-if)#ip add 2.2.2.1 255.255.255.248 

R3(config-if)#int lo1
R3(config-if)#ip add 172.16.1.1 255.255.255.252
R3(config-if)#int lo2
R3(config-if)#ip add 172.16.2.1 255.255.255.252
R3(config-if)#int lo3
R3(config-if)#ip add 172.16.3.1 255.255.255.252
R3(config-if)#int lo4
R3(config-if)#ip add 172.16.4.1 255.255.255.252

2. Cấu hình và kiểm tra Route EIGRP:
- Cấu hình EIGRP
 
R1(config-if)#do show run | begin eigrp
router eigrp 10
 network 1.1.1.1 0.0.0.0
 network 2.2.2.2 0.0.0.0
 network 192.168.1.1 0.0.0.0
 network 192.168.2.1 0.0.0.0
 network 192.168.3.1 0.0.0.0
 network 192.168.4.1 0.0.0.0


R2(config-if)#do show run | begin eigrp
router eigrp 10
 network 1.1.1.2 0.0.0.0
 network 3.3.3.2 0.0.0.0


R3(config-router)#do show run | begin eigrp
router eigrp 10
 network 2.2.2.1 0.0.0.0
 network 3.3.3.1 0.0.0.0
 network 172.16.1.1 0.0.0.0
 network 172.16.2.1 0.0.0.0
 network 172.16.3.1 0.0.0.0
 network 172.16.4.1 0.0.0.0
!

- Kiểm tra EIGRP câu lệnh : Show ip eigrp neighbor và show ip route eigrp.

R1#show ip eigrp neighbor
EIGRP-IPv4 Neighbors for AS(10)
H   Address                 Interface              Hold Uptime   SRTT   RTO  Q  Seq
                                                   (sec)         (ms)       Cnt Num
1   2.2.2.1                 Se2/1                    11 00:10:07   15   100  0  14
0   1.1.1.2                 Se2/0                    13 00:15:53   13   100  0  31



R2#show ip eigrp neighbor
EIGRP-IPv4 Neighbors for AS(10)
H   Address                 Interface              Hold Uptime   SRTT   RTO  Q  Seq
                                                   (sec)         (ms)       Cnt Num
1   3.3.3.1                 Se2/1                    13 00:09:43   12   100  0  15
0   1.1.1.1                 Se2/0                    14 00:14:57   11   100  0  29

R3#show ip eigrp neighbor                                                   
EIGRP-IPv4 Neighbors for AS(10)
H   Address                 Interface              Hold Uptime   SRTT   RTO  Q  Seq
                                                   (sec)         (ms)       Cnt Num
1   2.2.2.2                 Se2/0                    12 00:11:11   11   100  0  30
0   3.3.3.2                 Se2/1                    12 00:11:43  430  2580  0  32

3. Cấu hình Summarization :
- Để cấu hình Auto Summarization ta vào EIGR và gõ câu lệnh :
R1(config-if)#router eigrp 10
R1(config-router)#auto-summary 

R2(config)#router eigrp 10
R2(config-router)#auto-summary

R3(config)#router eigrp 10
R3(config-router)#auto-summary
Sau khi cấu hình autosum kiểm tra lại route EIGRP
R1#show ip route eigrp

Gateway of last resort is not set

      1.0.0.0/8 is variably subnetted, 3 subnets, 3 masks
D        1.0.0.0/8 is a summary, 00:04:43, Null0
      2.0.0.0/8 is variably subnetted, 3 subnets, 3 masks
D        2.0.0.0/8 is a summary, 00:04:27, Null0
D     3.0.0.0/8 [90/2681856] via 2.2.2.1, 00:04:27, Serial2/1
                [90/2681856] via 1.1.1.2, 00:04:27, Serial2/0
D     172.16.0.0/16 [90/2297856] via 2.2.2.1, 00:04:27, Serial2/1
      192.168.1.0/24 is variably subnetted, 3 subnets, 3 masks
D        192.168.1.0/24 is a summary, 00:04:56, Null0
      192.168.2.0/24 is variably subnetted, 3 subnets, 3 masks
D        192.168.2.0/24 is a summary, 00:04:57, Null0
      192.168.3.0/24 is variably subnetted, 3 subnets, 3 masks
D        192.168.3.0/24 is a summary, 00:04:57, Null0
      192.168.4.0/24 is variably subnetted, 3 subnets, 3 masks
D        192.168.4.0/24 is a summary, 00:04:56, Null0

Tuesday, December 4, 2018



Cấu hình trên R1 : Đặt IP cho các cổng.
R1#conf t
R1(config)#int e0/0
R1(config-if)#no sh
R1(config-if)#ip add 192.168.1.1 255.255.255.0
R1(config-if)#int e0/1
R1(config-if)#no sh
R1(config-if)#ip add 192.168.2.1 255.255.255.0
R1(config-if)#int lo1  
R1(config-if)#ip add 1.1.1.1 255.255.255.255
Xem IP các cổng đã cấu hình :
R1(config-router)#do show ip int bri | inc up
Ethernet0/0                192.168.1.1     YES manual up                    up      
Ethernet0/1                192.168.2.1     YES manual up                    up      
Loopback1                  1.1.1.1         YES manual up                    up      
1. Cấu hình EIGRP vs AS = 10 !
Trên R1 :
R1(config-if)#router eigrp 10
R1(config-router)#net 1.1.1.1 0.0.0.0
R1(config-router)#net 192.168.1.1 0.0.0.0
R1(config-router)#net 192.168.2.1 0.0.0.0
Trên R2 :
R2#conf t
R2(config)#int e0/0
R2(config-if)#no sh
R2(config-if)#ip add 192.168.1.2 255.255.255.0
R2(config-if)#int e0/1
R2(config-if)#no sh
R2(config-if)#ip add 192.168.3.2 255.255.255.0
R2(config-router)#net 192.168.3.2 0.0.0.0
R2(config-router)#net 192.168.1.2 0.0.0.0
Trên R3 :
R3#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R3(config)#int e0/1
R3(config-if)#no sh
R3(config-if)#ip add 192.168.2.2 255.255.255.0
R3(config-if)#int e0/0
R3(config-if)#no sh
R3(config-if)#ip add 192.168.4.2 255.255.255.0
R3(config-if)#router eigrp 10
R3(config-router)#net 192.168.2.2 0.0.0.0
R3(config-router)#net 192.168.4.2 0.0.0.0
Trên R4 :
R4#conf t
R4(config)#int e0/1
R4(config-if)#no sh
R4(config-if)#ip add 192.168.4.1 255.255.255.0
R4(config-if)#int e0/0
R4(config-if)#no sh
R4(config-if)#ip add 192.168.3.1 255.255.255.0
R4(config)#router eigrp 10  
R4(config-router)#net 192.168.3.1 0.0.0.0
R4(config-router)#net 192.168.4.1 0.0.0.0
R4(config-router)#net 4.4.4.4 0.0.0.0
R4(config-router)#int l01
R4(config-if)#ip add 4.4.4.4 255.255.255.255 
Kiểm tra AS :
R4(config-router)#do show ip protocol

*** IP Routing is NSF aware ***

Routing Protocol is "eigrp 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP-IPv4 Protocol for AS(10)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 192.168.4.1
...............................................
2. Cấu hình trên tất cả các Router chỉ tính metric bằng Delay:
Như chúng ta đã biết công thức tính metric của EIGRP là :
Để cho các Router chỉ tính metric bằng Delay thì k1,k2,k4,k5 = 0.
Mặc định : Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
Cho nên chúng ta chỉ cần cấu hình K1 = 0 là thỏa mãn yêu cầu bài lab.

 - Cấu hình K1 = 0 trên cả 3 Router :
R1(config-if)#router eigrp 10
R1(config-router)#metric weights ?
  <0-8>  Type (Only TOS 0 supported)
R1(config-router)#metric weights 0 0 0 1 0 0
=========================================== 
R2(config-router)#router eigrp 10
R2(config-router)#metric weights 0 0 0 1 0 0
=========================================== 
R3(config-router)#router eigrp 10
R3(config-router)#metric weights 0 0 0 1 0 0
=========================================== 
R4(config)#router eigrp 10
R4(config-router)#metric weights 0 0 0 1 0 0

3. Cấu hình cân bằng tải trên R1!


R1(config)#router eigrp 10
R1(config-router)#vari
R1(config-router)#variance ?
  <1-128>  Metric variance multiplier
      
R1(config-router)#variance 2
Để traffice đi qua R3 gấp đôi R2 thì đường đi qua R3 phải tốt gấp đôi R2, mà metric chỉ dựa vào Delay nên ta chỉ cần cấu hình chỉnh giá trị Delay trên interface e0/0 của R1 :

R1(config-if)#int e0/0
R1(config-if)#delay ?  
  <1-16777215>  Throughput delay (tens of microseconds) 
R1(config-if)#delay 800 
R1(config-if)#end
R1#show int e0/0 

Ethernet0/0 is up, line protocol is up
  Hardware is AmdP2, address is aabb.cc00.0100 (bia aabb.cc00.0100)
  Internet address is 192.168.1.1/24
  MTU 1500 bytes, BW 10000 Kbit/sec, DLY 8000 usec,
     reliability 255/255, txload 1/255, rxload 1/255
  ..........................................
 4. Kiểm tra :
R1#show ip route 4.4.4.4

Routing entry for 4.4.4.4/32
  Known via "eigrp 10", distance 90, metric 179200, type internal
  Redistributing via eigrp 10
  Last update from 192.168.1.2 on Ethernet0/0, 00:00:36 ago
  Routing Descriptor Blocks:
  * 192.168.2.2, from 192.168.2.2, 00:00:36 ago, via Ethernet0/1
      Route metric is 179200, traffic share count is 2
      Total delay is 7000 microseconds, minimum bandwidth is 10000 Kbit
      Reliability 255/255, minimum MTU 1500 bytes
      Loading 1/255, Hops 2
    192.168.1.2, from 192.168.1.2, 00:00:36 ago, via Ethernet0/0
      Route metric is 358400, traffic share count is 1
      Total delay is 14000 microseconds, minimum bandwidth is 10000 Kbit
      Reliability 255/255, minimum MTU 1500 bytes
      Loading 1/255, Hops 2

Download Lab : Google Drive 

Tài liệu học CCNP Full




Wednesday, November 7, 2018

MỤC LỤCCHƯƠNG I: TỔNG QUAN VỀ VOIP
I. TỔNG QUAN VỀ VOIP.

1. GIỚI THIỆU CHUNG VỀ VOIP .......................................................................................................
1.1. Ưu điểm .................................................................................................................................. 6
1.2. Nhược điểm............................................................................................................................ 7
2. CÁC KIỂU KẾT NỐI .......................................................................................................................... 8
2.1. Computer to Computer .......................................................................................................... 8
2.2. Computer to Phone ................................................................................................................ 9
2.3. Phone to Phone ................................................................................................................ ….10
3. CÁC THÀNH PHẦN TRONG MẠNG VOIP………………………………………………………………………………..….11
II. CÁCH THỨC HOẠT ĐỘNG CỦA VOIP............................................................................................ 12
1. VOIP HOẠT ĐỘNG NHƯ THẾ NÀO?........................................................................................... 12
1.1. Quá trình lấy mẫu (Sampling) ............................................................................................... 14
1.2. Quá trình lượng tử hóa (Quantization) ................................................................................ 14
1.3. Mã hóa (Encoding)................................................................................................................ 14
1.4. Nén giọng nói (Voice Compression)………………..……………………………….……………..………………..14
2. CÁC NHÂN TỐ ẢNH HƯỞNG…………………………………………………………………………………………………15
2.1. Trễ (Delay)………………………………………………….…………………………………………………………………..15
2.2. Sự biến thiên độ trễ (Jitter )…………………………………………………………………….………………………15
2.3. Mất gói…………………………………………………………………………………………………………….……………..15
III. CÁC GIAO THỨC TRONG VOIP…………………………………………………………………………………………………16
1. GIAO THỨC H.323……………………………………………………………………………………………………………..…16
1.1. Giới thiệu.............................................................................................................................. 16
1.2.Các giao thức của H.323 ....................................................................................................... 16
1.3.Các thành phần cơ bản của H.323 ....................................................................................... 16
1.4.Phương thức hoạt động của H.323 ...................................................................................... 17
2. GIAO THỨC SIP.......................................................................................................................... 21
2.1.Giới thiệu .............................................................................................................................. 21
2.2.Các thành phần trong SIP...................................................................................................... 21
2.3.Các bản tin trong SIP............................................................................................................. 23
2.4.Phương thức hoạt động........................................................................................................ 24

GVHD: Nguyễn Minh Hải SVTH: Mai Thanh Sơn4 THIẾT LẬP TỔNG ĐÀI VOIP2.5.Tính năng của SIP.................................................................................................................. 27
2.6. Các giao thức của SIP……………………………………………..……………………………………………..………..27
IV. TÍNH BẢO MẬT VÀ HƯỚNG KHẮC PHỤC………………………………………………………….……………………..28
1. TÍNH BẢO MẬT TRONG VOIP ..............................................................................................…….28
2. HƯỚNG KHẮC PHỤC VÀ BIỆN PHÁP GIẢI QUYẾT ..................................................................... 29
CHƯƠNG II.………………………………………..……..ASTERISK…………………………………………………………………30
I. GIỚI THIỆU VỀ ASTERISK
……………………………………………………………………………………………………..…..30II. CÀI ĐẶT ASTERISKNOW 3.0 VÀ CẤU HÌNH CÁC TÍNH NĂNG CĂN BẢN……………………………….…..31
1. CÀI ĐẶT…………………………………………………………………………………………………………………………………31
2. CẤU HÌNH……………………………………………………………………………………………………………………………..37
2.1. Tạo số điện thoại (user)………………………………………………………………………………………………….38
2.2. Đăng ký sử dụng và thực hiện cuộc gọi…………………………………………………………………………..40
2.3. Chức năng nhạc chờ……………………………..……………………………………………………………..…………44
2.4. Thiết lập tổng đài IVR…………………………………………………………………………….…….………….….….47
2.5. Kết nối hai tổng đài………………………………………………………………………………………………..……...49
CHƯƠNG III………………………………………………………TỔNG KẾT…………………………………………………………….66

Link Download : Google Drive 

 

Friday, March 9, 2018

Đây là tuyển tập những Ebook tâm đắc nhất về Kinh Doanh, nếu bạn nào chưa có nhu cầu để mua sách thì có thể tải về đọc trên điện thoại hay máy tính nhé.


Link Download : Google Driver

Tuesday, March 6, 2018

Trọn bộ CCNP FULL bao gồm : CCNP ROUTE
                                                     CCNP SWITCH
                                                     CCNP TSHOOT


Link : Google Driver

Computer Networking A Top-Down Approach 6th Edition:

 Link Download :  Google Drive

 

Tài liệu Chuyền Đề FireWall ASA:

 
Link : Google Driver

CCNP All-in-1 Video Boot Camp With Chris Bryant :

Pass giải nén : 

http://nhasachtinhoc.blogspot.com


Link Part 1:  Google Drive

Link Part 2 : Google Drive 

Link Part 3 : Google Drive 

Link Part 4 : Google Drive 

Saturday, March 3, 2018

1. Tài liệu đầy đủ của VNPRO :

Linkdown : Google Driver


3. Ebook 13 bài Lab CCNA của VnPro 2015


Link Down : Google Driver

Bộ tài liệu đầy đủ mới nhất CEH 9

Link : Google Drive

Bộ Tool : Google Drive
Tài liệu Security+ Certification : Google Drive

Tài liệu CEH V10 : Google Drive

Friday, March 2, 2018

1. Toàn tập video quản trị Linux

Link Download :  Down load Here

Linux Toàn Tập


Link download :Google Driver

2. DOCUMENT BACKUP AND DR :
Link download : Google Driver

Xem nhiều nhất