FortiGateのURLフィルタは、ユーザーのWebアクセスを制御し、セキュリティ確保・業務効率化・コンプライアンス遵守に寄与する機能です。
Fortinetが提供するクラウドデータベースを用いてサイトを自動分類し、カテゴリ単位で制御可能です(例:ソーシャルメディア、ショッピング、アダルトなど)。
管理者が独自に許可・拒否したいURLやドメインを登録できます。
simple / wildcard / regexallow(許可)、block(遮断)、monitor(ログのみ)、exempt(上位の検査を免除)allow / block / monitor / warningallow / block / monitor / exempt実務ではまず「証明書インスペクション」で全体をカバーし、必要な部分だけ「Deepインスペクション」を併用するのが一般的です。
exemptで例外登録
config webfilter urlfilter
edit 1
set name "Custom-URL-Filter"
config entries
edit 1
set url "example.com"
set type wildcard
set action block
next
end
next
end
config webfilter profile
edit "WF-Custom"
set web-filter-status enable
set urlfilter-table 1
next
end
config firewall policy
edit 100
set srcintf "lan"
set dstintf "wan1"
set action accept
set service "ALL"
set nat enable
set utm-status enable
set webfilter-profile "WF-Custom"
set ssl-ssh-profile "certificate-inspection"
next
end
FortiGateのURLフィルタは、
を組み合わせることで、柔軟かつ強力にWebアクセスを管理できます。
業務効率とセキュリティを両立させるためには、誤検知対応やログ分析の仕組み化も欠かせません。
以上、FortiGateのURLフィルタについてでした。
最後までお読みいただき、ありがとうございました。