How to create DHCP server and a policy in the Fortigate

Here is an example script that demonstrates how to use the  fortigate-api  package to create a DHCP server and a policy in the Fortigate   from fortigate_api import FortigateAPI # Create a FortigateAPI object fgt = FortigateAPI(host="host", username="username", password="password") # Create a DHCP server data = {     "default-gateway": "192.168.255.1",     "netmask": "255.255.255.0",     "interface": "vlan.123",     "ip-range": [         {"start-ip": "192.168.255.2", "end-ip": "192.168.255.254",}     ], } fgt.dhcp_server.create(data) # Create a policy in the Fortigate data = dict(     name="POLICY",     status="enable",     action="accept",     srcintf=[{"name": "any"}],     dstintf=[{"name": "any"}],     srcaddr=[{"name": "all"}],     dstaddr=[{"name&quo

how to make bootable pen drive without rufus || how to make bootable pen drive with cmd

HOW TO MAKE BOOTABLE PEN DRIVE WITHOUT RUFUS || HOW TO MAKE BOOTABLE PEN DRIVE WITH CMD



Step 1: First of all, open CMD (Command Prompt) as an Administrator.

COMMAND PROMPT AS ADMIN


Step 2: After opening the CMD as an Admin type Diskpart and press Enter.

DISKPART


Step 3: A new window will be opened in front of you with this diskpart> (console).

Step 4: list disk


LIST DISK


Step 5: select disk <disk no> .


SELECT DISK


Step 6: clean

CLEAN


Step 7: create partition primary

PARTITION PRIMARY


Step 8: select partition 1

SELECT PARTITION


Step 9: format fs=<ntfs/fat32> quick

FORMAT FS=FAT32 QUICK


Step 10: assign letter=<any alphabet except the given one>

ASSIGN LETTER


Comments

Popular posts from this blog

How to create DHCP server and a policy in the Fortigate

Python Script to take the Backup of Multiple device in a Network

How to Configure VXLAN in FortiGate Firewall