From 23bb103fb5a1b50b0ba47cff25961616c960da82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=AF=E4=BD=B3?= <13101321+jfen5577@user.noreply.gitee.com> Date: Fri, 27 Feb 2026 08:04:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A5=E5=A4=AA=E7=BD=91=E9=A9=B1=E5=8A=A8?= =?UTF-8?q?=E4=BC=98=E5=8C=96=EF=BC=8CTCP=E5=AE=A2=E6=88=B7=E7=AB=AF?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/main.c | 278 +- board/stm32f407ve/board.c | 37 + build/.ninja_deps | Bin 214860 -> 274160 bytes build/.ninja_log | 656 +-- build/rtthread-nano-stm32f407ve.bin | Bin 145488 -> 150632 bytes log.txt | 6965 --------------------------- lwip/port/drv_eth.c | 300 +- 7 files changed, 702 insertions(+), 7534 deletions(-) delete mode 100644 log.txt 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 ede2aca032384b7b0e70c9f687888d12797d9697..50f6024f05177eed9afb6cf6a8e67a75b5bbfaec 100644 GIT binary patch delta 4285 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 S-N-$_9xH9@-F$qF1pfzrxIkL~ delta 15 WcmexxSKv$^Z$k@X3)2>6A9nycvIZIe 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 87f529160f92a6b01dff9256cf8e8a6cf21818c6..801f453f382b90f78c6e7a8044cd41a4554bcfcf 100644 GIT binary patch delta 32535 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 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; } } }