华为数通企业面试笔试实验题

1. 笔试题

1.1 实验拓扑

1.2 实验要求

  • 公司A为小型销售公司,需要实现基本上网功能,蓝色部分为外网线,提供DHCP服务 DnsServer:114.114.114.114

  • 帮助网管排查某一台计算机在某一台交换机的某个端口

2. 操作步骤

  1. 配置路由器相关的LAN侧接口IP地址

  2. 配置DHCP项,要求有PC1与PC2属不同网段 网关; 排除地址(200以后段); 租期8小时 DNS:114.114.114.114

  3. 配置路由器接口为PPPOE Client上网,启用端口PAT-NAT

  4. PC1与PC2均可ping通<www.baidu.com>(配置AR1220默认路由)

  5. 帮助网管在多条线路中找到PC1; PC2所属交换机端口 (注,需写出关键命令原理,提示:基于ARP+MAC表项)

  6. 配置AR1220的远程登录服务(telnet)

3. 操作配置

3.1 配置IP地址

AR1220:

sysname PPPoE-clinet
interface GigabitEthernet0/0/0
 ip address 192.168.1.254 255.255.255.0
[PPPoE-clinet-Ethernet0/0/0]ip add
                               ^
Error: Unrecognized command found at '^' position.
//发现在e0/0/0口是无法配置ip地址!!!
//这是企业面试故意设置的坑!!!
//说明这不是三层接口,而是二层接口,是不能直接配置ip地址的要在vlanif上配置
​
interface Vlanif1
 ip address 192.168.2.254 255.255.255.0

3.2 配置DHCP

AR 1220:

dhcp enable
​
interface GigabitEthernet0/0/0 
 dhcp select interface
 dhcp server excluded-ip-address 192.168.1.253 
 dhcp server lease day 0 hour 8 minute 0 
 dhcp server dns-list 114.114.114.114 
 
interface Vlanif1
 dhcp select interface
 dhcp server excluded-ip-address 192.168.2.253 
 dhcp server lease day 0 hour 8 minute 0 
 dhcp server dns-list 114.114.114.114 

DHCP 配置成功!!!

3.3 配置PPPoE上网

你接下来是不是直接配置g0/0/1口了,在正常情况下是这样的,但是我们的要求是实现pppoe拨号上网,所以我们配置一个Dialer口更为合适

AR 1220:

interface Dialer1
 link-protocol ppp
 ppp chap user huawei
 ppp chap password cipher huawei123
 ip address ppp-negotiate
 dialer user huawei
 dialer bundle 10
 dialer-group 100
 nat outbound 2000 address-group 1
 
acl number 2000
 rule 5 permit any

AR-Internet:

interface GigabitEthernet0/0/0
 ip address 114.114.114.1 255.255.255.0 
 
interface Virtual-Template1
 ppp authentication-mode chap 
 remote address pool 1
 ppp chap user zym
 ip address 100.1.1.1 255.255.255.0 
 
ip pool 1
 gateway-list 100.1.1.1 
 network 100.1.1.0 mask 255.255.255.0 

DNS.Server:

测试:

可以通过pppoe拨号上网!!!

3.4 DNS服务

测试:

成功访问<www.baidu.com>!!!

3.5 查找

AR 1220:

[PPPoE-clinet]lldp enable

SW1:

[SW1]lldp enable

SW2:

[SW2]lldp enable

AR 1220:

[PPPoE-clinet]dis lldp neighbor brief 
Local Intf   Neighbor Dev             Neighbor Intf             Exptime
GE0/0/0      SW1                      GE0/0/1                   112    
Eth0/0/0     SW2                      GE0/0/1 

3.6 telnet配置

AR 1220:

aaa 
 local-user zym password cipher zym123
 local-user zym privilege level 15
 local-user zym service-type telnet



[PPPoE-clinet]user-interface vty 0 4
[PPPoE-clinet-ui-vty0-4]dis th
[V200R003C00]
#
user-interface con 0
 authentication-mode password
user-interface vty 0 4
 authentication-mode aaa
user-interface vty 16 20
#

测试:

<AR-internet>telnet 100.1.1.254
  Press CTRL_] to quit telnet mode
  Trying 100.1.1.254 ...
  Connected to 100.1.1.254 ...

Login authentication


Username:zym
Password:
  ----------------------------------------------------------------------------- 
    
  User last login information:     
  -----------------------------------------------------------------------------
  Access Type: Telnet      
  IP-Address : 100.1.1.1     
  Time       : 2024-06-17 11:14:46-08:00     
  -----------------------------------------------------------------------------
<PPPoE-clinet>

telnet远程访问成功!!!
以上是完整的实验配置,需要已经配置完成的实验拓扑三连斯沃!!!

相关推荐
yeyuningzi5 分钟前
Debian 12环境里部署nginx步骤记录
linux·运维·服务器
SuperHeroWu742 分钟前
【HarmonyOS】键盘遮挡输入框UI布局处理
华为·harmonyos·压缩·keyboard·键盘遮挡·抬起
EasyCVR1 小时前
萤石设备视频接入平台EasyCVR多品牌摄像机视频平台海康ehome平台(ISUP)接入EasyCVR不在线如何排查?
运维·服务器·网络·人工智能·ffmpeg·音视频
明月看潮生2 小时前
青少年编程与数学 02-003 Go语言网络编程 15课题、Go语言URL编程
开发语言·网络·青少年编程·golang·编程与数学
wowocpp2 小时前
ubuntu 22.04 硬件配置 查看 显卡
linux·运维·ubuntu
萨格拉斯救世主2 小时前
jenkins使用slave节点进行node打包报错问题处理
运维·jenkins
川石课堂软件测试2 小时前
性能测试|docker容器下搭建JMeter+Grafana+Influxdb监控可视化平台
运维·javascript·深度学习·jmeter·docker·容器·grafana
龙哥说跨境3 小时前
如何利用指纹浏览器爬虫绕过Cloudflare的防护?
服务器·网络·python·网络爬虫
懒大王就是我3 小时前
C语言网络编程 -- TCP/iP协议
c语言·网络·tcp/ip
Elaine2023913 小时前
06 网络编程基础
java·网络