码迷,mamicode.com
首页 > 其他好文 > 详细

fortigate防火墙虚拟机版本的使用

时间:2018-02-03 12:47:27      阅读:775      评论:0      收藏:0      [点我收藏+]

标签:静态   net   默认   nat   路由   ati   inter   目标   sys   

目标:配置NAT模式,使101.0.0.1/24网络经过防火墙后,通过192.168.1.254访问互联网

步骤:

1、配置内网两个接口的ip地址

Config system interface 进入接口配置模式

Edit port1 进入端口子模式

set alias out 设置别名

Set ip 192.168.0.1 255.255.255.0 设置IP地址及掩码

Set allowaccess Http https telnet ssh ping设置可以进行网管的方式

end

config system interface

edit port2

set alias internal

set ip 111.0.0.1 255.255.255.0

set allowaccess ping

end

2、配置静态路由

config router static

edit 1

set device "port1" 注意端口不要选错

set gateway 192.168.0.1

next

end

3、配置ACL规则

防火墙默认拦截所有通信数据,需要添加规则放行

config firewall policy

edit 1

set srcintf "any"

set dstintf "any"

set srcaddr "all"

set dstaddr "all"

set action accept

set schedule "always"

set service "ALL"

set nat enable

next

end

fortigate防火墙虚拟机版本的使用

标签:静态   net   默认   nat   路由   ati   inter   目标   sys   

原文地址:http://blog.51cto.com/watertoeast/2068422

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!