Firewall Fortigate: (05-02) Cấu hình PPTP VPN trên Firewall Fortigate

By , 0 View

Mục tiêu thực hành:
- Cấu hình User PPTP VPN trên Firewall Fortigate.
- Khởi tạo Group User PPTP VPN trên Firewall Fortigate.
- Cấu hình Range IP sẽ cấp pháp cho các phiên PPTP VPN trên Firewall Fortigate.
- Cấu hình Firewall Policy cho phép PPTP VPN truy cập tới Internal Server trên Firewall Fortigate.
- Kiểm tra kết nối PPTP VPN trên Firewall Fortigate.

Các bước triển khai:
Cấu hình User PPTP VPN trên Firewall Fortigate.
config user local 
  edit pptpuser01
    set type password
    set passwd pptpuser01
  next
  edit pptpuser02
    set type password
    set passwd pptpuser02
end

Khởi tạo Group User PPTP VPN trên Firewall Fortigate.
config user group 
  edit PptpVpnGroup
  set group-type firewall
  set member pptpuser01 pptpuser02
  end

Cấu hình Range IP sẽ cấp pháp cho các phiên PPTP VPN trên Firewall Fortigate.
config vpn pptp 
  set status enable 
  set ip-mode range 
  set sip 172.16.2.100
  set eip 172.16.2.110
  set usrgrp PptpVpnGroup
  end

Cấu hình Firewall Policy cho phép PPTP VPN truy cập tới Internal Server trên Firewall Fortigate.
config firewall address
  edit PptpVpnRangeIP
    set type iprange
    set start-ip 172.16.2.100
    set end-ip 172.16.2.110
  end

config firewall address
  edit AppServer
    set type ipmask
    set subnet 172.16.2.22 255.255.255.255
  end

config firewall policy
    edit 4
        set name PPTP.to.Server
        set srcintf wan1
        set dstintf internal
        set srcaddr PptpVpnRangeIP
        set dstaddr AppServer
        set action accept
        set schedule always
        set service "ALL"
    end

Kiểm tra kết nối PPTP VPN trên Firewall Fortigate.

Để tìm hiểu thêm về Firewall Fortigate, các bạn có thể tham khảo Khóa học Chuyên đề Firewall Fortigate, hoặc liên hệ với mình thông qua kênh Zalo (Jade Bùi) 076.877.2021.

You Might Also Like

0 comments