• Câu lệnh trên Router 1
• Router>enable
• Router#config terminal
• Enter configuration commands, one per line. End with CNTL/Z. • Router(config)#interface s0
• Router(config-if)#ip address 192.168.1.1 255.255.255.0 • Router(config-if)#clock rate 56000
• Router(config-if)#no shutdow
• %LINK-3-UPDOWN: Interface Serial0, changed state to up • Router(config-if)#interface e0
• %LINK-3-UPDOWN: Interface Serial0, changed state to down
• %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down • Router(config-if)#ip address 192.168.2.1 255.255.255.0
• Router(config-if)#no shutdow
• %LINK-3-UPDOWN: Interface Ethernet0, changed state to up • %LINK-3-UPDOWN: Interface Serial0, changed state to up
• %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up • Router(config-if)#exit
• Router(config)#router igrp 101
• Router(config-router)#network 192.168.1.0 • Router(config-router)#network 192.168.2.0
• Câu lệnh trên Router 2
• Router>enable
• Router#config terminal
• Enter configuration commands, one per line. End with CNTL/Z.
• Router(config)#interface s1
• Router(config-if)#ip address 192.168.1.2 255.255.255.0
• Router(config-if)#clock rate 56000
• Router(config-if)#no shutdow
• %LINK-3-UPDOWN: Interface Serial1, changed state to up
• Router(config-if)#interface e0
• Router(config-if)#ip address 192.168.3.1 255.255.255.0
• Router(config-if)#no shutdow
• %LINK-3-UPDOWN: Interface Ethernet0, changed state to up
• Router(config-if)#exit • Router(config)#router igrp • %Incomplete command. • Router(config)#router igrp 101 • Router(config-router)#network 192.168.1.0 • Router(config-router)#network 192.168.3.0 • Router(config-router)#end
• 5.0 Định tuyến NAT
• Định nghĩa: Nat ( network address translation) là cơ chết dịch chuyển địa chỉ mạng cho phép chuyển đổi 1 địa chỉ chưa được cấp
phát ( đỉa chỉ riêng private ip hya public ip cưa được đăng kí trên internet ) thành 1 địa chỉ đã được đăng kí ( public ) và ngược lại.
• Công dụng:
• Tiết kiệm được public ip
• Bảo mật mạng Lan ở mức thấp
• Nat tĩnh là chuyển 1 private ip thành 1 public ip
• Câu Lệnh NAT:
• R1(config)# ip nat inside source static 192.168.1.2
• R1(config)# interface e0
• R1(config)# ip nat inside
• R1(config)# interfare s0
• R1(config)# ip nat outside
• Nat động là chuyển đổi 1 hay nhiều private ip thành 1 trong n public ip
• R1(config)# ip nat pool NAT1 192.168.1.1 192.168.1.10 netmask 255.255.255.0
• R1(config)# Access list 1 permet 192.168.1.0 0.0.0.255
• R1(config)# ip nat inside source list 1 pool NAT1
• R1(config)# interface e0
• R1(config)# ip nat inside
• R1(config)# interface s0
• R1(config)# ip nat outside
• Nat theoport là chuyển đổi n private ip thành 1 public ip, là 1 dạng riêng của nat động
• R1(config)# Access list 1 permet 192.168.1.0 0.0.0.255
• R1(config)# ip nat inside list interface s0 overload
• R1(config)# interface e0
• R1(config)# ip nat inside
• R1(config)# interface s0