W5500 not Working With Static IP (DHCP Disable)

i am working on w5500 with Esp32, Its working fine with DHCP Configuation ,but as i disable DHCP mode on router side w5500 not getting IP.(module not Connecting).(
i am giving ip also from controller side)

Hello, this is WIZNet.
Have you accurately configured the static settings after disabling DHCP?
Please check the IP configuration

/* Network */
static wiz_NetInfo g_net_info =
    {
        .mac = {0x00, 0x08, 0xDC, 0x12, 0x34, 0x56}, // MAC address
        .ip = {192, 168, 11, 2},                     // IP address
        .sn = {255, 255, 255, 0},                    // Subnet Mask
        .gw = {192, 168, 11, 1},                     // Gateway
        .dns = {8, 8, 8, 8},                         // DNS server
//        .dhcp = NETINFO_DHCP                         // DHCP
        .dhcp = NETINFO_STATIC
};```

i am working on Arduino framwork,
please update where i’ll get this information