Last active
May 7, 2020 02:44
-
-
Save bradleybossard/51cae268676df4261091 to your computer and use it in GitHub Desktop.
Fix for CenturyLink technicolor C2100T modem bug.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Some bad jQuery will not let you rename devices on the Modem Status -> Device Table page. Each time I try to change the device in the drop-down, | |
it keeps changing to the first in the list. | |
Copy the line below and run it in the console on the page. You will need to change the integer var num = to whatever selection you want | |
*/ | |
var num = 2; refreshTime=100000;$('select[name=lan_device] option:eq(' + num + ')').attr('selected', 'selected'); |
Yes!
Thank you! Spent several hours trying to determine why hostnames were not correct. Finally figured out that device names are not host names. As old as this post is, this bug should be fixed by now.
I know this is an old post but I'm trying to get this to work through telnet but I get the following error:
[569052.782] telnetd:error:processInput:652:Invalid command, do not use '&' '<' '>' '|' or ';'
Any tips?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!