Add interface in existing firewall ruleset
Hello,
Currently our Fortigate 500E has many vlan interfaces.
The vlan interfaces are divided into zones in the firewall ruleset, for example:
ZONE-CLIENT - vlan interface/subnet where we have the internal PC clients.
ZONE-SERVER - vlan interface/subnet where we have the internal servers.
Here's an example of firewall rule and who it looks in the cli of the Fortigate.
SOURCE 192.168.1.0/24
DESTINATION 192.168.10.100,192.168.10.101
PROTOCOL/PORT TCP/80
---
config firewall policy edit 25 set name "CLIENT HTTP TRAFFIC" set srcintf "ZONE_CLIENT" set dstintf "ZONE_SERVER" set srcaddr "ADDR_NET_192.168.1.0" set dstaddr "ADDR_SRV_192.168.10.100" "ADDR_SRV_192.168.10.101" set action accept set schedule "always" set service "HTTP" next end
---
We are in the process of migrating routing from the Fortigate firewall to a Cisco core switch. The Fortigate will still be used as a firewall and the vlan interface with corresponding ip ranges will be created in the new core switch.
We have created a vlan interface on the core switch and Fortinet to use as a link-net between the core switch and firewall.
Can I add the new vlan interface as the incoming interface and can it co-exist with the same zone?
Like this?
---
config firewall policy edit 25 set name "CLIENT HTTP TRAFFIC" set srcintf "ZONE_CLIENT,INTERFACE-LINKNET" set dstintf "ZONE_SERVER" set srcaddr "ADDR_NET_192.168.1.0" set dstaddr "ADDR_SRV_192.168.10.100" "ADDR_SRV_192.168.10.101" set action accept set schedule "always" set service "HTTP" next end
---
Or do I have to create a zone for that link-net and build a copy of the existing firewall ruleset?
Kind regards,