diff --git a/app/main.c b/app/main.c index 4a82037..d88b75b 100644 --- a/app/main.c +++ b/app/main.c @@ -11,6 +11,9 @@ #include #include "lwip/prot/ip4.h" +/* Utility macros */ +#define MIN(a, b) ((a) < (b) ? (a) : (b)) + /* Network Interface */ struct netif gnetif; osal_sem_t sem_ip_ready = NULL; @@ -166,14 +169,190 @@ exit: return ret; } +/* TCP Client Configuration */ +#define TCP_CLIENT_AUTH_USERNAME "admin" +#define TCP_CLIENT_AUTH_PASSWORD "password123" +#define TCP_CLIENT_MAX_RECONNECT_DELAY 10000 // 最大重连延迟 10 秒 +#define TCP_CLIENT_INIT_RECONNECT_DELAY 1000 // 初始重连延迟 1 秒 +#define TCP_CLIENT_HEARTBEAT_INTERVAL 500 // 心跳间隔 500ms +#define TCP_CLIENT_AUTH_TIMEOUT 3000 // 认证超时 3 秒 +#define TCP_CLIENT_CONNECT_TIMEOUT 5000 // 连接超时 5 秒 + +/* Helper function: Check if authentication response is successful */ +static int is_auth_success(const char *response) +{ + if (!response) + return 0; + + // 移除末尾的换行符和空格 + char *p = (char *)response; + while (*p && (*p == ' ' || *p == '\n' || *p == '\r')) p++; + char *end = p + strlen(p) - 1; + while (end > p && (*end == ' ' || *end == '\n' || *end == '\r')) end--; + *(end + 1) = '\0'; + + // 转换为小写进行比较 + char lower_data[128]; + for (int i = 0; p[i]; i++) { + lower_data[i] = tolower(p[i]); + } + lower_data[strlen(p)] = '\0'; + + osal_log_i("Processed auth response: '%s'", p); + osal_log_i("Lowercase auth response: '%s'", lower_data); + + /* Check if authentication was successful */ + if (strstr(lower_data, "ok") != NULL || + strstr(lower_data, "success") != NULL || + strstr(lower_data, "auth_success") != NULL) + { + return 1; + } + + return 0; +} + +/* Helper function: Create and configure socket */ +static int create_and_configure_socket(void) +{ + int sock = socket(AF_INET, SOCK_STREAM, 0); + if (sock < 0) + { + osal_log_e("Socket creation error: %d", errno); + return -1; + } + + /* Set non-blocking mode */ + int flags = fcntl(sock, F_GETFL, 0); + if (fcntl(sock, F_SETFL, flags | O_NONBLOCK) < 0) + { + osal_log_e("Failed to set non-blocking mode: %d", errno); + closesocket(sock); + return -1; + } + + /* Set socket options for better performance */ + int keepalive = 1; + int keepidle = 60; + int keepintvl = 10; + int keepcnt = 3; + + setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, &keepalive, sizeof(keepalive)); + setsockopt(sock, IPPROTO_TCP, TCP_KEEPIDLE, &keepidle, sizeof(keepidle)); + setsockopt(sock, IPPROTO_TCP, TCP_KEEPINTVL, &keepintvl, sizeof(keepintvl)); + setsockopt(sock, IPPROTO_TCP, TCP_KEEPCNT, &keepcnt, sizeof(keepcnt)); + + return sock; +} + +/* Helper function: Connect to server with timeout */ +static int connect_to_server(int sock, struct sockaddr_in *server_addr) +{ + int ret = connect(sock, (struct sockaddr *)server_addr, sizeof(struct sockaddr)); + if (ret == -1 && errno != EINPROGRESS) + { + osal_log_e("Connect failed: %d", errno); + return -1; + } + + /* Use select to wait for connection completion */ + fd_set wset; + struct timeval tv; + FD_ZERO(&wset); + FD_SET(sock, &wset); + tv.tv_sec = TCP_CLIENT_CONNECT_TIMEOUT / 1000; + tv.tv_usec = (TCP_CLIENT_CONNECT_TIMEOUT % 1000) * 1000; + + if (select(sock + 1, NULL, &wset, NULL, &tv) > 0) + { + int error = 0; + socklen_t len = sizeof(error); + getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &len); + if (error != 0) + { + osal_log_e("Connect failed: %d", error); + return -1; + } + } + else + { + osal_log_e("Connect timeout"); + return -1; + } + + return 0; +} + +/* Helper function: Send authentication and wait for response */ +static int authenticate_server(int sock) +{ + /* Send authentication information */ + char auth_data[64]; + snprintf(auth_data, sizeof(auth_data), "AUTH %s %s\n", TCP_CLIENT_AUTH_USERNAME, TCP_CLIENT_AUTH_PASSWORD); + + if (send(sock, auth_data, strlen(auth_data), 0) < 0) + { + osal_log_e("Failed to send authentication: %d", errno); + return 0; + } + + osal_log_i("Sent authentication: %s", auth_data); + + /* Wait for authentication response */ + char recv_data[128]; + fd_set rset; + struct timeval tv; + FD_ZERO(&rset); + FD_SET(sock, &rset); + tv.tv_sec = TCP_CLIENT_AUTH_TIMEOUT / 1000; + tv.tv_usec = (TCP_CLIENT_AUTH_TIMEOUT % 1000) * 1000; + + if (select(sock + 1, &rset, NULL, NULL, &tv) > 0) + { + int bytes_received = recv(sock, recv_data, sizeof(recv_data) - 1, 0); + if (bytes_received > 0) + { + recv_data[bytes_received] = '\0'; + osal_log_i("Authentication response: '%s'", recv_data); + + if (is_auth_success(recv_data)) + { + osal_log_i("Authentication successful!"); + return 1; + } + else + { + osal_log_e("Authentication failed: %s", recv_data); + return 0; + } + } + else if (bytes_received == 0) + { + osal_log_w("Connection closed by server during authentication"); + return 0; + } + else + { + osal_log_e("Recv error during authentication: %d", errno); + return 0; + } + } + else + { + osal_log_w("No authentication response received"); + return 0; + } +} + /* TCP Client Thread */ static void tcp_client_entry(void *parameter) { int sock = -1; struct sockaddr_in server_addr; - char *send_data = "Hello from RT-Thread Nano TCP Client\n"; char recv_data[128]; int bytes_received; + int reconnect_count = 0; + int reconnect_delay = TCP_CLIENT_INIT_RECONNECT_DELAY; /* Wait for IP address ready */ if (osal_sem_take(sem_ip_ready, OSAL_WAIT_FOREVER) != OSAL_OK) @@ -184,6 +363,12 @@ static void tcp_client_entry(void *parameter) osal_log_i("TCP Client Starting..."); + /* Prepare server address */ + server_addr.sin_family = AF_INET; + server_addr.sin_port = htons(SERVER_PORT); + server_addr.sin_addr.s_addr = inet_addr(SERVER_IP_ADDR); + memset(&(server_addr.sin_zero), 0, sizeof(server_addr.sin_zero)); + while (1) { /* Check Link Status */ @@ -193,66 +378,49 @@ static void tcp_client_entry(void *parameter) continue; } - /* Create socket */ - if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) + /* Create and configure socket */ + sock = create_and_configure_socket(); + if (sock < 0) { - osal_log_e("Socket error"); - osal_thread_mdelay(1000); + osal_log_e("Failed to create socket, reconnecting in %d ms...", reconnect_delay); + osal_thread_mdelay(reconnect_delay); + // 指数退避重连 + reconnect_count++; + reconnect_delay = MIN(reconnect_delay * 2, TCP_CLIENT_MAX_RECONNECT_DELAY); continue; } - - /* Set non-blocking mode */ - int flags = fcntl(sock, F_GETFL, 0); - fcntl(sock, F_SETFL, flags | O_NONBLOCK); - - server_addr.sin_family = AF_INET; - server_addr.sin_port = htons(SERVER_PORT); - server_addr.sin_addr.s_addr = inet_addr(SERVER_IP_ADDR); - memset(&(server_addr.sin_zero), 0, sizeof(server_addr.sin_zero)); osal_log_i("Connecting to server %s:%d...", SERVER_IP_ADDR, SERVER_PORT); - int ret = connect(sock, (struct sockaddr *)&server_addr, sizeof(struct sockaddr)); - if (ret == -1 && errno != EINPROGRESS) + /* Connect to server */ + if (connect_to_server(sock, &server_addr) < 0) { - osal_log_e("Connect failed"); - closesocket(sock); - osal_thread_mdelay(2000); - continue; - } - - /* Use select to wait for connection completion */ - fd_set wset; - struct timeval tv; - FD_ZERO(&wset); - FD_SET(sock, &wset); - tv.tv_sec = 5; - tv.tv_usec = 0; - - if (select(sock + 1, NULL, &wset, NULL, &tv) > 0) - { - int error = 0; - socklen_t len = sizeof(error); - getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &len); - if (error != 0) - { - osal_log_e("Connect failed: %d", error); - closesocket(sock); - osal_thread_mdelay(2000); - continue; - } - } - else - { - osal_log_e("Connect timeout"); closesocket(sock); + osal_log_e("Connection failed, reconnecting in %d ms...", reconnect_delay); + osal_thread_mdelay(reconnect_delay); + // 指数退避重连 + reconnect_count++; + reconnect_delay = MIN(reconnect_delay * 2, TCP_CLIENT_MAX_RECONNECT_DELAY); continue; } osal_log_i("Connected to server!"); - /* Send greeting */ - send(sock, send_data, strlen(send_data), 0); + /* Authenticate with server */ + if (!authenticate_server(sock)) + { + osal_log_e("Authentication failed, reconnecting in %d ms...", reconnect_delay); + closesocket(sock); + osal_thread_mdelay(reconnect_delay); + // 指数退避重连 + reconnect_count++; + reconnect_delay = MIN(reconnect_delay * 2, TCP_CLIENT_MAX_RECONNECT_DELAY); + continue; + } + + // 认证成功,重置重连计数器和延迟 + reconnect_count = 0; + reconnect_delay = TCP_CLIENT_INIT_RECONNECT_DELAY; while (1) { @@ -262,7 +430,7 @@ static void tcp_client_entry(void *parameter) break; } - /* Send heartbeat every 1 second */ + /* Send heartbeat */ if (send(sock, "Heartbeat", 9, 0) < 0) { if (errno != EWOULDBLOCK) { osal_log_e("Send error: %d", errno); @@ -270,11 +438,13 @@ static void tcp_client_entry(void *parameter) } } + /* Wait for data with timeout */ fd_set rset; + struct timeval tv; FD_ZERO(&rset); FD_SET(sock, &rset); - tv.tv_sec = 1; /* Check periodically */ - tv.tv_usec = 0; + tv.tv_sec = TCP_CLIENT_HEARTBEAT_INTERVAL / 1000; + tv.tv_usec = (TCP_CLIENT_HEARTBEAT_INTERVAL % 1000) * 1000; int n = select(sock + 1, &rset, NULL, NULL, &tv); if (n > 0) { @@ -304,7 +474,11 @@ static void tcp_client_entry(void *parameter) } closesocket(sock); - osal_thread_mdelay(2000); + osal_log_i("Connection closed, reconnecting in %d ms...", reconnect_delay); + osal_thread_mdelay(reconnect_delay); + // 指数退避重连 + reconnect_count++; + reconnect_delay = MIN(reconnect_delay * 2, TCP_CLIENT_MAX_RECONNECT_DELAY); } } diff --git a/board/stm32f407ve/board.c b/board/stm32f407ve/board.c index 86dff73..af54ac5 100644 --- a/board/stm32f407ve/board.c +++ b/board/stm32f407ve/board.c @@ -10,6 +10,10 @@ #include "board.h" #include +#include "stm32f4xx_hal.h" + +/* Forward declaration */ +void HAL_ETH_MspInit(ETH_HandleTypeDef *heth); /* System Clock Configuration */ void SystemClock_Config(void) @@ -108,6 +112,39 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef* uartHandle) } } +/* Ethernet MSP Init */ +void HAL_ETH_MspInit(ETH_HandleTypeDef *heth) +{ + (void)heth; + GPIO_InitTypeDef GPIO_InitStructure; + + __HAL_RCC_GPIOA_CLK_ENABLE(); + __HAL_RCC_GPIOB_CLK_ENABLE(); + __HAL_RCC_GPIOC_CLK_ENABLE(); + __HAL_RCC_SYSCFG_CLK_ENABLE(); + + __HAL_RCC_ETH_CLK_ENABLE(); + + /* PA1, PA2, PA7 */ + GPIO_InitStructure.Pin = GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_7; + GPIO_InitStructure.Mode = GPIO_MODE_AF_PP; + GPIO_InitStructure.Pull = GPIO_NOPULL; + GPIO_InitStructure.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStructure.Alternate = GPIO_AF11_ETH; + HAL_GPIO_Init(GPIOA, &GPIO_InitStructure); + + /* PC1, PC4, PC5 */ + GPIO_InitStructure.Pin = GPIO_PIN_1 | GPIO_PIN_4 | GPIO_PIN_5; + HAL_GPIO_Init(GPIOC, &GPIO_InitStructure); + + /* PB11, PB12, PB13 */ + GPIO_InitStructure.Pin = GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13; + HAL_GPIO_Init(GPIOB, &GPIO_InitStructure); + + HAL_NVIC_SetPriority(ETH_IRQn, 0x07, 0); + HAL_NVIC_EnableIRQ(ETH_IRQn); +} + /** * This is the timer interrupt service routine. * diff --git a/build/.ninja_deps b/build/.ninja_deps index ede2aca..50f6024 100644 Binary files a/build/.ninja_deps and b/build/.ninja_deps differ diff --git a/build/.ninja_log b/build/.ninja_log index 42fbbf0..10875eb 100644 --- a/build/.ninja_log +++ b/build/.ninja_log @@ -1,427 +1,233 @@ # ninja log v7 -40 532 7923047993219455 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c.obj ec32bd437e5ff2d3 -35 493 7923047993171012 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj 7b67b62763d73b0b -11 516 7923047992930099 CMakeFiles/rtthread-nano-stm32f407ve.dir/board/stm32f407ve/board.c.obj 74cec99e8c18b81a -27 604 7923047993088678 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c.obj 998e3b769e20291a -48 595 7923047993298787 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj a7d9f780effb07df -10 283 7923070848053908 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 -14 499 7923047992961128 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj d942fdfe26c0d22f -76 693 7923047993576131 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c.obj 9b6e4b8841be52d6 -31 559 7923047993124665 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 3b3fc39cb4c31c4d -17 575 7923047992976211 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj 5a35ce9c62bb54e7 -20 555 7923047993017172 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj de7cbcf09b649b3a -52 624 7923047993336476 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj 5ee8fb7465f9c646 -57 662 7923047993385787 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c.obj d7f242ef67e4ba09 -66 671 7923047993477625 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c.obj b5647a7d35e62b49 -71 629 7923047993525960 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 3e9bfbe40b51c2a6 -23 564 7923047993052506 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj 67d1b5447555fae5 -44 550 7923047993257533 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.c.obj 9b8790b0c4eb4b07 -62 666 7923047993431982 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.c.obj 8ddcdd0f3f02bb40 -559 1192 7923047998410469 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 22f6f9375d39f151 -604 1364 7923047998857107 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpsmbus_ex.c.obj 757d6c374d1b319d -517 1322 7923047997982187 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj a6dce94af40a267 -499 1136 7923047997812670 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c.obj 81ba010cfd89e4b1 -624 1263 7923047999054103 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c.obj 4db31717a34b706 -555 1141 7923047998355184 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj fb2b7a54d14ec5f9 -619 1238 7923047999000452 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj 1f1eac1996d52611 -533 1147 7923047998142698 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj bac3a78877e87962 -550 1201 7923047998319880 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 22e34c6a32015555 -575 1115 7923047998572480 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.c.obj 9d7e51ba68c30cd4 -564 1197 7923047998459824 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.c.obj bf384bc8a53e2f45 -595 1187 7923047998772131 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpsmbus.c.obj 23a425d7528b6900 -494 1124 7923047997760690 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj efc21410ae6079c4 -629 1243 7923047999106438 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.c.obj 7edf1ba198e39bf1 -662 1417 7923047999438255 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c.obj 3dd3ef8f43a8eead -671 1423 7923047999529436 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj f6feb20988a7ae46 -694 1485 7923047999751007 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c.obj 6903465607745954 -666 1651 7923047999481887 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj a3eec757a8e46d2 -1147 1718 7923048004288675 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c.obj a8b40b715887a0c4 -1136 1688 7923048004178839 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c.obj 54463e9389efea0 -1187 1724 7923048004691007 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.c.obj c8d3a1d08a3040d4 -1141 1760 7923048004223975 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c.obj fd572b5c7192800 -1124 1768 7923048004055029 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c.obj 4794199779ac428e -1116 1746 7923048003976056 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.c.obj 15760851b50e55bb -1243 1870 7923048005244911 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj d88dd78ee860eaab -1201 1801 7923048004829720 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c.obj 8b2c422d8327b9eb -1238 1857 7923048005194466 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.c.obj c9a323517e2a5890 -1197 1901 7923048004787184 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c.obj af9b2dfbcef2122a -1192 1837 7923048004741435 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c.obj f0544ba21b6b59a6 -1322 1989 7923048006027160 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj 6442bf37ea9c7275 -1417 1934 7923048006982780 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c.obj 4e7d53824d53971a -1263 1914 7923048005450474 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj 3c64e0a1d0297ed8 -1364 1971 7923048006457217 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 892fab1d70844ff5 -1423 2114 7923048007046689 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj da85fd8d4a93b687 -1486 2099 7923048007670424 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj c49a5bb55e2babff -1724 2359 7923048010061412 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c.obj 4fed24b2595817ed -1718 2374 7923048009996015 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj 9dc0faa43c327fa4 -1746 2306 7923048010278875 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.c.obj 590e23077f3b9348 -1651 2279 7923048009336176 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj aed1b3adc593b6d6 -1857 2437 7923048011388978 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.c.obj c6cbc6f0dba48072 -1688 2342 7923048009694931 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj 421167a91f0d8c4a -1768 2416 7923048010498263 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c.obj 31a6ffa192936b1c -1760 2468 7923048010421301 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c.obj 48d13ff55094e14b -1801 2461 7923048010827842 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.c.obj 5833fd2b23c08fbb -1901 2456 7923048011826010 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c.obj ca7da2a388807265 -1837 2475 7923048011180714 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smbus.c.obj 5a7c8c8c851a69ef -2306 2525 7923048015879303 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dac.c.obj a54778e5108e8ae4 -2114 2363 7923048013964024 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj 50998ca7fabb9903 -2364 2535 7923048016452090 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c.obj 6447a34876204847 -2342 2576 7923048016235805 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c.obj 37cbfa07fbb26c18 -2279 2580 7923048015604398 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_crc.c.obj 4f8370cf146452ad -2462 2629 7923048017432505 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_i2c.c.obj fca8f577cc984d77 -1871 2512 7923048011518391 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj 1e10b83029952754 -2476 2596 7923048017576810 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_pwr.c.obj d7f8f8b7d246ba34 -2512 2714 7923048017940201 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c.obj aecc8901bb8350dd -2518 2708 7923048017999838 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rng.c.obj b9e9b184243348ba -2525 2730 7923048018064208 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rtc.c.obj a1336754039ab4b4 -2416 2658 7923048016982307 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmpi2c.c.obj 63ed7c03102d0ea1 -2580 2804 7923048018615984 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c.obj d85f4f868a0a06ad -2586 2794 7923048018669152 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usart.c.obj f8dd6b1d2ce943bf -2576 2799 7923048018575782 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c.obj e98c4b2b2c7d603e -1971 2623 7923048012529271 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj 6f157dcd5cf0df05 -2468 2585 7923048017499153 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_lptim.c.obj 26c473b0d770a33c -2374 2877 7923048016556775 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c.obj 36a7c0acd8d2cd5a -2618 2871 7923048019000025 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/clock.c.obj 75435b025e2868a9 -1934 2668 7923048012159716 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj 6fd30e36ceb4c47f -2359 2518 7923048016411474 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma2d.c.obj 3ced83f24c6147d0 -2457 2610 7923048017382829 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c.obj 8dfa52928938b44d -2629 2851 7923048019096606 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/cpu.c.obj 562cccc135990eb6 -2099 2663 7923048013801790 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_wwdg.c.obj b3749c088dd6291f -2623 2889 7923048019048393 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/components.c.obj 166b9d3638e62f2e -2663 2884 7923048019438044 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/idle.c.obj 1f9a1e802122aaf9 -1990 2618 7923048012720434 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c.obj 4b1d09a424db4d29 -2437 3016 7923048017194582 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c.obj 2ab8981c9d898a37 -1915 2719 7923048011963586 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj 2685d8e90bb9d5bf -2708 2977 7923048019895584 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/irq.c.obj f74905ca255238d6 -2719 2990 7923048020011235 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/mem.c.obj c702f077e74b418c -2730 2906 7923048020113101 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/memheap.c.obj 1a94e850b2781de1 -2821 3136 7923048021022836 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/signal.c.obj 1a2e8bc02b2d367d -2805 3199 7923048020857644 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/scheduler.c.obj 46baecb8af8850aa -2658 2820 7923048019391485 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/device.c.obj fe52a72b60a793b7 -2851 3092 7923048021334624 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/slab.c.obj 15a78fa3e394ce7b -2794 3203 7923048020755797 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/mempool.c.obj 7515345bdbfc9116 -2949 3096 7923048022305314 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_log.c.obj 4ff6ea1d61c147fb -2878 3236 7923048021595595 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/timer.c.obj 606e3f3ade10401c -2977 3352 7923048022582584 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mem.c.obj f256a478633bcd2d -2535 3039 7923048018158386 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c.obj 2a9a1aefe09ed02e -3039 3191 7923048023212532 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_sem.c.obj d1661090bb9ef5a -2906 3342 7923048021876514 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_irq.c.obj 509367ee7808c178 -2871 3143 7923048021524744 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/thread.c.obj 71a3438a99625ef4 -2990 3159 7923048022716377 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mq.c.obj 3efee89e5ef87631 -3087 3347 7923048023686446 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_timer.c.obj ff6c0f8dda2ff201 -2610 3112 7923048018921331 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.c.obj 95bcfcae853cb167 -3016 3152 7923048022983124 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mutex.c.obj 703ab8feef668a86 -2889 3087 7923048021703303 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_event.c.obj 6cb97f9fb9453ecd -2714 3044 7923048019960435 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/kservice.c.obj 883074ad13656e9 -2668 2949 7923048019484560 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/ipc.c.obj abf7c47a8c0bc2f7 -3045 3357 7923048023258227 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_thread.c.obj 1540becc86c77a32 -2884 3337 7923048021649810 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_core.c.obj 3cf33e14346500f1 -2799 3208 7923048020801683 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/object.c.obj 282b916c54a7e520 -2596 3168 7923048018773018 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj bda4bfa63da8e5d1 -4422 4547 7923048037034627 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f407xx.s.obj def0faec2571c85 -4432 4548 7923048037138338 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/libcpu/arm/cortex-m4/context_gcc.S.obj f182a1ab71ead9bf -4386 4530 7923048036682447 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/sys_arch.c.obj c76bb91cdcdcc4a7 -4427 4563 7923048037092485 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/libcpu/arm/cortex-m4/cpuport.c.obj 9344b12118f1440 -4406 4692 7923048036879784 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c.obj 635ab12c5509b5d -4381 4735 7923048036632281 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/drv_eth.c.obj f9d0508007c45d16 -3 343 7937933439875472 build.ninja 1bf701faaf99a9f5 -283 717 7923070850785504 rtthread-nano-stm32f407ve.elf 75a1489437366d05 -3112 3363 7923048023941637 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/err.c.obj afb75d425b50f9e9 -3143 3369 7923048024243764 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netbuf.c.obj 70c14cf595e75cbe -3208 3383 7923048024895741 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp_tcp.c.obj 73a81af36ca2d0c3 -3199 3388 7923048024805548 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp.c.obj a01e9f3c53444666 -3152 3393 7923048024339868 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netdb.c.obj 729b8df87d77cc78 -3092 3397 7923048023731975 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/api_lib.c.obj 654ff8b1f8c0f719 -3137 3409 7923048024183191 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/if_api.c.obj 711d802816741d98 -3159 3453 7923048024400737 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netifapi.c.obj 201690ec978d3bf1 -3096 3483 7923048023782776 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/api_msg.c.obj f53db7bcc40e3994 -3236 3494 7923048025168601 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/def.c.obj cb7608266d8b7454 -3203 3515 7923048024849663 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp_alloc.c.obj 13ad071df46343c2 -3191 3544 7923048024729924 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/tcpip.c.obj 62388740b31a3c49 -3363 3571 7923048026447876 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/autoip.c.obj 7c471e44b26a9ff1 -3342 3611 7923048026231231 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/inet_chksum.c.obj e548bd0aaf68842f -3352 3616 7923048026345071 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ip.c.obj 90d97fb2731e6dd6 -3168 3625 7923048024504984 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/sockets.c.obj 33e1f63b2e1d2c00 -3393 3631 7923048026736062 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/igmp.c.obj 108271646f8c7021 -3410 3636 7923048026907517 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4_addr.c.obj f589e0418e9936f8 -3369 3646 7923048026509269 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/dhcp.c.obj ca026138b3bdb04c -3495 3696 7923048027757567 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ethip6.c.obj fbbc2cd4718183aa -3483 3701 7923048027649383 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/dhcp6.c.obj 63e6da2d20806b53 -3515 3707 7923048027967221 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/icmp6.c.obj a7f09de9398d8adb -3337 3713 7923048026194178 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/dns.c.obj b06aee5aaa719706 -3453 3719 7923048027347671 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4_frag.c.obj e96d635675f8a52c -3571 3725 7923048028522606 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6.c.obj 748e64f12e617ae5 -3357 3733 7923048026390430 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/acd.c.obj 94e60c76ec87fb48 -3388 3752 7923048026700273 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/icmp.c.obj 28c42a1dbc2e46c -3397 3757 7923048026782240 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4.c.obj 52b492a19b0ea703 -3347 3763 7923048026292331 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/init.c.obj 9e6a477e678e050c -3383 3768 7923048026650500 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/etharp.c.obj 22282a1c03b5d97 -3631 3810 7923048029112224 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/nd6.c.obj 50d42a98ad82dd70 -3616 3815 7923048028982262 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6_frag.c.obj dc43690ca12bd5c1 -3625 3820 7923048029070449 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/mld6.c.obj a43a9514fa0b6113 -3544 3824 7923048028249871 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/inet6.c.obj d9223f9feea70fcd -3611 3855 7923048028928718 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6_addr.c.obj cacc888a452fc8a4 -3636 3866 7923048029176854 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/mem.c.obj d4aa79df81cc5e6a -3646 3940 7923048029272370 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/memp.c.obj 144625baf787c249 -3713 3983 7923048029951906 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/stats.c.obj e913f73f793179f5 -3719 3997 7923048030009047 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/sys.c.obj 13279b10f44756e -3696 4027 7923048029775022 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/netif.c.obj 580e36e161d6950e -3701 4032 7923048029833837 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/pbuf.c.obj d355af7d824fc99f -3707 4037 7923048029885929 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/raw.c.obj b63d4f0d0477ff1e -3768 4054 7923048030489121 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/bridgeif.c.obj ea9d036732f48bf4 -3757 4073 7923048030389591 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/timeouts.c.obj 39a11e74360ce5e9 -3763 4077 7923048030446196 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/udp.c.obj 1035d946805bbda2 -3752 4095 7923048030328766 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp_out.c.obj e47e19b2db20970e -3855 4110 7923048031370401 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6_common.c.obj b97d708f02705aa1 -3815 4115 7923048030969324 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ethernet.c.obj 46e4b1db856f4abe -3820 4129 7923048031018555 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6.c.obj 9315b81429ae0671 -3810 4133 7923048030922791 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/bridgeif_fdb.c.obj 6f07c80c0ad8ff78 -3825 4138 7923048031065404 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6_ble.c.obj 34c38e9d19e53043 -3725 4164 7923048030066099 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp.c.obj 6e4e41e56dbe5844 -3733 4181 7923048030152665 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp_in.c.obj 82728f203100f04c -3940 4185 7923048032212140 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ccp.c.obj de4fe8962b6036de -3866 4190 7923048031469828 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/auth.c.obj ff8a5d095673156c -3983 4200 7923048032645468 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap-md5.c.obj d545ade2e8d55a0f -3997 4214 7923048032784116 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap-new.c.obj 8887475f948dec1d -4028 4243 7923048033089027 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap_ms.c.obj e9dea8de70762fd4 -4033 4251 7923048033146501 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/demand.c.obj 7f9e783cc1e443b -4038 4260 7923048033190908 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/eap.c.obj 7c751126dd2ab833 -4073 4271 7923048033545226 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/eui64.c.obj 5db9bc6a6f350963 -4054 4280 7923048033358811 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ecp.c.obj fb8eb68674bc93c7 -4077 4285 7923048033591040 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/fsm.c.obj 3d7d59ada644d9fa -4095 4300 7923048033763504 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ipcp.c.obj 677d81f01d8ef546 -4133 4315 7923048034145571 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/mppe.c.obj 8ceb4b58e294402c -4138 4354 7923048034200921 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/multilink.c.obj 62c56122bb65ed6c -4110 4377 7923048033914583 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ipv6cp.c.obj d9b366fc2ac5290a -4129 4381 7923048034104290 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/magic.c.obj 4c90c1cacd25abab -4115 4386 7923048033967179 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/lcp.c.obj c958349e003fdc58 -4164 4406 7923048034457033 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/arc4.c.obj 69ab292aa02e24d3 -4261 4422 7923048035424438 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppoe.c.obj d3b8c2433707c7a0 -4251 4427 7923048035325333 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppcrypt.c.obj eeaff152eef09c5e -4214 4432 7923048034956726 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ppp.c.obj 95dbda436ddc1a4 -4185 4439 7923048034656833 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/md4.c.obj 8494b18a789cfd30 -4200 4450 7923048034803315 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/sha1.c.obj c205d93ec22541b1 -4315 4459 7923048035977039 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/vj.c.obj a3748ae2776c2ad3 -4190 4462 7923048034719046 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/md5.c.obj 4ef8a1fb3ec0b466 -4181 4478 7923048034626185 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/des.c.obj c6da4b61f39ddc77 -4300 4486 7923048035815996 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/utils.c.obj 25c805149a1e51f9 -4285 4487 7923048035667117 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/upap.c.obj ba551349020d2236 -4243 4488 7923048035237415 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppapi.c.obj a011cbcb2449c13b -4280 4489 7923048035619041 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppos.c.obj 3b3abea33c130cbb -4271 4490 7923048035530395 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppol2tp.c.obj fbb6264d9812bc92 -4377 4514 7923048036586509 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/zepif.c.obj b6fafc051f5cffbb -4354 4575 7923048036356621 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/slipif.c.obj b7d9d13d727cacbb +45 562 7937943405577823 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c.obj ec32bd437e5ff2d3 +41 670 7937943405547544 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj 7b67b62763d73b0b +18 526 7937943405315768 CMakeFiles/rtthread-nano-stm32f407ve.dir/board/stm32f407ve/board.c.obj 74cec99e8c18b81a +34 540 7937943405481906 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c.obj 998e3b769e20291a +53 589 7937943405663630 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj a7d9f780effb07df +15 628 7937943405275514 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 +22 443 7937943405351001 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj d942fdfe26c0d22f +87 583 7937943406005456 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c.obj 9b6e4b8841be52d6 +38 530 7937943405517193 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 3b3fc39cb4c31c4d +25 535 7937943405381189 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj 5a35ce9c62bb54e7 +29 545 7937943405421438 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj de7cbcf09b649b3a +56 717 7937943405704226 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj 5ee8fb7465f9c646 +62 743 7937943405759373 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c.obj d7f242ef67e4ba09 +71 597 7937943405840151 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c.obj b5647a7d35e62b49 +80 622 7937943405937486 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 3e9bfbe40b51c2a6 +31 555 7937943405451690 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj 67d1b5447555fae5 +49 550 7937943405623258 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.c.obj 9b8790b0c4eb4b07 +67 615 7937943405802706 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.c.obj 8ddcdd0f3f02bb40 +551 1140 7937943410639397 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 22f6f9375d39f151 +589 1119 7937943411022387 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpsmbus_ex.c.obj 757d6c374d1b319d +530 1263 7937943410441159 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj a6dce94af40a267 +526 1129 7937943410384115 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c.obj 81ba010cfd89e4b1 +615 1150 7937943411290717 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c.obj 4db31717a34b706 +545 1135 7937943410592950 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj fb2b7a54d14ec5f9 +597 1212 7937943411102449 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj 1f1eac1996d52611 +535 1145 7937943410482158 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj bac3a78877e87962 +540 1087 7937943410539647 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 22e34c6a32015555 +562 1114 7937943410754664 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.c.obj 9d7e51ba68c30cd4 +555 1168 7937943410684670 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.c.obj bf384bc8a53e2f45 +584 1163 7937943410975178 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpsmbus.c.obj 23a425d7528b6900 +444 1078 7937943409576320 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj efc21410ae6079c4 +622 1159 7937943411353093 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.c.obj 7edf1ba198e39bf1 +628 1331 7937943411406617 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c.obj 3dd3ef8f43a8eead +717 1292 7937943412303850 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj f6feb20988a7ae46 +744 1490 7937943412572179 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c.obj 6903465607745954 +670 1546 7937943411831195 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj a3eec757a8e46d2 +1129 1719 7937943416419550 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c.obj a8b40b715887a0c4 +1115 1733 7937943416276491 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c.obj 54463e9389efea0 +1135 1674 7937943416481653 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.c.obj c8d3a1d08a3040d4 +1119 1669 7937943416331642 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c.obj fd572b5c7192800 +1087 1738 7937943416000611 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c.obj 4794199779ac428e +1078 1658 7937943415914167 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.c.obj 15760851b50e55bb +1163 1920 7937943416764421 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj d88dd78ee860eaab +1150 1710 7937943416631590 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c.obj 8b2c422d8327b9eb +1159 1750 7937943416718367 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.c.obj c9a323517e2a5890 +1145 1745 7937943416583148 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c.obj af9b2dfbcef2122a +1140 1822 7937943416532619 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c.obj f0544ba21b6b59a6 +1212 1799 7937943417251377 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj 6442bf37ea9c7275 +1293 1926 7937943418060071 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c.obj 4e7d53824d53971a +1168 1679 7937943416809572 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj 3c64e0a1d0297ed8 +1263 1858 7937943417767785 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 892fab1d70844ff5 +1331 2052 7937943418437808 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj da85fd8d4a93b687 +1490 2159 7937943420033718 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj c49a5bb55e2babff +1674 2222 7937943421879563 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c.obj 4fed24b2595817ed +1669 2431 7937943421819521 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj 9dc0faa43c327fa4 +1680 2317 7937943421929894 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.c.obj 590e23077f3b9348 +1546 2147 7937943420599468 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj aed1b3adc593b6d6 +1745 2403 7937943422582797 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.c.obj c6cbc6f0dba48072 +1658 2275 7937943421713842 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj 421167a91f0d8c4a +1719 2498 7937943422325760 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c.obj 31a6ffa192936b1c +1710 2398 7937943422231533 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c.obj 48d13ff55094e14b +1733 2376 7937943422457883 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.c.obj 5833fd2b23c08fbb +1799 2555 7937943423125912 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c.obj ca7da2a388807265 +1738 2505 7937943422511356 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smbus.c.obj 5a7c8c8c851a69ef +2222 2564 7937943427355138 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dac.c.obj a54778e5108e8ae4 +2147 2492 7937943426613820 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj 50998ca7fabb9903 +2376 2611 7937943428887869 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c.obj 6447a34876204847 +2275 2550 7937943427882690 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c.obj 37cbfa07fbb26c18 +2159 2487 7937943426731093 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_crc.c.obj 4f8370cf146452ad +2492 2694 7937943430064703 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_i2c.c.obj fca8f577cc984d77 +1750 2570 7937943422632927 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj 1e10b83029952754 +2505 2734 7937943430188828 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_pwr.c.obj d7f8f8b7d246ba34 +2550 2767 7937943430633068 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c.obj aecc8901bb8350dd +2555 2729 7937943430682538 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rng.c.obj b9e9b184243348ba +2560 2748 7937943430731692 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rtc.c.obj a1336754039ab4b4 +2403 2663 7937943429165942 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmpi2c.c.obj 63ed7c03102d0ea1 +2611 2827 7937943431243126 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c.obj d85f4f868a0a06ad +2659 2831 7937943431725650 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usart.c.obj f8dd6b1d2ce943bf +2570 2739 7937943430827803 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c.obj e98c4b2b2c7d603e +1920 2689 7937943424330727 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj 6f157dcd5cf0df05 +2498 2680 7937943430123510 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_lptim.c.obj 26c473b0d770a33c +2398 2940 7937943429111032 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c.obj 36a7c0acd8d2cd5a +2676 2876 7937943431892159 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/clock.c.obj 75435b025e2868a9 +1858 2671 7937943423711383 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj 6fd30e36ceb4c47f +2317 2560 7937943428300785 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma2d.c.obj 3ced83f24c6147d0 +2488 2685 7937943430008517 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c.obj 8dfa52928938b44d +2685 2898 7937943431985684 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/cpu.c.obj 562cccc135990eb6 +2052 2659 7937943425654562 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_wwdg.c.obj b3749c088dd6291f +2680 2945 7937943431939967 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/components.c.obj 166b9d3638e62f2e +2694 2883 7937943432066655 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/idle.c.obj 1f9a1e802122aaf9 +1926 2676 7937943424399292 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c.obj 4b1d09a424db4d29 +2431 2989 7937943429451849 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c.obj 2ab8981c9d898a37 +1822 2818 7937943423352340 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj 2685d8e90bb9d5bf +2734 2971 7937943432477736 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/irq.c.obj f74905ca255238d6 +2748 3101 7937943432609157 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/mem.c.obj c702f077e74b418c +2767 2976 7937943432807028 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/memheap.c.obj 1a94e850b2781de1 +2876 3182 7937943433893748 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/signal.c.obj 1a2e8bc02b2d367d +2831 3065 7937943433451293 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/scheduler.c.obj 46baecb8af8850aa +2689 2981 7937943432030052 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/device.c.obj fe52a72b60a793b7 +2883 3060 7937943433971215 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/slab.c.obj 15a78fa3e394ce7b +2818 3052 7937943433321056 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/mempool.c.obj 7515345bdbfc9116 +2981 3169 7937943434938332 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_log.c.obj 4ff6ea1d61c147fb +2940 3157 7937943434538191 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/timer.c.obj 606e3f3ade10401c +2989 3269 7937943435023886 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mem.c.obj f256a478633bcd2d +2564 3030 7937943430779529 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c.obj 2a9a1aefe09ed02e +3061 3213 7937943435737724 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_sem.c.obj d1661090bb9ef5a +2976 3123 7937943434902908 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_irq.c.obj 509367ee7808c178 +2898 3109 7937943434110295 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/thread.c.obj 71a3438a99625ef4 +3030 3301 7937943435429277 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mq.c.obj 3efee89e5ef87631 +3070 3251 7937943435831028 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_timer.c.obj ff6c0f8dda2ff201 +2671 3187 7937943431846643 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.c.obj 95bcfcae853cb167 +3052 3264 7937943435647442 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mutex.c.obj 703ab8feef668a86 +2971 3178 7937943434851171 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_event.c.obj 6cb97f9fb9453ecd +2739 3070 7937943432519340 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/kservice.c.obj 883074ad13656e9 +2729 3094 7937943432424002 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/ipc.c.obj abf7c47a8c0bc2f7 +3065 3311 7937943435783173 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_thread.c.obj 1540becc86c77a32 +2945 3244 7937943434580050 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_core.c.obj 3cf33e14346500f1 +2827 3145 7937943433406067 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/object.c.obj 282b916c54a7e520 +2663 3295 7937943431767585 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj bda4bfa63da8e5d1 +4462 4577 7937943449761637 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f407xx.s.obj def0faec2571c85 +4472 4588 7937943449857625 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/libcpu/arm/cortex-m4/context_gcc.S.obj f182a1ab71ead9bf +4422 4643 7937943449355693 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/sys_arch.c.obj c76bb91cdcdcc4a7 +4467 4640 7937943449807137 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/libcpu/arm/cortex-m4/cpuport.c.obj 9344b12118f1440 +4427 4771 7937943449399250 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c.obj 635ab12c5509b5d +4418 4803 7937943449310673 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/drv_eth.c.obj f9d0508007c45d16 28 247 7937933439875472 build.ninja 1bf701faaf99a9f5 -39 492 7937933441163272 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c.obj 998e3b769e20291a -42 543 7937933441201695 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 3b3fc39cb4c31c4d -28 548 7937933441053168 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj d942fdfe26c0d22f -34 552 7937933441115148 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj de7cbcf09b649b3a -50 557 7937933441272353 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c.obj ec32bd437e5ff2d3 -72 562 7937933441491653 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c.obj b5647a7d35e62b49 -25 568 7937933441022091 CMakeFiles/rtthread-nano-stm32f407ve.dir/board/stm32f407ve/board.c.obj 74cec99e8c18b81a -53 573 7937933441307688 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.c.obj 9b8790b0c4eb4b07 -31 579 7937933441083963 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj 5a35ce9c62bb54e7 -46 601 7937933441231957 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj 7b67b62763d73b0b -60 612 7937933441373323 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj 5ee8fb7465f9c646 -76 620 7937933441533776 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 3e9bfbe40b51c2a6 -80 625 7937933441574368 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c.obj 9b6e4b8841be52d6 -57 630 7937933441339503 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj a7d9f780effb07df -64 635 7937933441421681 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c.obj d7f242ef67e4ba09 -22 640 7937933440991320 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 -36 648 7937933441131156 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj 67d1b5447555fae5 -68 676 7937933441444251 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.c.obj 8ddcdd0f3f02bb40 -543 1100 7937933446204803 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c.obj 81ba010cfd89e4b1 -493 1119 7937933445703813 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj efc21410ae6079c4 -557 1148 7937933446350032 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 22e34c6a32015555 -612 1153 7937933446899899 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpsmbus_ex.c.obj 757d6c374d1b319d -648 1158 7937933447253075 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj f6feb20988a7ae46 -580 1167 7937933446579775 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.c.obj 9d7e51ba68c30cd4 -625 1172 7937933447027620 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c.obj 4db31717a34b706 -573 1177 7937933446505445 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.c.obj bf384bc8a53e2f45 -568 1182 7937933446455447 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 22f6f9375d39f151 -563 1187 7937933446401395 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj fb2b7a54d14ec5f9 -553 1219 7937933446300037 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj bac3a78877e87962 -602 1225 7937933446785587 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpsmbus.c.obj 23a425d7528b6900 -620 1231 7937933446976962 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj 1f1eac1996d52611 -548 1263 7937933446250021 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj a6dce94af40a267 -630 1291 7937933447073104 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.c.obj 7edf1ba198e39bf1 -635 1337 7937933447130013 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c.obj 3dd3ef8f43a8eead -676 1352 7937933447534883 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c.obj 6903465607745954 -640 1568 7937933447172621 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj a3eec757a8e46d2 -1154 1727 7937933452313628 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c.obj fd572b5c7192800 -1100 1745 7937933451771425 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.c.obj 15760851b50e55bb -1187 1751 7937933452644647 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.c.obj c9a323517e2a5890 -1182 1763 7937933452600408 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c.obj 8b2c422d8327b9eb -1149 1768 7937933452264091 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c.obj 54463e9389efea0 -1172 1779 7937933452499952 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c.obj f0544ba21b6b59a6 -1119 1784 7937933451961786 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c.obj 4794199779ac428e -1158 1790 7937933452359201 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c.obj a8b40b715887a0c4 -1168 1807 7937933452448860 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.c.obj c8d3a1d08a3040d4 -1225 1826 7937933453025523 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj 3c64e0a1d0297ed8 -1263 1879 7937933453408973 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 892fab1d70844ff5 -1232 1898 7937933453091265 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj 6442bf37ea9c7275 -1220 1929 7937933452969207 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj d88dd78ee860eaab -1291 1935 7937933453689573 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c.obj 4e7d53824d53971a -1177 1944 7937933452544563 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c.obj af9b2dfbcef2122a -1352 2134 7937933454292007 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj c49a5bb55e2babff -1337 2145 7937933454144198 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj da85fd8d4a93b687 -1568 2290 7937933456458129 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj aed1b3adc593b6d6 -1751 2344 7937933458277873 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c.obj 4fed24b2595817ed -1745 2378 7937933458230843 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj 9dc0faa43c327fa4 -1727 2383 7937933458047429 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj 421167a91f0d8c4a -1779 2388 7937933458563429 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c.obj 31a6ffa192936b1c -1808 2403 7937933458851805 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.c.obj c6cbc6f0dba48072 -2145 2423 7937933462233633 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj 50998ca7fabb9903 -1763 2434 7937933458411575 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.c.obj 590e23077f3b9348 -1790 2439 7937933458679114 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smbus.c.obj 5a7c8c8c851a69ef -1784 2499 7937933458618350 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.c.obj 5833fd2b23c08fbb -1769 2514 7937933458462421 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c.obj 48d13ff55094e14b -1879 2541 7937933459570175 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c.obj ca7da2a388807265 -2345 2559 7937933464224197 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dac.c.obj a54778e5108e8ae4 -2291 2567 7937933463672503 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_crc.c.obj 4f8370cf146452ad -1944 2573 7937933460213249 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c.obj 4b1d09a424db4d29 -2388 2581 7937933464649503 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c.obj 6447a34876204847 -2383 2592 7937933464611049 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma2d.c.obj 3ced83f24c6147d0 -1826 2619 7937933459032994 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj 1e10b83029952754 -2378 2623 7937933464559374 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c.obj 37cbfa07fbb26c18 -1929 2668 7937933460062235 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj 6fd30e36ceb4c47f -2423 2677 7937933465005468 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmpi2c.c.obj 63ed7c03102d0ea1 -2439 2687 7937933465168568 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c.obj 8dfa52928938b44d -1936 2699 7937933460133233 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj 6f157dcd5cf0df05 -2499 2714 7937933465764797 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_i2c.c.obj fca8f577cc984d77 -2592 2721 7937933466701516 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c.obj e98c4b2b2c7d603e -2514 2731 7937933465910266 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_lptim.c.obj 26c473b0d770a33c -2573 2741 7937933466496149 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rtc.c.obj a1336754039ab4b4 -2567 2745 7937933466449080 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rng.c.obj b9e9b184243348ba -2559 2762 7937933466360364 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c.obj aecc8901bb8350dd -1898 2767 7937933459762659 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj 2685d8e90bb9d5bf -2541 2772 7937933466178112 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_pwr.c.obj d7f8f8b7d246ba34 -2623 2788 7937933467005252 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usart.c.obj f8dd6b1d2ce943bf -2619 2799 7937933466961014 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c.obj d85f4f868a0a06ad -2434 2929 7937933465118518 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c.obj 2ab8981c9d898a37 -2714 2959 7937933467908337 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/cpu.c.obj 562cccc135990eb6 -2699 2976 7937933467762182 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/components.c.obj 166b9d3638e62f2e -2688 3007 7937933467655578 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/clock.c.obj 75435b025e2868a9 -2745 3012 7937933468229086 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/irq.c.obj f74905ca255238d6 -2403 3016 7937933464804157 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c.obj 36a7c0acd8d2cd5a -2732 3021 7937933468086874 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/idle.c.obj 1f9a1e802122aaf9 -2767 3031 7937933468446261 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/mem.c.obj c702f077e74b418c -2721 3053 7937933467980487 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/device.c.obj fe52a72b60a793b7 -2772 3077 7937933468493153 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/memheap.c.obj 1a94e850b2781de1 -2762 3105 7937933468387864 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/kservice.c.obj 883074ad13656e9 -2799 3110 7937933468758823 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/object.c.obj 282b916c54a7e520 -2741 3114 7937933468173505 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/ipc.c.obj abf7c47a8c0bc2f7 -2789 3141 7937933468661003 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/mempool.c.obj 7515345bdbfc9116 -2582 3181 7937933466587476 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c.obj 2a9a1aefe09ed02e -2976 3187 7937933470532723 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/slab.c.obj 15a78fa3e394ce7b -2959 3199 7937933470368767 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/signal.c.obj 1a2e8bc02b2d367d -3032 3206 7937933471078722 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_irq.c.obj 509367ee7808c178 -3007 3211 7937933470849797 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/thread.c.obj 71a3438a99625ef4 -2929 3243 7937933470064487 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/scheduler.c.obj 46baecb8af8850aa -3053 3271 7937933471310542 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_log.c.obj 4ff6ea1d61c147fb -2678 3278 7937933467551159 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.c.obj 95bcfcae853cb167 -3012 3284 7937933470896251 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/src/timer.c.obj 606e3f3ade10401c -3077 3289 7937933471537942 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mem.c.obj f256a478633bcd2d -3021 3295 7937933470983786 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_event.c.obj 6cb97f9fb9453ecd -2669 3310 7937933467460233 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj bda4bfa63da8e5d1 -3017 3362 7937933470944229 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_core.c.obj 3cf33e14346500f1 -3115 3368 7937933471921696 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_sem.c.obj d1661090bb9ef5a -3110 3394 7937933471875999 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mutex.c.obj 703ab8feef668a86 -3142 3399 7937933472193327 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_thread.c.obj 1540becc86c77a32 -3181 3443 7937933472582711 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_timer.c.obj ff6c0f8dda2ff201 -3105 3448 7937933471813963 CMakeFiles/rtthread-nano-stm32f407ve.dir/osal/src/rtthread/osal_mq.c.obj 3efee89e5ef87631 -3206 3541 7937933472834530 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/err.c.obj afb75d425b50f9e9 -3187 3624 7937933472649174 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/api_lib.c.obj 654ff8b1f8c0f719 -3211 3632 7937933472884895 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/if_api.c.obj 711d802816741d98 -3278 3642 7937933473554438 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netifapi.c.obj 201690ec978d3bf1 -3243 3647 7937933473199936 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netbuf.c.obj 70c14cf595e75cbe -3295 3667 7937933473718294 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp.c.obj a01e9f3c53444666 -3271 3735 7937933473480988 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netdb.c.obj 729b8df87d77cc78 -3368 3742 7937933474459468 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/def.c.obj cb7608266d8b7454 -3362 3751 7937933474393929 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp_tcp.c.obj 73a81af36ca2d0c3 -3448 3756 7937933475250526 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ip.c.obj 90d97fb2731e6dd6 -3199 3761 7937933472764738 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/api_msg.c.obj f53db7bcc40e3994 -3400 3769 7937933474766379 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/inet_chksum.c.obj e548bd0aaf68842f -3311 3774 7937933473875456 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp_alloc.c.obj 13ad071df46343c2 -3289 3793 7937933473670838 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/tcpip.c.obj 62388740b31a3c49 -3443 3823 7937933475193794 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/init.c.obj 9e6a477e678e050c -3624 3844 7937933477017280 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/autoip.c.obj 7c471e44b26a9ff1 -3541 3852 7937933476178221 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/acd.c.obj 94e60c76ec87fb48 -3394 3856 7937933474714325 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/dns.c.obj b06aee5aaa719706 -3284 3862 7937933473620331 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/sockets.c.obj 33e1f63b2e1d2c00 -3647 3927 7937933477249158 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/icmp.c.obj 28c42a1dbc2e46c -3667 3968 7937933477441956 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/igmp.c.obj 108271646f8c7021 -3642 3988 7937933477193269 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/etharp.c.obj 22282a1c03b5d97 -3756 4040 7937933478335576 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/dhcp6.c.obj 63e6da2d20806b53 -3761 4044 7937933478390283 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ethip6.c.obj fbbc2cd4718183aa -3742 4049 7937933478194272 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4_addr.c.obj f589e0418e9936f8 -3632 4054 7937933477093621 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/dhcp.c.obj ca026138b3bdb04c -3823 4059 7937933479010418 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6_addr.c.obj cacc888a452fc8a4 -3852 4065 7937933479289774 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/mld6.c.obj a43a9514fa0b6113 -3774 4096 7937933478514983 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/inet6.c.obj d9223f9feea70fcd -3735 4101 7937933478122506 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4.c.obj 52b492a19b0ea703 -3769 4105 7937933478467418 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/icmp6.c.obj a7f09de9398d8adb -3751 4110 7937933478278154 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4_frag.c.obj e96d635675f8a52c -3863 4115 7937933479399563 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/mem.c.obj d4aa79df81cc5e6a -3844 4161 7937933479210445 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6_frag.c.obj dc43690ca12bd5c1 -3856 4183 7937933479337454 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/nd6.c.obj 50d42a98ad82dd70 -3793 4210 7937933478708034 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6.c.obj 748e64f12e617ae5 -3927 4388 7937933480049895 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/memp.c.obj 144625baf787c249 -3989 4393 7937933480663253 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/pbuf.c.obj d355af7d824fc99f -4045 4401 7937933481223200 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/stats.c.obj e913f73f793179f5 -3968 4406 7937933480458712 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/netif.c.obj 580e36e161d6950e -4049 4410 7937933481268734 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/sys.c.obj 13279b10f44756e -4040 4442 7937933481174696 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/raw.c.obj b63d4f0d0477ff1e -4162 4461 7937933482389774 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6.c.obj 9315b81429ae0671 -4105 4489 7937933481830332 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/bridgeif.c.obj ea9d036732f48bf4 -4054 4494 7937933481315027 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp.c.obj 6e4e41e56dbe5844 -4096 4504 7937933481743421 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/timeouts.c.obj 39a11e74360ce5e9 -4059 4513 7937933481364408 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp_in.c.obj 82728f203100f04c -4210 4551 7937933482878516 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6_common.c.obj b97d708f02705aa1 -4401 4594 7937933484783236 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap-md5.c.obj d545ade2e8d55a0f -4394 4599 7937933484704212 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ccp.c.obj de4fe8962b6036de -4115 4604 7937933481917219 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ethernet.c.obj 46e4b1db856f4abe -4410 4609 7937933484877317 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap_ms.c.obj e9dea8de70762fd4 -4110 4615 7937933481871394 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/bridgeif_fdb.c.obj 6f07c80c0ad8ff78 -4065 4620 7937933481427006 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp_out.c.obj e47e19b2db20970e -4101 4625 7937933481773915 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/udp.c.obj 1035d946805bbda2 -4461 4660 7937933485390326 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/eap.c.obj 7c751126dd2ab833 -4183 4671 7937933482609651 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6_ble.c.obj 34c38e9d19e53043 -4504 4692 7937933485811443 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/fsm.c.obj 3d7d59ada644d9fa -4490 4698 7937933485671490 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ecp.c.obj fb8eb68674bc93c7 -4406 4723 7937933484836759 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap-new.c.obj 8887475f948dec1d -4494 4729 7937933485721929 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/eui64.c.obj 5db9bc6a6f350963 -4514 4752 7937933485914952 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ipcp.c.obj 677d81f01d8ef546 -4388 4758 7937933484650596 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/auth.c.obj ff8a5d095673156c -4443 4763 7937933485196001 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/demand.c.obj 7f9e783cc1e443b -4610 4803 7937933486873923 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/multilink.c.obj 62c56122bb65ed6c -4625 4808 7937933487020833 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/md4.c.obj 8494b18a789cfd30 -4595 4830 7937933486720210 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/lcp.c.obj c958349e003fdc58 -4660 4836 7937933487372359 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/md5.c.obj 4ef8a1fb3ec0b466 -4551 4841 7937933486287160 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ipv6cp.c.obj d9b366fc2ac5290a -4604 4846 7937933486823058 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/mppe.c.obj 8ceb4b58e294402c -4729 4885 7937933488069253 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppoe.c.obj d3b8c2433707c7a0 -4692 4890 7937933487703471 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ppp.c.obj 95dbda436ddc1a4 -4620 4896 7937933486979781 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/des.c.obj c6da4b61f39ddc77 -4599 4911 7937933486770228 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/magic.c.obj 4c90c1cacd25abab -4699 4945 7937933487763196 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppapi.c.obj a011cbcb2449c13b -4671 4950 7937933487484850 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/sha1.c.obj c205d93ec22541b1 -4723 4950 7937933488008576 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppcrypt.c.obj eeaff152eef09c5e -4615 4953 7937933486914854 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/arc4.c.obj 69ab292aa02e24d3 -4753 4954 7937933488304600 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppol2tp.c.obj fbb6264d9812bc92 -4763 4998 7937933488397229 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/upap.c.obj ba551349020d2236 -4803 5000 7937933488796979 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/utils.c.obj 25c805149a1e51f9 -4758 5006 7937933488358513 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppos.c.obj 3b3abea33c130cbb -4808 5011 7937933488846453 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/vj.c.obj a3748ae2776c2ad3 -4891 5020 7937933489684520 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f407xx.s.obj def0faec2571c85 -4837 5025 7937933489130135 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/zepif.c.obj b6fafc051f5cffbb -4911 5042 7937933489886330 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/libcpu/arm/cortex-m4/context_gcc.S.obj f182a1ab71ead9bf -4846 5050 7937933489235409 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/sys_arch.c.obj c76bb91cdcdcc4a7 -4830 5061 7937933489076437 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/slipif.c.obj b7d9d13d727cacbb -4896 5075 7937933489738536 CMakeFiles/rtthread-nano-stm32f407ve.dir/rt-thread/libcpu/arm/cortex-m4/cpuport.c.obj 9344b12118f1440 -4841 5260 7937933489184612 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/drv_eth.c.obj f9d0508007c45d16 -4885 5278 7937933489624381 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c.obj 635ab12c5509b5d -2134 6002 7937933462117236 CMakeFiles/rtthread-nano-stm32f407ve.dir/drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_wwdg.c.obj b3749c088dd6291f -6002 6717 7937933500791765 rtthread-nano-stm32f407ve.elf 75a1489437366d05 -7 281 7937934223011847 CMakeFiles/rtthread-nano-stm32f407ve.dir/board/stm32f407ve/board.c.obj 74cec99e8c18b81a -282 857 7937934225745431 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +4803 5303 7937943453162385 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +3109 3346 7937943436234330 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/err.c.obj afb75d425b50f9e9 +3145 3517 7937943436586156 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netbuf.c.obj 70c14cf595e75cbe +3244 3591 7937943437574267 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp_tcp.c.obj 73a81af36ca2d0c3 +3187 3506 7937943437002677 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp.c.obj a01e9f3c53444666 +3157 3422 7937943436699700 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netdb.c.obj 729b8df87d77cc78 +3094 3463 7937943436081524 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/api_lib.c.obj 654ff8b1f8c0f719 +3123 3468 7937943436370828 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/if_api.c.obj 711d802816741d98 +3169 3528 7937943436830914 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/netifapi.c.obj 201690ec978d3bf1 +3101 3522 7937943436153446 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/api_msg.c.obj f53db7bcc40e3994 +3252 3565 7937943437649682 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/def.c.obj cb7608266d8b7454 +3213 3442 7937943437264962 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/altcp_alloc.c.obj 13ad071df46343c2 +3182 3546 7937943436945487 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/tcpip.c.obj 62388740b31a3c49 +3347 3634 7937943438593594 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/autoip.c.obj 7c471e44b26a9ff1 +3269 3617 7937943437828460 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/inet_chksum.c.obj e548bd0aaf68842f +3301 3580 7937943438148177 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ip.c.obj 90d97fb2731e6dd6 +3178 3704 7937943436913319 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/api/sockets.c.obj 33e1f63b2e1d2c00 +3468 3692 7937943439814008 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/igmp.c.obj 108271646f8c7021 +3517 3841 7937943440308459 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4_addr.c.obj f589e0418e9936f8 +3422 3966 7937943439348020 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/dhcp.c.obj ca026138b3bdb04c +3546 3778 7937943440592803 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ethip6.c.obj fbbc2cd4718183aa +3529 3699 7937943440415156 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/dhcp6.c.obj 63e6da2d20806b53 +3565 3773 7937943440783907 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/icmp6.c.obj a7f09de9398d8adb +3265 3627 7937943437779934 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/dns.c.obj b06aee5aaa719706 +3522 3895 7937943440349092 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4_frag.c.obj e96d635675f8a52c +3591 3887 7937943441045450 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6.c.obj 748e64f12e617ae5 +3312 3728 7937943438250363 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/acd.c.obj 94e60c76ec87fb48 +3463 3847 7937943439763551 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/icmp.c.obj 28c42a1dbc2e46c +3506 3763 7937943440191939 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/ip4.c.obj 52b492a19b0ea703 +3295 3639 7937943438079853 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/init.c.obj 9e6a477e678e050c +3442 3783 7937943439554864 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv4/etharp.c.obj 22282a1c03b5d97 +3640 3943 7937943441531756 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/nd6.c.obj 50d42a98ad82dd70 +3627 3816 7937943441404415 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6_frag.c.obj dc43690ca12bd5c1 +3634 4029 7937943441465594 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/mld6.c.obj a43a9514fa0b6113 +3580 3792 7937943440940024 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/inet6.c.obj d9223f9feea70fcd +3617 3938 7937943441300433 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/ipv6/ip6_addr.c.obj cacc888a452fc8a4 +3692 3923 7937943442060080 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/mem.c.obj d4aa79df81cc5e6a +3699 4047 7937943442123946 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/memp.c.obj 144625baf787c249 +3773 4043 7937943442872552 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/stats.c.obj e913f73f793179f5 +3778 4038 7937943442910680 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/sys.c.obj 13279b10f44756e +3704 4034 7937943442172623 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/netif.c.obj 580e36e161d6950e +3728 4052 7937943442423669 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/pbuf.c.obj d355af7d824fc99f +3763 4024 7937943442769207 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/raw.c.obj b63d4f0d0477ff1e +3887 4206 7937943444011597 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/bridgeif.c.obj ea9d036732f48bf4 +3841 4110 7937943443547199 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/timeouts.c.obj 39a11e74360ce5e9 +3847 4128 7937943443603323 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/udp.c.obj 1035d946805bbda2 +3816 4233 7937943443296679 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp_out.c.obj e47e19b2db20970e +3966 4224 7937943444795779 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6_common.c.obj b97d708f02705aa1 +3923 4201 7937943444356572 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ethernet.c.obj 46e4b1db856f4abe +3938 4146 7937943444512935 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6.c.obj 9315b81429ae0671 +3895 4219 7937943444082410 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/bridgeif_fdb.c.obj 6f07c80c0ad8ff78 +3943 4191 7937943444564732 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/lowpan6_ble.c.obj 34c38e9d19e53043 +3783 4091 7937943442958122 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp.c.obj 6e4e41e56dbe5844 +3792 4195 7937943443054961 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/core/tcp_in.c.obj 82728f203100f04c +4029 4291 7937943445430023 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ccp.c.obj de4fe8962b6036de +4024 4240 7937943445381032 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/auth.c.obj ff8a5d095673156c +4034 4336 7937943445475490 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap-md5.c.obj d545ade2e8d55a0f +4038 4229 7937943445520992 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap-new.c.obj 8887475f948dec1d +4043 4341 7937943445555732 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/chap_ms.c.obj e9dea8de70762fd4 +4047 4300 7937943445603482 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/demand.c.obj 7f9e783cc1e443b +4052 4286 7937943445649475 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/eap.c.obj 7c751126dd2ab833 +4110 4296 7937943446243194 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/eui64.c.obj 5db9bc6a6f350963 +4091 4245 7937943446048013 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ecp.c.obj fb8eb68674bc93c7 +4128 4327 7937943446415272 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/fsm.c.obj 3d7d59ada644d9fa +4146 4383 7937943446601062 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ipcp.c.obj 677d81f01d8ef546 +4206 4422 7937943447197447 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/mppe.c.obj 8ceb4b58e294402c +4219 4417 7937943447324990 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/multilink.c.obj 62c56122bb65ed6c +4191 4502 7937943447033013 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ipv6cp.c.obj d9b366fc2ac5290a +4201 4388 7937943447148036 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/magic.c.obj 4c90c1cacd25abab +4196 4394 7937943447095009 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/lcp.c.obj c958349e003fdc58 +4224 4399 7937943447375549 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/arc4.c.obj 69ab292aa02e24d3 +4300 4462 7937943448132636 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppoe.c.obj d3b8c2433707c7a0 +4296 4472 7937943448088495 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppcrypt.c.obj eeaff152eef09c5e +4286 4467 7937943447994283 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/ppp.c.obj 95dbda436ddc1a4 +4234 4485 7937943447474535 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/md4.c.obj 8494b18a789cfd30 +4245 4427 7937943447586917 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/sha1.c.obj c205d93ec22541b1 +4388 4556 7937943449015655 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/vj.c.obj a3748ae2776c2ad3 +4240 4511 7937943447536668 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/md5.c.obj 4ef8a1fb3ec0b466 +4229 4503 7937943447425412 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/polarssl/des.c.obj c6da4b61f39ddc77 +4383 4583 7937943448970202 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/utils.c.obj 25c805149a1e51f9 +4341 4521 7937943448545906 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/upap.c.obj ba551349020d2236 +4291 4518 7937943448047904 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppapi.c.obj a011cbcb2449c13b +4336 4525 7937943448500471 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppos.c.obj 3b3abea33c130cbb +4327 4512 7937943448397964 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/ppp/pppol2tp.c.obj fbb6264d9812bc92 +4399 4555 7937943449130444 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/zepif.c.obj b6fafc051f5cffbb +4394 4636 7937943449081344 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/lwip-2.2.1/src/netif/slipif.c.obj b7d9d13d727cacbb +4 51 7937943378024934 clean 48fb0083216ba165 +8 237 7937947157929587 CMakeFiles/rtthread-nano-stm32f407ve.dir/board/stm32f407ve/board.c.obj 74cec99e8c18b81a +12 272 7937947157959729 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/drv_eth.c.obj f9d0508007c45d16 +272 794 7937947160555122 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +6 256 7937954376044248 CMakeFiles/rtthread-nano-stm32f407ve.dir/lwip/port/drv_eth.c.obj f9d0508007c45d16 +256 776 7937954378548370 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +38 559 7937957948890549 CMakeFiles/rtthread-nano-stm32f407ve.dir/board/stm32f407ve/board.c.obj 74cec99e8c18b81a +10 618 7937957948596801 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 +618 1917 7937957954693618 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +6 251 7937959799632907 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 +252 698 7937959802095858 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +12 666 7937963039838091 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 +668 2203 7937963046402606 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +9 629 7937965128089409 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 +630 1959 7937965134298991 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +68 661 7937991251867778 CMakeFiles/rtthread-nano-stm32f407ve.dir/board/stm32f407ve/board.c.obj 74cec99e8c18b81a +13 736 7937991251329663 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 +736 2246 7937991258548373 rtthread-nano-stm32f407ve.elf 75a1489437366d05 +11 695 7938004872582736 CMakeFiles/rtthread-nano-stm32f407ve.dir/app/main.c.obj a739475447ae0703 +697 2067 7938004879445369 rtthread-nano-stm32f407ve.elf 75a1489437366d05 diff --git a/build/rtthread-nano-stm32f407ve.bin b/build/rtthread-nano-stm32f407ve.bin index 87f5291..801f453 100644 Binary files a/build/rtthread-nano-stm32f407ve.bin and b/build/rtthread-nano-stm32f407ve.bin differ diff --git a/log.txt b/log.txt deleted file mode 100644 index 9246a59..0000000 --- a/log.txt +++ /dev/null @@ -1,6965 +0,0 @@ -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -etharp_timer -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 138 -ip4_input: packet not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=434 -[Info] Rx: p->tot_len=434 -[Info] Rx: len=434 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:f2:a5:c2:d8:30:68, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 5684 -ip4_input: packet not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incomin=60 - request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:24:da:33:5a:ee:9b, type:806 -etharp_update_arp_entry: 192.168.1.94 - 24:da:33:5a:ee:9b -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=434 -[Info] Rx: p->tot_len=434 -[Info] Rx: len=434 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:f2:a5:c2:d8:30:68, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 5684 -ip4_input: packet not for us. -.[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -etharp_raw: sending raw ARP packet. -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 1947 -ip4_input: packet not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -.etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 138 -ip4_input: packet not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:00:80:e1:00:00:55, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -.etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -etharp_raw: sending raw ARP packet. -ethernet_output: sending packet 200080a8 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 0 -etharp_find_entry -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -etharp_timer -.[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x0 (0x0, 0x0, 0xff01a8c0) -ip4_input: UDP packet to DHCP client port 137 -ip4_input: packet not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:f2:a5:c2:d8:30:68, type:806 -etharp_update_arp_entry: 192.168.1.173 - f2:a5:c2:d8:30:68 -etharp_find_entry: found empty entry 0 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: we are unconfigured, ARP request ignored. -etharp_timer -etharp_raw: sending raw ARP packet. -ethernet_output: sending packet 200080a8 -netif: netmask of interface et set to 255.255.255.0 -netif: GW address of interface et set to 192.168.1.1 -netif_set_ipaddr: netif address being changed -.[Info] DHCP Success! - -[Info] IP Address: 192.168.1.138 -[Info] Netmask: 255.255.255.0 -[Info] Gateway: 192.168.1.1 -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 2 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3708 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -etharp_find_entry: found empty entry 0 -etharp_find_entry: selecting empty entry 0 -etharp_request: sending ARP request. -etharp_raw: sending raw ARP packet. -ethernet_output: sending packet 200080e0 -etharp_Rx: len=60 -en=60 -t 200080a8 on ARP entry 0 -ethernet_input: dest:00:80:e1:00:00:55, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -ethernet_output: sending packet 200080e0 -etharp_input: incoming ARP reply -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 1 -etharp_find_entry:en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44268 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0959 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=98 -[Info] Rx: p->tot_len=98 -[Info] Rx: len=98 -[Info] Rx: rxLength=93 -[Info] Rx: p->tot_len=93 -[Info] Rx: p->len ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 79 | (v, hl, tos, len) -+-------------------------------+ -| 13049 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x4580 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 79 p->tot_len 79 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 3 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3707 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 --[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60t[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 36 | (v, hl, tos, len) -+-------------------------------+ -| 11759 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x8802 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 136 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 36 p->tot_len 36 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 36 | (v, hl, tos, len) -+-------------------------------+ -| 11760 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x8801 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 136 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 36 p->tot_len 36 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rxput: ARP reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p: ARP request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_=60 -en=60 -92.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLeng reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60t[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx:ut: ARP reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 4 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3706 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+------------n=60 -en=60 -------+ -| 64701 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8d5 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64702 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf950 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Infrp_input: ARP reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] input: ARP request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: l: ARP ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64703 |000| 0 | (id, flags, offset) -+-----------en=60 -en=60 -------+ -| 64 | 17 | 0xf94f | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:98:b3:ef:0d:91:29, type:806 -etharp_update_arp_entry: 192.168.1.63 - 98:b3:ef:0d:91:29 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64704 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf94e | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44269 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0958 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64705 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8d1 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64706 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf94c | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44270 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0957 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etnfo] Rx: len=60 -en=60 -92.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64707 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf94b | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44271 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0956 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 5 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3705 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -eInfo] Rx: len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP ren=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -ethao] Rx: len=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp Rx: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -ethfo] Rx: len=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: fn=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: =60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp Rx: len=60 -en=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:f60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_i len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_ar0 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry:en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: AR0 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -ethfo] Rx: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming AR request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: fn=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_fi: len=60 -en=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etnfo] Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -etharp_timer -ethernet_: len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no em -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64709 |000| 0 | (id, flags, offset) -+-------------------------------+ -| nfo] Rx: len=60 -en=60 -d | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64710 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf948 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64711 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf947 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_ent=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no em -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP requ60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_Rx: len=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_fx: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -ethar] Rx: len=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: fou60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: in0 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_fx: len=60 -en=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -eInfo] Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:f60 -:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_i len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry:en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: AR0 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -ethar] Rx: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etnfo] Rx: len=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming A - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry -en=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_inp len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etnfo] Rx: len=60 -en=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: deen=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethern Rx: len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry0 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP requestwas not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_updalen=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: fo=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_findlen=92 -en=92 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64712 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf946 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 6 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3704 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: A92 -en=92 -as not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64713 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8c9 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-----------en=82 -en=82 -------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 |] Rx: len=60 -en=60 -8 | (v, hl, tos, len) -+-------------------------------+ -| 64714 |0en=60 - 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf944 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+Info] Rx: len=60 -en=60 -------+ -| 192 | 168 | 1 | 255 | (dest) -+------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:4d:54:e2:d2:1e, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 22Rx: len=60 -en=60 - 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | en=60 -e | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 222 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------=60 -en=60 -------+ -ip4_input: p->len 68 p->tot_len 68 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_en=60 -en=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: 0 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethfo] Rx: len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_enn=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no e0 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP ren=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -ethao] Rx: len=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp Rx: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -ethfo] Rx: len=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: fo=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: i60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_Rx: len=60 -en=60 -mpty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff0 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no 60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_Rx: len=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_in: len=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found empty entry 1 -etharp_find_entry: selecting empty entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_raw: sending raw ARP packet. -ethernet_output: sending packet 200080a8 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp -en=92 -pdating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etnfo] Rx: len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64715 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf943 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 13154 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x4522 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 7 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3703 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:bc:58:1b:2a:b0, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 241 | (v, hl, tos, len) -+-------------------------------+ -| 9420 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x90bd | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 35 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 241 p->tot_len 241 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64716 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf942 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_een=60 -pdating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: -pdating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etnfo] Rx: len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_i len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_inpen=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethern Rx: len=60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input:60 -en=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff: -:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: desen=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff0 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:f60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etnfo] Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff0 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etnfo] Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff0 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -ethfo] Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff: -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -ethao] Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:f:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp Rx: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_ix: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: deen=60 -:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -etharp_input: ARP request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Infop_input: ARP [Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLeng reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=165 -[Info] Rx: p->tot_len=165 -[Info] Rx: len=165 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 151 | (v, hl, tos, len) -+-------------------------------+ -| 0 |010| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0x78ad | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 1 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 151 p->tot_len 151 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_fx: len=60 -en=60 -atching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: in0 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_fx: len=60 -en=60 -atching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: in0 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incomen=60 - request -etharp_input: ARP request was not for us. -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_ix: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_inp len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -ethfo] Rx: len=60 -en=60 -atching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoen=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_en=60 -en=60 -atching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: fn=60 -atching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etnfo] Rx: len=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_inpulen=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: =60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_fx: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_inputen=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etnfo] Rx: len=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP ren=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp Rx: len=60 -en=60 -pdating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_ux: len=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP reques -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_updalen=60 -en=60 -pdating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_updaten=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_en=60 -pdating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_ent=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etheo] Rx: len=60 -en=60 -:ff:ff:ff:ff, src:2c:4d:54:e2:d2:1e, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -iInfo] Rx: lIP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 22966 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x5bc5 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 222 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernetx: len=60 -en=60 -:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:806 -etharp_update_arp_entry: 192.168.1.125 - d8:cb:8a:e2:b3:93 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 28621 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x466d | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 21 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 13210 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x8242 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+----------------------- -------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_Rx: len=60 -en=60 -92.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP reques -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_updalen=60 -en=60 -pdating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 8 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3702 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64717 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8c5 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64718 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf940 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44272 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0955 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_ent60 -en=60 -mpty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64719 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf93f | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44273 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0954 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 9 |000| 0 | (id, flags, offset) -+----- Rx: len=92 -en=92 -------+ -| 255 | 1 | 0x3701 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64720 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf93e | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44274 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0953 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info]put: p->len 202 p[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64722 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf93c | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 x: len=93 -en=93 -8 | (v, hl, tos, len) -+-------------------------------+ -| 64723 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf93b | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4fo] Rx: len=60 -en=60 - on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 84 | (v, hl, tos, len) -+-------------------------------+ -| 13253 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x44af | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 84 p->tot_len 84 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 79 | (v, hl, tos, len) -+-------------------------------+ -| 13254 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x44b3 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 79 p->tot_len 79 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 10 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x3700 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64724 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf93a | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64725 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8bd | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64726 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf938 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64727 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf937 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64728 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf936 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->len 202 p->[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0en=60 -en=60 -8 | (v, hl, tos, len) -+-------------------------------+ -| 64730 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf934 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 28735 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x45fb | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 21 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entr2 -en=92 -mpty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+----------------------- -------+ -| 64731 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf933 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44275 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0952 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 11 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36ff | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -ethao] Rx: len=92 -en=92 -mpty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 28742 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x45f4 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 21 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64732 |000| 0 | (id, flags, offset) -+----------------------- -------+ -| 64 | 17 | 0xf932 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44276 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0951 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 28751 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x45eb | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 21 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44277 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0950 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:bc:58:1b:2a:b0, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | en=92 -6 | (v, hl, tos, len) -+-------------------------------+ -| 9423 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x9187 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 35 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 36 p->tot_len 36 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:bc:58:1b:2a:b0, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 36 | (v, hl, tos, len) -+-------------------------------+ -| 9421 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x9189 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 35 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 36 p->tot_len 36 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 28773 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x45d5 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 21 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 12 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36fe | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 28778 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x45d0 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 21 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 28785 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x45c9 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 21 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:806 -etharp_update_arp_entry: 192.168.1.64 - 08:bf:b8:6e:5e:30 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 13 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36fd | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=est[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:806 -etharp_update_arp_entry: 192.168.1.64 - 08:bf:b8:6e:5e:30 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=98 -[Info] Rx: p->tot_len=98 -[Info] Rx: len=98 -[Info] Rx: rxLength=93 -[Info] ut: p->len 84 p->t[Info] Rx: len=93 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] ut: p->len ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_een=60 -92.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:806 -etharp_update_arp_entry: 192.168.1.64 - 08:bf:b8:6e:5e:30 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 59891 |000| - 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x8eb9 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 84 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:806 -etharp_update_arp_entry: 192.168.1.10 - 08:bf:b8:89:8f:18 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found -mpty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_en=92 -en=92 -tching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64733 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8b5 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64734 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf930 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44278 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x094f | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64735 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf92f | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44279 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x094e | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -ethar] Rx: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64736 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf92e | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=165 -[Info] Rx: p->tot_len=165 -[Info] Rx: len=165 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 151 | (v, hl, tos, len) -+-------------------------------+ -| 0 |010| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0x78ad | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 1 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 151 p->tot_len 151 -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 14 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36fc | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44280 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x094d | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_in: len=60 -en=60 - request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64737 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8b1 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64738 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf92c | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_ent60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64739 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf92b | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: foun0 -mpty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 30606 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x3e77 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 84 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64740 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf92a | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 15 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36fb | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:32:d7:cc:fd:ff:43, type:806 -etharp_update_arp_entry: 192.168.1.81 - 32:d7:cc:fd:ff:43 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[p4_input: p->len 202 p[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64742 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf928 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64743 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf927 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:24:cf:24:ae:a5:4f, type:806 -etharp_update_arp_entry: 192.168.1.167 - 24:cf:24:ae:a5:4f -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64744 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf926 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 16 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36fa | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64745 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf925 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64746 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8a8 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64747 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf923 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64748 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf922 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64749 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf921 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=98 -[Info] Rx: p->tot_len=98 -[Info] Rx: len=98 -[Info] Rx: rxLength=93 -[Info] Rx: p->ten 84 p->t[Info] Rx: len=93 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 79 | (v, hl, tos, len) -+-------------------------------+ -| 13436 |00en=60 - 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x43fd | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 79 p->tot_len 79 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp Rx: len=60 -en=60 -was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:806 -etharp_update_arp_entry: 192.168.1.64 - 08:bf:b8:6e:5e:30 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry:en=60 -mpty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:806 -etharp_update_arp_entry: 192.168.1.64 - 08:bf:b8:6e:5e:30 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 17 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f9 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:806 -etharp_update_arp_entry: 192.168.1.64 - 08:bf:b8:6e:5e:30 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:98:b3:ef:0d:91:29, type:806 -etharp_update_arp_entry: 192.168.1.63 - 98:b3:ef:0d:91:29 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44281 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x094c | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 18 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f8 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44282 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x094b | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44283 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x094a | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64750 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8a4 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 00 -01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64751 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf91f | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 19 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f7 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64752 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf91e | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: t: ARP request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=6P ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64753 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf91d | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->desn=60 -01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64754 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf8a0 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64755 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf91b | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:4d:54:e2:d2:1e, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 23052 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x1e17 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 222 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------n=92 -------+ -ip4_input: p->len 68 p->tot_len 68 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64756 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf91a | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64757 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf919 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 13540 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x43a0 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 20 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f6 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rt: p->len ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64759 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf917 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=98 -[Info] Rx: p->tot_len=98 -[Info] Rx: len=98 -[Info] Rx: rxLength=93 -[Info] Rx: p->tot_len=->t[Info] Rx: len=93 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 79 | (v, hl, tos, len) -+-------------------------------+ -| 13552 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x4389 | (ttl, proto, chksum) -+------------------------[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 79 p->tot_len 79 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0x -01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64760 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf916 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44284 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0949 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 - [Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Infop_input: ARP request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info]_input: ARP ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_inpuRx: len=60 -en=60 -01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet -en=92 - on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64761 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf915 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44285 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0948 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 21 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f5 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_lenuest[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] input: ARP reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rxput: ARP request[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64762 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf898 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64763 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf913 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+---------------- -en=82 -------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44286 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0947 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:4d:54:e2:d2:1e, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 23064 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x5b63 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 222 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64764 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf912 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:f60 -:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 13582 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x80ce | (ttl, proto, chksum) -+------Rx: len=60 -en=60 -------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64765 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf911 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 22 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f4 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=que[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_ent=60 -92.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 23 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f3 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_fi: len=60 -en=60 -y entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:64:64:4a:20:bc:18, type:806 -etharp_update_arp_entry: 192.168.1.49 - 64:64:4a:20:bc:18 -etharp_find_entry: found matching entry 1 -etharp_update_arp_entry: updating stable entry 1 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44287 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0946 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:f2:a5:c2:d8:30:68, type:806 -etharp_update_arp_entry: 192.168.1.173 - f2:a5:c2:d8:30:68 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44288 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0945 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64766 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf894 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64767 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf90f | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:e0:d5:5e:58:c2:9d, type:806 -etharp_update_arp_entry: 192.168.1.21 - e0:d5:5e:58:c2:9d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44289 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0944 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 24 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f2 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=98 -[Info] Rx: p->tot_len=98 -[Info] Rx: len=98 -[Info] Rx: rxLength=93 -[Info] Rx: p->tot_84 p->t[Info] Rx: len=93 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 79 | (v, hl, tos, len) -+-------------------------------+ -| 13639 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x4332 | (ttl, proto, chksum) -+---------------------92 -------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 25n=60 -en=60 - 255 | (dest) -+-------------------------------+ -ip4_input: p->len 79 p->tot_len 79 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64768 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf90e | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64769 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf90d | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rnput: ARP request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: l: ARP [Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: p->len 36 p-[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->len 36 p->t[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 36 | (v, hl, tos, len) -+-------------------------------+ -| 11764 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x87fd | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 136 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 36 p->tot_len 36 -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64770 |000| 0 | (id, flags, offset) -+-------------------------------+ -| fo] Rx: len=60 -en=60 -0 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64771 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf90b | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 25 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f1 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64772 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf90a | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Inarp_input: ARP reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx:ut: ARP request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=RP [Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64773 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf909 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+--------------------=60 -------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:24:da:33:5a:ee:9b, type:806 -etharp_update_arp_entry: 192.168.1.94 - 24:da:33:5a:ee:9b -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=216 -[Info] Rx: p->tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 202 | (v, hl, tos, len) -+-------------------------------+ -| 64774 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf88c | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 202 p->tot_len 202 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64775 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf907 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Warning] Ping: Recv error (len=-1) errno=11 -[Warning] Ping: Timeout or no reply -[Info] Ping failed, retrying in 2 seconds... -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64776 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf906 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:50:81:40:dd:32:35, type:806 -etharp_update_arp_entry: 192.168.1.68 - 50:81:40:dd:32:35 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64777 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf905 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Ping: Pinging 192.168.1.220... -[Info] Ping: ID=afaf Seq=0001 Chksum=4e57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 26 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36f0 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=216 -[Info] timer -tot_len=216 -[Info] Rx: len=216 -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: l->len ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64779 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf903 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64780 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf902 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:6e:5e:30, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 64781 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 64 | 17 | 0xf901 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 64 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0002 Chksum=4d57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 27 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36ef | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:1f:71:0b:68:df, type:806 -etharp_update_arp_entry: 192.168.1.220 - 08:1f:71:0b:68:df -etharp_find_entry: found matching entry 0 -etharp_update_arp_entry: updating stable entry 0 -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:04:7c:16:73:7c:49, type:806 -etharp_update_arp_entry: 192.168.1.136 - 04:7c:16:73:7c:49 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:fc:a0:5a:0d:cb:14, type:806 -etharp_update_arp_entry: 192.168.1.253 - fc:a0:5a:0d:cb:14 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 84 | (v, hl, tos, len) -+-------------------------------+ -| 13726 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x42d6 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 84 p->tot_len 84 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:d8:cb:8a:e2:b3:93, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 79 | (v, hl, tos, len) -+-------------------------------+ -| 13727 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x42da | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 125 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 79 p->tot_len 79 -etharp_timer -[Warning] Ping: Recv error (len=-1) errno=11 -[Info] Ping: ID=afaf Seq=0003 Chksum=4c57 Len=40 -ip4_output_if: et0 -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 60 | (v, hl, tos, len) -+-------------------------------+ -| 28 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 255 | 1 | 0x36ee | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | =60 - 138 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 220 | (dest) -+-------------------------------+ -ip4_output_if: call netif->output() -ethernet_output: sending packet 200080a8 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:b4:2e:99:04:5b:4d, type:806 -etharp_update_arp_entry: 192.168.1.36 - b4:2e:99:04:5b:4d -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=82 -[Info] Rx: p->tot_len=82 -[Info] Rx: len=82 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:800 -ip_input: iphdr->dest 0xffffffff netif->ip_addr 0x8a01a8c0 (0xffffff, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 68 | (v, hl, tos, len) -+-------------------------------+ -| 59892 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x8eb8 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 84 | (src) -+-------------------------------+ -| 255 | 255 | 255 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 68 p->tot_len 68 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=92 -[Info] Rx: p->tot_len=92 -[Info] Rx: len=92 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44290 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0943 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -etharp_timer -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] input: ARP [Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLengtheque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_lenuest[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx:ut: ARP reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot request[Info] Rx: len=60 -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -[Inarp_input: ARP reque[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:2c:16:db:a5:de:82, type:806 -etharp_update_arp_entry: 192.168.1.84 - 2c:16:db:a5:de:82 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -ethernet_input: destn=60 -:ff:ff:ff:ff, src:08:bf:b8:89:8f:18, type:800 -ip_input: iphdr->dest 0xff01a8c0 netif->ip_addr 0x8a01a8c0 (0x1a8c0, 0x1a8c0, 0xff000000) -ip4_input: packet accepted on interface et -ip4_input: -IP header: -+-------------------------------+ -| 4 | 5 | 0x00 | 78 | (v, hl, tos, len) -+-------------------------------+ -| 44291 |000| 0 | (id, flags, offset) -+-------------------------------+ -| 128 | 17 | 0x0942 | (ttl, proto, chksum) -+-------------------------------+ -| 192 | 168 | 1 | 10 | (src) -+-------------------------------+ -| 192 | 168 | 1 | 255 | (dest) -+-------------------------------+ -ip4_input: p->len 78 p->tot_len 78 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:78:44:fd:69:f3:e4, type:806 -etharp_update_arp_entry: 192.168.1.1 - 78:44:fd:69:f3:e4 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -[Info] Rx: rxLength=60 -[Info] Rx: p->tot_len=60 -[Info] Rx: len=60 -ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:4c:d7:17:9b:17:19, type:806 -etharp_update_arp_entry: 192.168.1.24 - 4c:d7:17:9b:17:19 -etharp_find_entry: found empty entry 2 -etharp_find_entry: no empty entry found and not allowed to recycle -etharp_input: incoming ARP request -etharp_input: ARP request was not for us. -etharp_timer -[Info] diff --git a/lwip/port/drv_eth.c b/lwip/port/drv_eth.c index 35f7a19..044bb91 100644 --- a/lwip/port/drv_eth.c +++ b/lwip/port/drv_eth.c @@ -11,48 +11,63 @@ /* Ethernet Handle */ ETH_HandleTypeDef heth; static uint32_t g_phy_address = 0; /* Stored PHY Address */ +static uint32_t g_last_link_check_time = 0; /* 上次链接状态检测时间 */ +static uint32_t g_link_check_interval = 1000; /* 链接状态检测间隔 (ms) */ +static uint8_t g_link_state_stable = 0; /* 链接状态稳定性标志 */ +static uint8_t g_link_state_counter = 0; /* 链接状态计数器,用于防抖 */ /* DMA Descriptors and Buffers */ -__attribute__((section(".RxDecripSection"))) __attribute__((aligned(4))) ETH_DMADescTypeDef DMARxDscrTab[ETH_RXBUFNB]; -__attribute__((section(".TxDecripSection"))) __attribute__((aligned(4))) ETH_DMADescTypeDef DMATxDscrTab[ETH_TXBUFNB]; -__attribute__((section(".RxArraySection"))) __attribute__((aligned(4))) uint8_t Rx_Buff[ETH_RXBUFNB][ETH_RX_BUF_SIZE]; -__attribute__((section(".TxArraySection"))) __attribute__((aligned(4))) uint8_t Tx_Buff[ETH_TXBUFNB][ETH_TX_BUF_SIZE]; +/* 优化缓冲区对齐方式,提高内存访问效率 */ +__attribute__((section(".RxDecripSection"))) __attribute__((aligned(32))) ETH_DMADescTypeDef DMARxDscrTab[ETH_RXBUFNB]; +__attribute__((section(".TxDecripSection"))) __attribute__((aligned(32))) ETH_DMADescTypeDef DMATxDscrTab[ETH_TXBUFNB]; +__attribute__((section(".RxArraySection"))) __attribute__((aligned(32))) uint8_t Rx_Buff[ETH_RXBUFNB][ETH_RX_BUF_SIZE]; +__attribute__((section(".TxArraySection"))) __attribute__((aligned(32))) uint8_t Tx_Buff[ETH_TXBUFNB][ETH_TX_BUF_SIZE]; + +/* 缓冲区管理优化:可以根据实际网络流量调整缓冲区大小和数量 */ +/* 建议值: + * - 高流量场景:ETH_RXBUFNB = 8, ETH_TXBUFNB = 8 + * - 低内存场景:ETH_RXBUFNB = 2, ETH_TXBUFNB = 2 + */ /* Semaphore for Ethernet */ static osal_sem_t s_xSemaphore = NULL; -/* MSP Init */ -void HAL_ETH_MspInit(ETH_HandleTypeDef *heth) -{ - (void)heth; - GPIO_InitTypeDef GPIO_InitStructure; +/* 函数声明 */ +static HAL_StatusTypeDef detect_and_configure_phy(void); +static void configure_mac(ETH_MACConfigTypeDef *macConf); - __HAL_RCC_GPIOA_CLK_ENABLE(); - __HAL_RCC_GPIOB_CLK_ENABLE(); - __HAL_RCC_GPIOC_CLK_ENABLE(); - __HAL_RCC_SYSCFG_CLK_ENABLE(); +/* MSP Init - Implemented in board.c */ +// void HAL_ETH_MspInit(ETH_HandleTypeDef *heth) +// { +// (void)heth; +// GPIO_InitTypeDef GPIO_InitStructure; - __HAL_RCC_ETH_CLK_ENABLE(); +// __HAL_RCC_GPIOA_CLK_ENABLE(); +// __HAL_RCC_GPIOB_CLK_ENABLE(); +// __HAL_RCC_GPIOC_CLK_ENABLE(); +// __HAL_RCC_SYSCFG_CLK_ENABLE(); - /* PA1, PA2, PA7 */ - GPIO_InitStructure.Pin = GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_7; - GPIO_InitStructure.Mode = GPIO_MODE_AF_PP; - GPIO_InitStructure.Pull = GPIO_NOPULL; - GPIO_InitStructure.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - GPIO_InitStructure.Alternate = GPIO_AF11_ETH; - HAL_GPIO_Init(GPIOA, &GPIO_InitStructure); +// __HAL_RCC_ETH_CLK_ENABLE(); - /* PC1, PC4, PC5 */ - GPIO_InitStructure.Pin = GPIO_PIN_1 | GPIO_PIN_4 | GPIO_PIN_5; - HAL_GPIO_Init(GPIOC, &GPIO_InitStructure); +// /* PA1, PA2, PA7 */ +// GPIO_InitStructure.Pin = GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_7; +// GPIO_InitStructure.Mode = GPIO_MODE_AF_PP; +// GPIO_InitStructure.Pull = GPIO_NOPULL; +// GPIO_InitStructure.Speed = GPIO_SPEED_FREQ_VERY_HIGH; +// GPIO_InitStructure.Alternate = GPIO_AF11_ETH; +// HAL_GPIO_Init(GPIOA, &GPIO_InitStructure); - /* PB11, PB12, PB13 */ - GPIO_InitStructure.Pin = GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13; - HAL_GPIO_Init(GPIOB, &GPIO_InitStructure); - - HAL_NVIC_SetPriority(ETH_IRQn, 0x07, 0); - HAL_NVIC_EnableIRQ(ETH_IRQn); -} +// /* PC1, PC4, PC5 */ +// GPIO_InitStructure.Pin = GPIO_PIN_1 | GPIO_PIN_4 | GPIO_PIN_5; +// HAL_GPIO_Init(GPIOC, &GPIO_InitStructure); + +// /* PB11, PB12, PB13 */ +// GPIO_InitStructure.Pin = GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13; +// HAL_GPIO_Init(GPIOB, &GPIO_InitStructure); +// +// HAL_NVIC_SetPriority(ETH_IRQn, 0x07, 0); +// HAL_NVIC_EnableIRQ(ETH_IRQn); +// } void HAL_ETH_RxCpltCallback(ETH_HandleTypeDef *heth) { @@ -79,20 +94,24 @@ void HAL_ETH_RxLinkCallback(void **pStart, void **pEnd, uint8_t *buff, uint16_t void ETH_IRQHandler(void) { - osal_enter_critical(); + /* 直接调用 HAL 中断处理函数,不使用全局临界区 + * HAL_ETH_IRQHandler 内部已经有适当的中断保护机制 + */ HAL_ETH_IRQHandler(&heth); - osal_exit_critical(); } +/** + * @brief 以太网硬件初始化函数 + * @param netif: 网络接口结构体指针 + * @return 无 + * @note 负责初始化以太网硬件,包括MAC、DMA、PHY等 + */ static void low_level_init(struct netif *netif) { /* Use a fixed MAC address to avoid conflicts/filtering */ uint8_t macaddress[6] = { 0x00, 0x80, 0xE1, 0x00, 0x00, 0x55 }; ETH_MACConfigTypeDef macConf; HAL_StatusTypeDef hal_eth_init_status; - uint32_t phy_id1 = 0, phy_id2 = 0; - uint8_t detected_phy_addr = 0; - uint32_t regvalue; /* Generate MAC address from UID */ /* @@ -112,6 +131,7 @@ static void low_level_init(struct netif *netif) macaddress[0], macaddress[1], macaddress[2], macaddress[3], macaddress[4], macaddress[5]); + /* 初始化 ETH 句柄 */ heth.Instance = ETH; heth.Init.MACAddr = macaddress; heth.Init.MediaInterface = ETH_MEDIA_INTERFACE_RMII; @@ -124,66 +144,30 @@ static void low_level_init(struct netif *netif) if (hal_eth_init_status == HAL_OK) { - /* Step 1: PHY address detection */ - osal_log_i("Detecting PHY Address..."); - detected_phy_addr = 0xFF; /* Invalid initial value */ - - for(uint8_t addr = 0; addr <= 31; addr++) { - /* Read PHY ID registers (typically Reg 2 and 3) */ - /* Using 4-arg version: heth, PhyAddr, Reg, Value */ - if(HAL_ETH_ReadPHYRegister(&heth, addr, 2, &phy_id1) == HAL_OK && - HAL_ETH_ReadPHYRegister(&heth, addr, 3, &phy_id2) == HAL_OK) { - if((phy_id1 != 0xFFFF) && (phy_id1 != 0x0000) && (phy_id1 != 0)) { - detected_phy_addr = addr; - osal_log_i("Found PHY at Address %d (ID: %04x %04x)", addr, phy_id1, phy_id2); - break; - } - } - } - - if (detected_phy_addr != 0xFF) + /* 检测并配置 PHY */ + if (detect_and_configure_phy() == HAL_OK) { - g_phy_address = detected_phy_addr; - - /* Step 2: PHY Soft Reset */ - osal_log_i("Resetting PHY..."); - /* Write Reset Bit */ - HAL_ETH_WritePHYRegister(&heth, g_phy_address, PHY_BCR, PHY_RESET); - - /* Wait for Reset to clear */ - uint32_t tickstart = osal_tick_get(); - do { - HAL_ETH_ReadPHYRegister(&heth, g_phy_address, PHY_BCR, ®value); - if((regvalue & PHY_RESET) == 0) break; - } while ((osal_tick_get() - tickstart) < 500); // 500ms timeout - - /* Add a delay to ensure PHY is stable */ - osal_thread_mdelay(100); netif->flags |= NETIF_FLAG_LINK_UP; } - else - { - osal_log_e("No PHY found!"); - } } else { osal_log_e("HAL_ETH_Init failed"); } - HAL_ETH_GetMACConfig(&heth, &macConf); - macConf.DuplexMode = ETH_FULLDUPLEX_MODE; - macConf.Speed = ETH_SPEED_100M; - macConf.ChecksumOffload = ENABLE; /* Enable HW Checksum */ - HAL_ETH_SetMACConfig(&heth, &macConf); + /* 配置 MAC */ + configure_mac(&macConf); /* Enable Promiscuous Mode manually as it's not in the struct */ heth.Instance->MACFFR |= ETH_MACFFR_PM; + /* 启动 ETH 中断 */ HAL_ETH_Start_IT(&heth); + /* 创建信号量 */ s_xSemaphore = osal_sem_create("eth_sem", 0); + /* 配置网络接口 */ netif->hwaddr_len = 6; memcpy(netif->hwaddr, macaddress, 6); netif->mtu = 1500; @@ -193,6 +177,106 @@ static void low_level_init(struct netif *netif) #endif } +/** + * @brief 检测并配置 PHY + * @return HAL_StatusTypeDef: 操作结果 + * @note 负责检测 PHY 地址并进行配置 + */ +static HAL_StatusTypeDef detect_and_configure_phy(void) +{ + uint32_t phy_id1 = 0, phy_id2 = 0; + uint8_t detected_phy_addr = 0xFF; /* Invalid initial value */ + uint32_t regvalue; + + /* Step 1: PHY address detection */ + osal_log_i("Detecting PHY Address..."); + + /* 优先检查常见的 PHY 地址,减少遍历次数 */ + uint8_t common_phy_addresses[] = {0, 1, 2, 3, 16, 17, 18, 19, 20}; + uint8_t common_phy_count = sizeof(common_phy_addresses) / sizeof(common_phy_addresses[0]); + + /* 先检查常见地址 */ + for(uint8_t i = 0; i < common_phy_count; i++) { + uint8_t addr = common_phy_addresses[i]; + /* Read PHY ID registers (typically Reg 2 and 3) */ + if(HAL_ETH_ReadPHYRegister(&heth, addr, 2, &phy_id1) == HAL_OK && + HAL_ETH_ReadPHYRegister(&heth, addr, 3, &phy_id2) == HAL_OK) { + if((phy_id1 != 0xFFFF) && (phy_id1 != 0x0000) && (phy_id1 != 0)) { + detected_phy_addr = addr; + osal_log_i("Found PHY at Address %d (ID: %04x %04x)", addr, phy_id1, phy_id2); + goto phy_found; + } + } + } + + /* 如果常见地址没找到,再遍历所有可能的地址 */ + for(uint8_t addr = 0; addr <= 31; addr++) { + /* 跳过已经检查过的常见地址 */ + uint8_t skip = 0; + for(uint8_t i = 0; i < common_phy_count; i++) { + if(addr == common_phy_addresses[i]) { + skip = 1; + break; + } + } + if(skip) continue; + + /* Read PHY ID registers (typically Reg 2 and 3) */ + if(HAL_ETH_ReadPHYRegister(&heth, addr, 2, &phy_id1) == HAL_OK && + HAL_ETH_ReadPHYRegister(&heth, addr, 3, &phy_id2) == HAL_OK) { + if((phy_id1 != 0xFFFF) && (phy_id1 != 0x0000) && (phy_id1 != 0)) { + detected_phy_addr = addr; + osal_log_i("Found PHY at Address %d (ID: %04x %04x)", addr, phy_id1, phy_id2); + goto phy_found; + } + } + } + +phy_found: + + if (detected_phy_addr != 0xFF) + { + g_phy_address = detected_phy_addr; + + /* Step 2: PHY Soft Reset */ + osal_log_i("Resetting PHY..."); + /* Write Reset Bit */ + HAL_ETH_WritePHYRegister(&heth, g_phy_address, PHY_BCR, PHY_RESET); + + /* Wait for Reset to clear */ + uint32_t tickstart = osal_tick_get(); + uint32_t reset_timeout = 200; // 优化为 200ms 超时 + do { + HAL_ETH_ReadPHYRegister(&heth, g_phy_address, PHY_BCR, ®value); + if((regvalue & PHY_RESET) == 0) break; + } while ((osal_tick_get() - tickstart) < reset_timeout); // 200ms timeout + + /* Add a delay to ensure PHY is stable */ + osal_thread_mdelay(50); // 优化为 50ms 延迟 + return HAL_OK; + } + else + { + osal_log_e("No PHY found!"); + return HAL_ERROR; + } +} + +/** + * @brief 配置 MAC + * @param macConf: MAC 配置结构体指针 + * @return 无 + * @note 负责配置 MAC 的双工模式、速度和校验和等 + */ +static void configure_mac(ETH_MACConfigTypeDef *macConf) +{ + HAL_ETH_GetMACConfig(&heth, macConf); + macConf->DuplexMode = ETH_FULLDUPLEX_MODE; + macConf->Speed = ETH_SPEED_100M; + macConf->ChecksumOffload = ENABLE; /* Enable HW Checksum */ + HAL_ETH_SetMACConfig(&heth, macConf); +} + static err_t low_level_output(struct netif *netif, struct pbuf *p) { (void)netif; @@ -202,9 +286,9 @@ static err_t low_level_output(struct netif *netif, struct pbuf *p) ETH_BufferTypeDef txBuffers[16]; memset(&txConfig, 0, sizeof(ETH_TxPacketConfigTypeDef)); - /* Disable Hardware Checksum Insertion */ - txConfig.Attributes = 0; // ETH_TX_PACKETS_FEATURES_CSUM | ETH_TX_PACKETS_FEATURES_CRCPAD; - txConfig.ChecksumCtrl = ETH_CHECKSUM_DISABLE; // ETH_CHECKSUM_IPHDR_PAYLOAD_INSERT_PHDR_CALC; + /* Enable Hardware Checksum Insertion */ + txConfig.Attributes = ETH_TX_PACKETS_FEATURES_CSUM | ETH_TX_PACKETS_FEATURES_CRCPAD; + txConfig.ChecksumCtrl = ETH_CHECKSUM_IPHDR_PAYLOAD_INSERT_PHDR_CALC; txConfig.CRCPadCtrl = ETH_CRC_PAD_INSERT; int i = 0; @@ -246,13 +330,24 @@ static struct pbuf * low_level_input(struct netif *netif) // osal_log_i("Rx: rxLength=%d", rxLength); if (rxLength > 0 && buffer != NULL) { - p = pbuf_alloc(PBUF_RAW, rxLength, PBUF_POOL); + /* 尝试使用 PBUF_REF 模式创建 pbuf,实现零拷贝 + * 注意:需要确保缓冲区在 pbuf 使用期间有效 + */ + p = pbuf_alloc(PBUF_RAW, rxLength, PBUF_REF); if (p != NULL) { - /* Copy data */ - pbuf_take(p, buffer, rxLength); + /* 直接设置 pbuf 的 payload 指针,避免数据拷贝 */ + p->payload = buffer; + p->len = rxLength; + p->tot_len = rxLength; // osal_log_i("Rx: p->tot_len=%d", p->tot_len); } else { - osal_log_e("pbuf_alloc failed"); + /* 如果 PBUF_REF 失败,回退到传统方式 */ + p = pbuf_alloc(PBUF_RAW, rxLength, PBUF_POOL); + if (p != NULL) { + pbuf_take(p, buffer, rxLength); + } else { + osal_log_e("pbuf_alloc failed"); + } } /* HAL_ETH_ReadData internally calls ETH_UpdateDescriptor, so descriptors are rebuilt automatically */ } @@ -309,24 +404,45 @@ err_t ethernetif_init(struct netif *netif) void ethernet_link_check_state(struct netif *netif) { uint32_t regvalue = 0; + uint32_t current_time = osal_tick_get(); + + /* 实现时间间隔控制,减少 PHY 寄存器读取 */ + if ((current_time - g_last_link_check_time) < g_link_check_interval) + { + return; + } + g_last_link_check_time = current_time; /* Use configured PHY Address */ HAL_ETH_ReadPHYRegister(&heth, g_phy_address, PHY_BSR, ®value); if ((regvalue & PHY_LINKED_STATUS) != (uint16_t)RESET) { - if (!netif_is_link_up(netif)) + /* 链接状态防抖 */ + g_link_state_counter++; + if (g_link_state_counter >= 3) /* 连续 3 次检测到链接状态为 up */ { - netif_set_link_up(netif); - osal_log_i("Ethernet Link Up"); + if (!netif_is_link_up(netif)) + { + netif_set_link_up(netif); + osal_log_i("Ethernet Link Up"); + } + g_link_state_stable = 1; } } else { - if (netif_is_link_up(netif)) + /* 链接状态防抖 */ + g_link_state_counter--; + if (g_link_state_counter <= 0) /* 连续 3 次检测到链接状态为 down */ { - netif_set_link_down(netif); - osal_log_i("Ethernet Link Down"); + g_link_state_counter = 0; + if (netif_is_link_up(netif)) + { + netif_set_link_down(netif); + osal_log_i("Ethernet Link Down"); + } + g_link_state_stable = 0; } } }