The Internet is a global network of interconnected networks. The Domain Name System (DNS) acts as the phonebook of the Internet, translating human-readable hostnames (e.g. www.google.com) into IP addresses. The DNS structure is hierarchical, starting with the root servers, top-level domains (TLDs like .com, .org), and authoritative name servers.
DHCP dynamically assigns IP addresses, subnet masks, default gateways, and DNS server addresses to client devices as they join a network. The assignment process follows the four-step DORA Handshake:
互联网是相互连接的网络的全球网络。域名系统 (DNS) 充当互联网的电话簿,将人类可读的主机名(如 www.google.com)解析为 IP 地址。DNS 结构是分层的,从根服务器开始,到顶级域名(TLD 如 .com, .org)以及权威名称服务器。
DHCP 在客户端设备加入网络时,动态分配 IP 地址、子网掩码、默认网关和 DNS 服务器地址。分配过程遵循四个步骤的 DORA 握手:
This diagram represents the step-by-step DORA packet exchange between a client PC and a DHCP Server to obtain an IP configuration.
此图表示客户端 PC 与 DHCP 服务器之间为获取 IP配置而进行的逐步 DORA 数据包交换。
Exercise 1: Router DHCP Server Configuration 练习 1:路由器 DHCP 服务器配置
Steps to configure:
Router(config)# interface gigabitEthernet 0/0 Router(config-if)# ip address 192.168.1.1 255.255.255.0 Router(config-if)# no shutdown
Router(config)# ip dhcp excluded-address 192.168.1.1 192.168.1.10
Router(config)# ip dhcp pool LAN-POOL Router(config-dhcp)# network 192.168.1.0 255.255.255.0 Router(config-dhcp)# default-router 192.168.1.1 Router(config-dhcp)# dns-server 8.8.8.8
配置步骤:
Router(config)# interface gigabitEthernet 0/0 Router(config-if)# ip address 192.168.1.1 255.255.255.0 Router(config-if)# no shutdown
Router(config)# ip dhcp excluded-address 192.168.1.1 192.168.1.10
Router(config)# ip dhcp pool LAN-POOL Router(config-dhcp)# network 192.168.1.0 255.255.255.0 Router(config-dhcp)# default-router 192.168.1.1 Router(config-dhcp)# dns-server 8.8.8.8
Match the DHCP/Internet term on the left with its definition on the right. (Click a term, then click its matching definition). 将左侧的 DHCP/互联网术语与右侧的定义进行配对。(点击术语,然后点击匹配的定义)。
Course: Business Data Communication (DBDC2623) | Duration: 2 Hours | Total Marks: 50 Marks
Answer ALL questions. 1 mark per question.
1. Which mode allows data to flow in one direction only?
2. The OSI model consists of how many layers?
3. Which layer is responsible for logical addressing?
4. Attenuation refers to the:
5. Which topology features a central controller?
6. In a digital signal, bit rate is measured in:
7. Which media uses light for data transmission?
8. What does PCM stand for?
9. Which is an unguided transmission medium?
10. FDM requires signals to be:
11. Data flow between two devices is:
12. Which layer manages dialogue control?
13. The physical layer concerns:
14. ASK stands for:
15. Noise is defined as:
16. Which coding scheme is unipolar?
17. A periodic signal completes a pattern in a:
18. Circuit switching creates a:
19. Which is a connecting device?
20. The TCP/IP application layer is equivalent to:
QUESTION 1 (4 Marks)
Explain the functions of the following layers in the OSI model:
a) Physical Layer (2 marks)
b) Data Link Layer (2 marks)
QUESTION 2 (6 Marks)
Distinguish between 'Analog Signals' and 'Digital Signals'. Provide ONE (1) example of where each is used.
QUESTION 3 (6 Marks)
Describe THREE (3) types of transmission impairments that can affect a signal during transmission.
QUESTION 4 (4 Marks)
Compare 'Parallel Transmission' and 'Serial Transmission' based on speed, cost, and typical usage.
QUESTION 1
Network models are the foundation of data communication.
a) Illustrate the seven layers of the OSI Model in correct order. (7 Marks)
b) Discuss the concept of 'Encapsulation' and 'Decapsulation' as data moves through the layers of the TCP/IP suite. (3 Marks)