Forfatterarkiv: benne

Password recovery on Cisco-routers

Step-by-step… 1. Get connected with a rollover-cable from your serial-interface, to the routers console-interface. 2. Coldboot your router, and within the first 60 secs of the boot-sequence send the break signal. 3. You’re now in boot-mode, and now we can … Læs resten

Udgivet i Cisco, Knowledge Base, Networking, Old Base | Skriv en kommentar

Using threads in perl

Remember setting threads in your ./Configure, cause it’s not compiled by default! Example: #!/usr/bin/perl use Thread; new Thread \&test_sub; sub test_sub { while(1) { sleep 2; print “TestSUB\n”; } } while(1){ sleep 3; print “NormalProc\n”; } For more information, see … Læs resten

Udgivet i Knowledge Base, Old Base, Programmering | Skriv en kommentar