Bài đăng

Thuật ngữ trong máy tính

  Thuật ngữ trong máy tính ASCII (American Standard Code for Information Interchange): là bộ chuyển đổi ký tự số thành chữ. APM (Advanced Power Manager): Quản lý hiệu suất ứng dụng. ACPI (Advanced Configuration and Power Interface): Cấu hình các phần cứng của máy tính và thực hiện quản lý nguồn điện. ATA (Advanced Technology Attachment): Là  ổ đĩa cứng dùng để truyền tải dữ liệu. AGP (Accelerated Graphics Port): Là một cổng cắm giúp tăng tốc đồ hoạ. ADSL (Asymmetric Digital Subscriber Line): Là một đường dây cung cấp mạng cho chúng ta sử dụng. AD (Active Directory): Là tập hợp nhiều thư mục giúp quản lý mạng, bảo mật, phân phối tài nguyên, tương tác các thư mục khác. Account User: Tài khoản người dùng trên hệ điều hành hay bất kì những ứng dụng khác giúp ta đăng nhập vào chúng.  ASP/ASP.NET (Active Server Page): Là chương trình chạy trên máy chủ web. ARP (Address Resolution Page): Là giao thức mạng được dùng để tìm ra địa chỉ phần cứng (Địa chỉ MAC) của thiết bị, từ một địa chỉ IP nguồ

CIS-467-Lab-22

Hình ảnh
Lab Tasks: 1. Configure all routers, switches, and servers with the hostnames, connections, and IP addressing depicted in the diagram. a. R2 and R3 will act as the default gateway for the workstation and server segments. b. Ensure that VLAN’s are used on SW-2 and SW-3 per the diagram. 2. Configure a static default route to the ISP router on R1. 3. Configure static routing for the following on the ISP router: a. Configure a static route for the workstation network on the ISP router. b. Configure a static route for the backbone transport network on the ISP router. 4. Configure OSPF connectivity between R1, R2, and R3 using the parameters depicted in the topology. a. All routed interfaces (except the ISP segment) should be members of Area 0. b. R1 should originate a default route for all other routers. c. Ensure you have full, 100% connectivity between ALL routed networks. Full connectivity is validated when pings from the ISP router are successful to the following IP

OSPF Multiarea Part II

Hình ảnh
Configuration R1: enable configure terminal hostname R1 ! interface FastEthernet0/1  ip address 172.16.10.1 255.255.255.0  ip ospf 100 area 1  no shutdown ! interface Serial0/0  ip address 172.16.20.1 255.255.255.0  ip ospf 100 area 1  no shutdown  exit ! router ospf 100  log-adjacency-changes  passive-interface FastEthernet0/1 ! end write memory ! Configuration R2: enable configure terminal hostname R2 ! key chain HN  key 1   key-string Pham    accept-lifetime 17:0:0 Jul 25 2018 17:0:0 Jul 25 2018    exit   exit ! interface FastEthernet0/1  ip address 172.16.30.1 255.255.255.0  ip ospf 100 area 0  no shutdown ! interface Serial0/0  ip address 192.168.10.2 255.255.255.0  ip ospf 100 area 2  no shutdown ! interface Serial0/1  ip address 172.16.20.2 255.255.255.0  ip ospf 100 area 1  no shutdown  clock rate 64000 ! ! router ospf 100  log-adjacency-changes  passive-interface FastEthernet0/1 ! ! end write memo

Configuring OSPF Multiarea

Hình ảnh
Configuration R1: enable configure terminal hostname R1 ! interface FastEthernet0/1  ip address 172.16.10.1 255.255.255.0  no shutdown ! interface Serial0/0  ip address 172.16.20.1 255.255.255.0  no shutdown  exit ! router ospf 100  log-adjacency-changes  passive-interface FastEthernet0/1  network 172.16.10.0 0.0.0.255 area 1  network 172.16.20.0 0.0.0.255 area 1 ! end write memory ! Configuration R2: enable configure terminal hostname R2 ! interface FastEthernet0/1  ip address 172.16.30.1 255.255.255.0  no shutdown ! interface Serial0/0  ip address 192.168.10.2 255.255.255.0  no shutdown ! interface Serial0/1  ip address 172.16.20.2 255.255.255.0  no shutdown  clock rate 64000 ! ! router ospf 100  log-adjacency-changes  passive-interface FastEthernet0/1  network 172.16.20.0 0.0.0.255 area 1  network 172.16.30.0 0.0.0.255 area 0  network 192.168.10.0 0.0.0.255 area 2 ! ! end write memory ! Configuration R3: enable

OSPF Routing with MD5 Authentication Between Routers

Hình ảnh
Configuration R1: enable configure terminal hostname R1 ! interface FastEthernet0/1  ip address 172.16.10.1 255.255.255.0  no shutdown ! interface Serial0/0  ip address 172.16.20.1 255.255.255.0  ip ospf authentication message-digest  ip ospf message-digest-key 1 md5 cisco  no shutdown  exit ! router ospf 100  log-adjacency-changes  passive-interface FastEthernet0/1  network 172.16.10.0 0.0.0.255 area 0  network 172.16.20.0 0.0.0.255 area 0 ! end write memory ! Configuration R2: enable configure terminal hostname R2 ! key chain HN  key 1   key-string Pham    accept-lifetime 17:0:0 Jul 25 2018 17:0:0 Jul 25 2018    exit   exit ! interface FastEthernet0/1  ip address 172.16.30.1 255.255.255.0  no shutdown ! interface Serial0/0  ip address 209.165.100.2 255.255.255.252  no shutdown ! interface Serial0/1  ip address 172.16.20.2 255.255.255.0  ip ospf authentication message-digest  ip ospf message-digest-key 1 md5 cisco  clo

EIGRP Routing with MD5 Authentication Between Routers

Hình ảnh
Configuration R1: enable configure terminal hostname R1 ! key chain tphcm  key 1   key-string Pham    accept-lifetime 17:0:0 Jul 25 2018 17:0:0 Jul 25 2018 ! interface FastEthernet0/1  ip address 172.16.10.1 255.255.255.0  no shutdown ! interface Serial0/0  ip address 172.16.20.1 255.255.255.0  ip authentication mode eigrp 100 md5  ip authentication key-chain eigrp 100 tphcm  no shutdown  exit ! router eigrp 100  network 172.16.0.0  no auto-summary  passive-interface f0/1 ! end write memory ! Configuration R2: enable configure terminal hostname R2 ! key chain HN  key 1   key-string Pham    accept-lifetime 17:0:0 Jul 25 2018 17:0:0 Jul 25 2018    exit   exit ! interface FastEthernet0/1  ip address 172.16.30.1 255.255.255.0  no shutdown ! interface Serial0/0  ip address 209.165.100.2 255.255.255.252  no shutdown ! interface Serial0/1  ip address 172.16.20.2 255.255.255.0  ip authentication mode eigrp 100 md5  ip authe

en_RSE_SkillsAssessment-Student_Exam

Hình ảnh
Erase the startup-config file on all: erase startup-config Reload all routers: reload Erase the startup-config file on all switches and remove the old           : delete vlan.dat VLAN database. Reload all routers: reload Verify VLAN database is absent            : show flash from flash on all switches. Configuration R1: Enable Configure terminal ! service password-encryption ! hostname R1 ! Enable secret class ! Banner motd #Unauthorized Access is Prohibited!# ! ip dhcp excluded-address 192.168.31.1 192.168.31.20 ip dhcp excluded-address 192.168.33.1 192.168.33.20 ! ip dhcp pool ACCT  network 192.168.31.0 255.255.255.0  default-router 192.168.31.1  dns-server 10.10.10.11  exit ! ip dhcp pool ENGNR  network 192.168.33.0 255.255.255.0  default-router 192.168.33.1  dns-server 10.10.10.11  exit ! no ip domain-lookup ip domain-name ccns-sba.com ! ! interface GigabitEthernet0/1  no shutdown ! interface GigabitEthernet0/1