Hi Trilok.
Please, what do you use for the code in your device?
Because the IP Address you set in the code,
for example, if you will flash KSDK code, example lwip_tcpecho_freertos for your board,
there you should set the connection in lwip_tcpecho_freertos.c
so, the board is set on 192.168.1.102 and PC is set on 192.168.1.100
/* IP address configuration. */
#define configIP_ADDR0 192
#define configIP_ADDR1 168
#define configIP_ADDR2 1
#define configIP_ADDR3 102
/* Netmask configuration. */
#define configNET_MASK0 255
#define configNET_MASK1 255
#define configNET_MASK2 255
#define configNET_MASK3 0
/* Default gateway address configuration */
#define configGW_ADDR0 192
#define configGW_ADDR1 168
#define configGW_ADDR2 1
#define configGW_ADDR3 100
I hope this helps you.
Best Regards,
Iva