w-bc

防火墙开局

一、配置外网地址:

1interface g1/0/0 
ip add 202.202.100.2 30
2interface g1/0/1
ip add 192.168.0.1 24

二、配置区域

firewall zone untrust
add interface g1/0/0

firewall zone trust
add interface g1/0/1

三、配置安全策略

policy-security
rule name policy1
source-zone trust
destination-zone untrust
action permit

四、配置NAT

nat address-group isp1
section 202.102.10.2 202.102.10.3

 

五、配置NAT策略

nat-policy
rule name nat1
source-zone trust
destination-zone untrust
source-address 192.168.0.0 mask 255.255.255.0
action source-nat address-group isp1

六、配置安全策略

security-policy
rule name natpolicy
source-address 192.168.0.0 mask 255.255.255.0
action permit

 

七、配置路由

ip route-static 0.0.0.0 0.0.0.0 202.102.10.1           //默认路由
ip route-static 192.168.0.0 255.255.255.0 10.10.10.2   //回指路由
ip route-static 202.102.10.1 32 NULL 0   //黑洞路由

 

分类:

技术点:

相关文章:

  • 2021-12-21
  • 2021-12-14
  • 2021-08-17
  • 2021-05-01
  • 2021-09-13
  • 2021-12-02
  • 2021-10-31
  • 2021-10-06
猜你喜欢
  • 2021-10-23
  • 2021-07-31
  • 2021-12-25
  • 2022-01-07
  • 2021-09-19
  • 2021-05-30
相关资源
相似解决方案