Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I run router firmware in a virtual system?

I am interested in doing customization's to a router firmware. I want to run the router firmware in a virtualized environment so that i can run the modified code instantly without having to burn it into the router itself. And also any bugs also can be discoverd easily. And finally most importantly i will not have any risk of having to throw away my router due to buggy code. Is it possible to run router Operating systems on virtualbox and test it ?

like image 695
klijo Avatar asked Oct 04 '11 16:10

klijo


1 Answers

Most routers are based on MIPS processors. VirtualBox allows you "emulate" (it's not real emulation is the only virtualization) only your host processor (probably it's x86 or x86_64). So you can't use this software to do this. Try qemu software - it's a real emulator and can emulate lots of kinds of processors, including MIPS.

like image 166
user1460795 Avatar answered Oct 25 '22 00:10

user1460795