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?
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!