Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 05-24-2013, 08:42 PM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Networking › Router And Switch
[Tutor] Install Vyatta Router on Qemu image for GNS3

Home General Computer Multimedia Business Lounge

Post Reply 
Tweet
Threaded Mode | Linear Mode
Tutor Install Vyatta Router on Qemu image for GNS3
12-29-2011, 02:07 PM (This post was last modified: 12-29-2011 04:55 PM by Motaro Irhaby.)
Post: #1
Motaro Irhaby Offline
Administrator
*******
Administrators
Posts: 393
Joined: Sep 2011
Reputation: 94
Install Vyatta Router on Qemu image for GNS3
assalamualikum :)

sedikit ingin membuat tutorial mengenai vyatta :)
semoga bisa berlanjut ke tutorial dan pembahasannya di bantu dari teman-teman devilzc0de :)

Vyatta software adalah software yang siap digunakan, distribusi berbasis Debian yang dirancang untuk mengubah hardware standar x86 menjadi enterprise-class router / firewall . Vyatta software termasuk dukungan untuk interfaces jaringan yg biasa digunakan, dan protokol routing industri-standar dan protokol manajemen. semua fitur ini dapat dikonfigurasi melalui Command Line Interfaces (CLI) atau web berbasis (GUI). Vyatta software tersedia sebagai Community Edition gratis serta berjenjang Perangkat Lunak Langganan yang mencakup pemeliharaan, upgrade dan dukungan.

Vyatta update paket fitur dengan perbaikan besar , kualitas dan stabilitas, termasuk perbaikan manajemen konfigurasi, perangkat tambahan OpenVPN, IPv6 DNS resolver dan re-basic untuk 'Squeeze' Debian 6.0. Pemeliharaan signifikan dilakukan oleh tim Vyatta, termasuk update paket berikut: iptables 1.4.9, ipset 4.3, pmacct 0.12.3, Net-SNMP 5.6, ntpd, 4.2.6p2, BusyBox 1.18.0, Open VM Tools, 8.4.2, vbash 4.1.
url :
Quote:http://www.vyatta.com/

disini saya akan coba membuat tuts tentang installasi Vyatta dan yg nantinya bisa dijalnkan di GNS3 agar bisa lebih gampang untuk belajar simulasi nya ketawa

1. Download Vyatta Core LiveCD iso
Quote:http://www.vyatta.com/downloads/index.php

2. Create Qemu qcow2 image (masuk dir qemu)
Quote:- linux : /usr/local/bin/qemu-img create -f qcow2 ./vyatta6.1vc.img 6G
- windows : qemu-img.exe create vyatta.img -f qcow2 6G

3. Boot Qemu image with Vyatta LiveCD
Quote:- linux : /usr/local/bin/qemu -boot d -hda ./vyatta6.1vc.img -cdrom ./vyatta-livecd_xxxx.xxxx.iso -m 512
- windows : qemu.exe -m 512 -hda vyatta.img -boot d -localtime -cdrom vyatta-xxx.iso

4. Install Live CD
sampai proses booting selesai . ada menu login .
gunakan
Quote:user : vyatta
password : vyatta
selesai login ketikan "install-system"
dan selanjutnya seperti ini proses installasinya ..
proses nya sama kaya install biasa bisa di VMware atau virtualbox
Quote:Would you like to continue? (Yes/No) [YES]: Enter

Partition (Auto/Union/Parted/Skip) [Auto]: Enter

Install the image on? [sda]: Enter

This will destroy all data on /dev/sda.
Continue? (Yes/No) [No]: Yes

How big of root partition should I create? (1000MB - 6442MB) [6442]MB: Enter

I found the following configuration files
/opt/vyatta/etc/config/config.boot
Which one should I copy to sda? [/opt/vyatta/etc/config/config.boot] Enter

Enter password for administrator account
Enter vyatta password: password_kamu
Retype vyatta password: password_kamu

Which drive should GRUB modify the boot partition on? [sda]: Enter

Done!
sekarang berhasil menginstall Vyatta.

5. NIC Vyatta untuk GNS3 Qemuwrapper
GNS3 qemuwrapper selalu mengubah alamat MAC dari NIC yg ada selama boot misalnya Qemu. Vyatta diprogram untuk menyimpan alamat MAC dari interface ethernet yang ada. Jika alamat MAC dari NIC tertentu berubah (dengan GNS3 qemuwrapper) Vyatta akan mempertahankan interfaces dengan MAC lama dan membuat Interfaces baru dengan MAC baru.

beberapa step yg didapat di google
a. Enable root account on Vyatta
Quote:vyatta$ configure
vyatta#set system login user root authentication plaintext-password test
vayata# commit
vyatta# save

exit
sekarang ganti menggunakan user root:

ketikan
su
Password: test

b) Remove vyatta_net_name script (membutuhkan akun root)
Quote:cd /lib/udev/
mkdir backup
cp ./vyatta_net_name /backup
rm ./vyatta_net_name

6. Setup serial console login
Konfigurasi ini pengalihan output ke ttyS0 serial dan memungkinkan kita untuk menggunakan konsol di GNS3.
Login sebagai root dengan perintah su dan memodifikasi file konfigurasi grub:
Quote:nano /etc/default/grub

ganti script yang ada dengan script dibawah ini (atau bisa di backup terlebeih dahulu) :
Quote:# This file is sourced by update-grub, and its variables are propagated
# to its children in /etc/grub.d/

GRUB_DEFAULT=0
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="console=tty0 console=ttyS0,9600n8"

# Uncomment to disable graphical terminal (grub-pc only)
GRUB_TERMINAL=serial
GRUB_SERIAL_COMMAND="serial --speed=9600 --unit=0 --word=8 --parity=no --stop=1"


# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
selesai simpan dan ketikan :
Quote:update-grub

selesai :)
oiya ini yang sudah jadi .
http://sourceforge.net/projects/gns-3/fi...ppliances/
http://sourceforge.net/projects/gns-3/fi...r/download

bila ada yang salah .. mohon dikoreksi yah :)
newbie sebatas belajar belajar

regards
Motaroirhaby

wassalamualaikum ketawa
Find all posts by this user
Quote this message in a reply
 Reputed by :  anko_kum4ru(+1) , Emily.Josan♫(+1) , ditatompel(+1) , ketek(+1) , Menthol(+1)
12-29-2011, 02:23 PM
Post: #2
anko_kum4ru Offline
./b0k3p3r_4r34
****
Global Moderators
Posts: 1,451
Joined: Dec 2010
Reputation: 10
RE: Install Vyatta Router on Qemu image for GNS3
wiihh...
lengkap.. mantap
cek kutang... malu
Visit this user's website Find all posts by this user
Quote this message in a reply
12-29-2011, 02:27 PM
Post: #3
tela Offline
./Devilz 1st Cadet
Posts: 40
Joined: Apr 2011
Reputation: 0
RE: Install Vyatta Router on Qemu image for GNS3
nice tutor kak motaro :)
Find all posts by this user
Quote this message in a reply
12-29-2011, 02:28 PM
Post: #4
xiphiet Offline
./Devilz 1st Cadet
Posts: 29
Joined: Oct 2011
Reputation: 2
RE: Install Vyatta Router on Qemu image for GNS3
wah.. mantep mas.. saatnya belajar.. belajar
Find all posts by this user
Quote this message in a reply
12-29-2011, 02:45 PM
Post: #5
ditatompel Offline
Administrator
*******
Administrators
Posts: 2,168
Joined: Dec 2010
Reputation: 367
RE: Install Vyatta Router on Qemu image for GNS3
Kang motaro emang mantap smangat
Find all posts by this user
Quote this message in a reply
12-29-2011, 02:52 PM
Post: #6
Super Moderator Offline
Wahyu Adi Prasetyo
****
Global Moderators
Posts: 6,956
Joined: Jan 2010
Reputation: 237
RE: Install Vyatta Router on Qemu image for GNS3
beuh,vyatta kaget
mantap
Visit this user's website Find all posts by this user
Quote this message in a reply
12-29-2011, 09:27 PM
Post: #7
Vanzoel Offline
Laskar Devilzc0de
Posts: 218
Joined: Feb 2011
Reputation: 0
RE: Install Vyatta Router on Qemu image for GNS3
mantap kang,,
tak arsipin dulu buat belajar ,,
Find all posts by this user
Quote this message in a reply
12-29-2011, 10:52 PM
Post: #8
ketek Offline
bocah ingusan
*******
Administrators
Posts: 2,174
Joined: Jan 2010
Reputation: 378
RE: Install Vyatta Router on Qemu image for GNS3
nice... mantap
cobain ah.. btw ni cuma trial 30 hari aza ya omz?
Find all posts by this user
Quote this message in a reply
12-30-2011, 12:18 AM
Post: #9
Motaro Irhaby Offline
Administrator
*******
Administrators
Posts: 393
Joined: Sep 2011
Reputation: 94
RE: Install Vyatta Router on Qemu image for GNS3
mksih kakakk semua . ketawa
mari belajar bareng

om ketek . itu saya download dr repo lokal dr site temen . katanya itu versi yg comunitty
jadi itu yg free , bukan trial .. kata teman saya begitu ketawa
Find all posts by this user
Quote this message in a reply
12-30-2011, 12:38 AM
Post: #10
Baplak Offline
./Devilz Commander
Posts: 280
Joined: Dec 2010
Reputation: 0
RE: Install Vyatta Router on Qemu image for GNS3
Mantapppppppp
Visit this user's website Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Topic Tools
Topic Link :
BBCode :
HTML Code :
View a Printable Version Send Thread to a Friend Subscribe to this thread
Submit Google Submit Face book Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [Solved] Cara Setting Router Rb750g vbenk 7 529 08-07-2012 01:30 AM
Last Post: vbenk
  [Ask] Router Wifi not connected ? CyberKaze 11 1,232 01-02-2012 10:06 AM
Last Post: cangcimen

Users Browsing
1 Guest(s)

  • Contact Us
  • devilzc0de
  • Return to Top
  • Mobile Version
  • RSS Syndication
  • Help
Current time: 05-24-2013, 08:42 PM Powered By MyBB, © 2002-2013 MyBB Group. Theme created by Justin S. | Mixed By Chaer.Newbie | Fixed By Aditya

USING THIS SITE INDICATES THAT YOU HAVE READ AND ACCEPT OUR TERMS. IF YOU DO NOT ACCEPT THESE TERMS, YOU ARE NOT AUTHORIZED TO USE THIS SITE