当前位置: 首页 > news >正文

HCIA网络课程第七周作业

(1)请用自己的语言描述基本ACL和高级ACL的区别
在这里插入图片描述
(2)AAA支持的认证、授权和计费方式分别有哪几种?

  • AAA支持的认证方式有不认证 本地认证 远端认证
  • AAA支持的授权方式为不授权 本地授权 远端授权
  • AAA支持计费方式为不计费 远端计费

补充:https://support.huawei.com/enterprise/zh/doc/EDOC1100219440/

(3)如下图所示的网络,从安全角度考虑,路由器A拒接从G0/0/1接口收到的OSPF报文、 GRE报文、 ICMP报文,以下哪些命令可以实现这个需求?(ABD)
在这里插入图片描述

A. acl number 3000 
rule 5 deny gre
rule 10 deny ospf
rule 15 deny icmp
# interface GigabitEthernet0/0/1
traffic-filter inbound acl 3000
#
B. acl number 3000
rule 5 deny gre
rule 10 deny 89
rule 15 deny icmp
#
interface GigabitEthernet0/0/1
traffic-filter inbound acl 3000
#
C. acl number 2000
rule 5 deny 47
rule 10 deny 89
rule 15 deny 1
#
interface GigabitEthernet0/0/1
traffic-filter inbound acl 2000
#
D. acl number 3000
rule 5 deny 47
rule 10 deny 89
rule 15 deny 1
#
interface GigabitEthernet0/0/1
traffic-filter inbound acl 3000 
# 

(4)如图所示的网络,通过以下哪些配置可以实现主机A不能访间主机B的HTTP服务,主机B不能访问主机A的下FTP服务?(BD)
在这里插入图片描述

A. acl number 3000 
rule 5 deny tcp source 100.0.12.0 0.0.0.255 source-port eQwww destination 100.0.13.0 0.0.0.255
#
acl number 3001
rule 5 deny tcp source 100.0.13.0 0.0.0.255 source-port eQftp destination 100.0.12.0 0.0.0.255
#
interface GigabitEthernet0/0/1
traffic-filter outbound acl 3000
#
interface GigabitEthernet0/0/2
traffic-filter outbound acl 3001
#
B. acl number 3000
rule 5 deny tcp source 100.0.13.0 0.0.0.255 destination 100.0.12.0 0.0.0.255 destination-port eQwww
#
acl number 3001
rule 5 deny tcp source 100.0.12.0 0.0.0.255 destination 100.0.13.0 0.0.0.255 destination-port eQftp
#
interface GigabitEthernet0/0/1
traffic-filter inbound acl 3000
#
interface GigabitEthernet0/0/2
traffic-filter inbound acl 3001
#
C. acl number 3000
rule 5 deny tcp source 100.0.13.0 0.0.0.255 destination 100.0.12.0 0.0.0.255 destination-port eQwww
#
acl number 3001
rule 5 deny tcp source 100.0.12.0 0.0.0.255 destination 100.0.13.0 0.0.0.255 destination-port eQftp
#
interface GigabitEthernet0/0/1
traffic-filter outbound acl 3000
#
interface GigabitEthernet0/0/2
traffic-filter outbound acl 3001
#
D. acl number 3000
rule 5 deny tcp source 100.0.12.0 0.0.0.255 source-port eQwww destination 100.0.13.0 0.0.0.255
#
acl number 3001
rule 5 deny tcp source 100.0.13.0 0.0.0.255 source-port eQftp destination 100.0.12.0 0.0.0.255
#
interface GigabitEthernet0/0/1
traffic-filter intbound acl 3000
#
interface GigabitEthernet0/0/2
traffic-filter inbound acl 3001
# 

(5)如下图所示的网络。通过以下哪个配置可以实现所有主机都能和主机C通信。但是主机A和主机B不能通信? (C)
在这里插入图片描述

A. acl number 4000
rule 5 deny destination-mac 5489-98ea-4c7c source-mac 5489-98d3-104d
#
interface GigabitEthernet0/0/1
traffic-filter inbound acl 4000
#
B. acl number 4000
rule 5 deny destination-mac 5489-98ea-4c7c source-mac 5489-98d3-104d
#
interface GigabitEthernet0/0/1
traffic-filter outbound acl 4000
#
C. acl number 4000
rule 5 deny destination-mac 5489-98ca-4c7c source-mac 5489-98c0-550e
#
interface GigabitEthernet0/0/1
traffic-filter inbound acl 4000
#
D. acl number 4000
rule 5 deny destination-mac 5489-98ea-4c7c source-mac 5489-98c0-550e
#
interface GigabitEthernet0/0/1
traffic-filter outbound acl 4000
# 

相关文章:

  • Nacos2.1.1 github下载zip太慢解决方法及资源分享
  • 集群外Prometheus 集群 k8s
  • 《Python编程:从入门到实战》学习笔记 第4章 操作列表
  • Linux当中如何隐藏和查看进程
  • 【C++ Primer Plus】第6章 分支语句和逻辑运算符
  • 案例分享 | 建筑师灵活用工平台产品规划设计
  • 基于springboot+vue的大学生交友活动管理网站 elementui
  • 神经网络建模的基本思想,神经网络语言模型详解
  • 使用VMware搭建OceanStor_eStor存储超详细教程
  • main函数执行前执行和执行后执行
  • idea git提交代码
  • ElasticSearch ES 安装 常见错误 Kibana安装 设置 权限 密码
  • 批量ping、telnet脚本
  • 计算机网络概念基础——分组交换
  • Mysql查询去空格方法汇总
  • 收藏网友的 源程序下载网
  • 【React系列】如何构建React应用程序
  • 【刷算法】从上往下打印二叉树
  • Docker: 容器互访的三种方式
  • ES6系列(二)变量的解构赋值
  • JavaScript 一些 DOM 的知识点
  • JavaScript-Array类型
  • Koa2 之文件上传下载
  • Map集合、散列表、红黑树介绍
  • maven工程打包jar以及java jar命令的classpath使用
  • php中curl和soap方式请求服务超时问题
  • python学习笔记-类对象的信息
  • Shadow DOM 内部构造及如何构建独立组件
  • SOFAMosn配置模型
  • Spark VS Hadoop:两大大数据分析系统深度解读
  • vue2.0项目引入element-ui
  • 精彩代码 vue.js
  • 每天一个设计模式之命令模式
  • 深入体验bash on windows,在windows上搭建原生的linux开发环境,酷!
  • 手机app有了短信验证码还有没必要有图片验证码?
  • 温故知新之javascript面向对象
  • ​【原创】基于SSM的酒店预约管理系统(酒店管理系统毕业设计)
  • #define、const、typedef的差别
  • (2)STM32单片机上位机
  • (8)STL算法之替换
  • (C++)栈的链式存储结构(出栈、入栈、判空、遍历、销毁)(数据结构与算法)
  • (C语言)二分查找 超详细
  • (Ruby)Ubuntu12.04安装Rails环境
  • (附源码)spring boot公选课在线选课系统 毕业设计 142011
  • (十)c52学习之旅-定时器实验
  • (一)u-boot-nand.bin的下载
  • (原創) 如何動態建立二維陣列(多維陣列)? (.NET) (C#)
  • (转)visual stdio 书签功能介绍
  • .NET CORE Aws S3 使用
  • .NET 中的轻量级线程安全
  • .net分布式压力测试工具(Beetle.DT)
  • .NET建议使用的大小写命名原则
  • .NET教程 - 字符串 编码 正则表达式(String Encoding Regular Express)
  • .pub是什么文件_Rust 模块和文件 - 「译」
  • [《百万宝贝》观后]To be or not to be?