[OpenWrt Wiki] DHCP configuration
https://openwrt.org/docs/guide-user/network/protocol.dhcp27.11.2021 · DHCP configuration See: DHCP client, DHCPv6 client Troubleshooting # Install packages opkg update opkg install tcpdump # Capture DHCP traffic tcpdump -evni any udp port 67 & \ sleep 5; \ killall -SIGUSR1 udhcpc; \ sleep 5; \ killall tcpdump # Capture DHCPv6 traffic tcpdump -evni any udp port 547 & \ sleep 5; \ killall -SIGUSR1 odhcp6c; \ sleep 5; \ killall tcpdump
[OpenWrt Wiki] Routed AP
https://openwrt.org/docs/guide-user/network/wifi/routedap23.07.2021 · In the default configuration, OpenWrt bridges the wireless network to the LAN of the device. The advantage of bridging is that broadcast traffic from Wireless to LAN and vice versa works without further changes.. In order to separate the wireless network from LAN, a new network with the corresponding DHCP and firewall settings must be created.
[OpenWrt Wiki] Smartphone USB tethering
openwrt.org › docs › guide-userNov 26, 2021 · Smartphone USB tethering This article relies on the following: * Accessing OpenWrt WebUI * Accessing OpenWrt CLI Introduction USB tethering is used to connect your OpenWrt Router to the Internet by using the your smartphone. It's more convenient and has better performance (lower latency) than turning your smartphone into an access point and using that. It also is less of a CPU load on your ...