Hi
I'm going to be upgrading from 374.43_2 (Merlin build) to RT-AC68U_3.0.0.4_376.45_0
Do I need to backup my settings and can I restore them ?
At least back up all my 'Manually Assigned IP around the DHCP list' and Wifi access lists ?
Thanks
As stated by Merlin: You can simply upgrade from .43 to .45/.47 (lastet version) as the version do not have different hidden settings - no factory reset needed.I'm going to be upgrading from 374.43_2 (Merlin build) to RT-AC68U_3.0.0.4_376.45_0
Do I need to backup my settings and can I restore them ?
But to be prepared for the worst case (factory reset needed) you can backup the user settings to file on an usb drive via a small script.At least back up all my 'Manually Assigned IP around the DHCP list' and Wifi access lists ?
#!/bin/sh
nvram get dhcp_staticlist > dhcp_staticlist.txt
#
nvram get wl_maclist_x > wl_maclist_x.txt
nvram get wl_maclist > wl_maclist.txt
#
nvram get wl0_maclist_x > wl0_maclist_x.txt
nvram get wl0_maclist > wl0_maclist.txt
#
nvram get wl1_maclist_x > wl1_maclist_x.txt
nvram get wl1_maclist > wl1_maclist.txt
#!/bin/sh
nvram set dhcp_staticlist="`cat dhcp_staticlist.txt`"
#
nvram set wl_maclist_x="`cat wl_maclist_x.txt`"
nvram set wl_maclist="`cat wl_maclist.txt`"
#
nvram set wl0_maclist_x="`cat wl0_maclist_x.txt`"
nvram set wl0_maclist="`cat wl0_maclist.txt`"
#
nvram set wl1_maclist_x="`cat wl1_maclist_x.txt`"
nvram set wl1_maclist="`cat wl1_maclist.txt`"
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!