Created
October 9, 2015 05:09
-
-
Save gregjhogan/da98af5a50c104307412 to your computer and use it in GitHub Desktop.
Retrieve CenturyLink PPPoE username/password from technicolor C2000T
This file contains 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
# first enable telnet, and connect | |
# then you will get a '>' prompt where you want to run the following commands | |
sh | |
pidstat -l -C pppd | |
# see -u (username) and -p (password) in the output |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've got a C2000A.
sh
is password protected, but I do have access tops
andcat
. I usedps
to find the PID ofpppd
(and partial command line) then didcat /proc/$PID/cmdline
to get the user/pass.