To gather the list of WAN IPs assigned by your ISP, you could try capturing in a log file the DHCP event when WAN gets a new lease & IP address using the "/jffs/scripts/dhcpc-event" script.I want to see list of given IP's and anyway to force change it?
#!/bin/sh
#################################################################
# dhcpc-event
# Capture DHCP event on WAN getting a new lease & IP address.
#---------------------------------------------------------------#
if [ "$1" = "bound" ]
then
{
date
printf "WAN Event: [$1], WAN IP Address: [$(nvram get wan0_ipaddr)]\n"
} >> "${HOME}/${0##*/}.log"
fi
#EOF#
Shameless plug...I want to see list of given IP's and anyway to force change it?
We use essential cookies to make this site work, and optional cookies to enhance your experience.