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

透明DNS策略

实验拓扑

实验需求:

1.在企业出口防火墙上,设置一个“虚拟DNS服务器”,将内网用户的DNS设定为这个虚拟DNS服务器 的地址

2.内网用户使用不同的解析IP地址进行访问,实现流量负载分担

3.trust到untrust为内网到外网的访问

实验内容:

防火墙:

 interface GigabitEthernet 1/0/0

 ip address 192.168.1.254 24 

 interface GigabitEthernet 1/0/1

 ip address 13.0.0.1 24

 interface GigabitEthernet 1/0/2

 ip address 12.0.0.1 24 

划分安全区域:

firewall zone trust

 add interface GigabitEthernet 1/0/0

 firewall zone untrust-1

 add interface GigabitEthernet 1/0/1

 firewall zone untrust-2

 add interface GigabitEthernet 1/0/2

安全策略:

security - policy

 rule name trust_to_untrust-1

 source - zone trust

 destination - zone untrust-1

 source - address 192.168.1.0 24

 destination - address any

 service any

 action permit

 rule name trust_to_untrust-2

 source - zone trust

 destination - zone untrust-2

 source - address 192.168.1.0 24

 destination - address any

 service any

 action permit

NAT转换:

nat - address - group 1 13.0.0.2 13.0.0.10

 nat - policy

 rule name trust_to_untrust_nat

 source - zone trust

 destination - zone untrust-1

 source - address 192.168.1.0 24

 action source - nat address - group 1

 nat - address - group 2 12.0.0.2 12.0.0.10

 nat - policy

 rule name trust_to_untrust_nat

 source - zone trust

 destination - zone untrust-2

 source - address 192.168.1.0 24

 action source - nat address - group 2

认证策略:

aaa

local - user admin password cipher admin@123

local - user admin service - type telnet

user - interface vty 0 4

authentication - mode aaa


http://www.kler.cn/a/554152.html

相关文章:

  • 【ISO 14229-1:2023 UDS诊断(ECU复位0x11服务)测试用例CAPL代码全解析⑲】
  • vue 解决image-conversion图片处理插件压缩后图片底色变黑问题
  • 23种设计模式 - 访问者模式
  • < OS 有关 > Ubuntu 24 SSH 服务器更换端口 in jp/us VPSs
  • 【JavaEE进阶】Spring Boot日志
  • 爬虫抓取数据后如何存储?
  • 以下是MySQL中常见的增删改查语句
  • verilog程序设计及SystemVerilog验证
  • Linux 多进程生产者消费者模型实现
  • OkHttp使用和源码分析学习(一)
  • leetcode day18 移除元素 26+283
  • 438. 找到字符串中所有字母异位词(LeetCode 热题 100)
  • 文件超 100M 推送至 Github 解决方案
  • golang调用deepseekr1
  • 23种设计模式 - 抽象工厂模式
  • Starlink卫星动力学系统仿真建模番外篇3-陀螺仪介绍
  • AI 机器人外呼 —— 开启智能外呼新纪元
  • python 如何获取文件的keys
  • 应急决策指挥系统数学建模全方案
  • 升级 SpringBoot3 全项目讲解 — Spring Boot 3 中如何发Http请求?