Showing posts with label Pemu. Show all posts
Showing posts with label Pemu. Show all posts

Pemu – Pix Emulator with GNS3

Posted by Ahsan Tasneem | 11:20 PM | , , , , , , | 0 comments »

The guys at GNS3.net have done it again! They just released version .04 of their incredible network emulation software. There are lots of new features including Pemu integration, c1700 and WICs Support and Project feature (you can keep router configs, nvram …).
Here is a full list of the new features:
  • A dynamic mode (no design/emulation modes)
  • A new .net save/load.
  • c1700 and WICS support.
  • PIX emulation.
  • Dynamips’s ATM bridge.
  • Capture feature for links from the GUI.
  • IDLE PC calculation from the GUI.
  • GUI improvements (save the window state when closing GNS3 …)
  • Annotation feature.
  • Project feature (you can keep router configs, nvram …)
  • NULL NIO support.
  • PDF export.
  • New languages.
I'll be posting more on this, keep following @ahsantasneem. Do let me know if you face any problem.

How To - Step By Step Installation of JunOS on GNS3 [Part 4]

Posted by Ahsan Tasneem | 11:08 PM | , , , , , , , , , , , , , , , , , , | 0 comments »


Testing

To check if everything work, let’s configure 2 Olives:
root@%cli
root>edit
[edit]
root#

[edit]
root#set system root-authentication plain-text-password
New password:
Retype new password:

[edit]
root#set interfaces em0 unit 0 family inet address 10.0.0.1/8
[edit]
root#commit
commit complete
Configure the other device using the same commands but with another IP address (e.g. 10.0.0.2/8) and ping.

How To - Step By Step Installation of JunOS on GNS3 [Part 3]

Posted by Ahsan Tasneem | 11:06 PM | , , , , , , , , , , , , , , , , , , | 1 comments »

Updating JunOS
You can update your version of JunOS from the CLI with the following command:

request system software add [jinstall_package]

Running your router(s)
Now you have a base olive image. Qemu allows you to use this as a base for other images and only writing the changes to your “slave” images saving on disk space! You can also use less memory for each Qemu instance.
Create a new image off of your base image. Repeat for all your routers you want to emulate:

qemu-img create
-b olive-base.img -f qcow2 R1.img

Start your router and then telnet to it:
2001 Once logged in, you can type “cli” to launch the JunOS command line interpreter, exit to … exit and halt to shutdown FreeBSD. Remember to kill your qemu instance(s).
qemu R1.img -m 96 -nographic -daemonize -serial telnet::2001,server,nowait \
-localtime -net nic,macaddr=00:aa:00:60:01:01,model=e1000 -net user telnet localhost


Related Posts Plugin for WordPress, Blogger...