Hiram's profileHiram FleitasPhotosBlogListsMore Tools Help

Hiram Fleitas

Please sign the Guestbook on the bottom left and feel free to comment. Enjoy!

Hiram Fleitas

Occupation
Location
Interests
My biggest goal in life is family.

I am an Information Technology Project Manager with extensive experience in Systems Administration, Software Development and Project Leadership for employers such as, Road America and Kos Pharmaceuticals. In addition to my A+, N+, Novell Admin, MCSE and CCNA certificaitons, I persued a higher education to obtain an AA. in CIS with Miami Dade College and I am still attending DeVry University to complete a BS. in CIS.

I have 8 years of experience as an IT Professional with a blend of skills with high focus on understanding departmental business processes. In this role, I have performed project management activities such as develop and maintain project schedules, performed departmental business process analysis and worked with project resources in a diverse environment. Additionally, I have administered systems and servers, coordinated software releases and taken appropriate actions to assure prompt solutions to systems, applications and end-user problems.

Click to watch this MUST see video

Click to watch this MUST see video

  YouTube - Macworld 2008 Apple - Macworld 2008
Loading...
Thanks for visiting!
Please wait...
Sorry, the comment you entered is too long. Please shorten it.
You didn't enter anything. Please try again.
Sorry, we can't add your comment right now. Please try again later.
To add a comment, you need permission from your parent. Ask for permission
Your parent has turned off comments.
Sorry, we can't delete your comment right now. Please try again later.
You've exceeded the maximum number of comments that can be left in one day. Please try again in 24 hours.
Your account has had the ability to leave comments disabled because our systems indicate that you may be spamming other users. If you believe that your account has been disabled in error please contact Windows Live support.
Complete the security check below to finish leaving your comment.
The characters you type in the security check must match the characters in the picture or audio.
Dayhanawrote:
I like ur page!
Feb. 18
Feel free to sign this guest book.
Hot
Jan. 12
Photo 1 of 193
March 09

Talking about CCNA & School Stuff

3/09/09: CCNA
 
OSPF (Page 4-4).
Loopback interface.
EIGRP (Page 5-8).
Access Control Lists (Page 5-49)
 
 
Configure OSPF Commands From Configure Terminal:
1. rotuer ospf 1 (process-id)
2. network 192.168.94.0 0.0.0.255 area 1
3. network 192.168.93.0 0.0.0.255 area 1
4. network 199.0.94.0 0.0.0.255 area 1
5. end
6. copy run start
 
(If RIP is enabled, the router will compare the administrative distance of OSPF 110 to RIP 120 and the router OSPF configuration will be used over RIP).
 
Protocol Administrative distance
Directly connected route 0
Static route 1
EIGRP summary route 5
External BGP 20
Internal EIGRP 90
IGRP 100
OSPF 110
IS-IS 115
RIP 120
EGP 140
ODR 160
External EIGRP 170
Internal BGP 200
Unknown 255
 
Troubleshoot OSPF commands:
1. show ip protocols
2. show ip route
3. show ip ospf
4. show ip ospf interface
5. show ip ospf neighbor
 
Create a loopback address:
1. conf t
2. int loopback1
3. ip address 1.1.1.4 255.255.255.0
4. no shut
5. end
6 copy run start
 
To view interfaces: show ip interface brief
Configure EIGRP:
1. conf t
2. router eigrp 1 (autonomous system)
3. network 192.168.94.0
4. network 192.168.93.0
5. network 199.0.94.0
6. no auto-summary
7. end
8. copy run start
 
Troubleshoot EIGRP commands:
1. show ip route eigrp
2. show ip protocols
3. show ip eigrp interfaces
4. show ip eigrp neighbors
5. show ip eigrp traffic
 
NAT (Page 7-9)
====== <- s0/0/0 - Internal Network
Internal Address
====== <- s0/0/1 - Outside Network
Global Address
 
 Access Lists
 From Global Config 
 ip access-list 1 permit any any
 ip access-list 1 deny any any
 ip access-list 101 permit tcp any any eq 23 (permit any telnet connections)
 ip access-list 101 deny tcp any any eq 23 (deny any telnet connections)
 ip access-list 101 permit ip any any
 
INT - IP ACCESS GROUP 101 in or out
 
IP ACCESS-LIST 101 DENY TCP 192.168.1.0 0.0.0.255 ANY EQ 23 (192.168.1.0 network can not send telnet traffic to any network).
 
1 - 99 Standard
100 - 199 Extended
 
Configure access list for 171.1.1.1 - 25 /27 nat pool:
From Configure Terminal
1. ip nat pool mypool 171.1.1.1 171.1.1.25 netmask 255.255.255.224
2. access-list 1 171.1.1.0 0.0.0.31
3. ip nat inside source list 1 pool mypool
4. end
5. show ip nat translations
 
Configure PAT using NAT Overload
1. access-list 2 permit any
2. ip nat inside source list 2 interface s0/0/1 overload
 
March 03

Talking about CCNA & School Stuff

CCNA: 3/03/09.
 
Part 2 Volume 1: Page 2-3 Implementing VLANs and Trunks.
 
Note: Trunks send VLAN information. Used to communicate between VLANs. Require VTP configuration to communicate between multiple VLANs.
 
VTP Modes (Pg. 2-20): Server, Client & Transparent
 
VTP Configuration Guidelines (Pg. 2-25): VTP Domain Name, Mode, Password, Pruning and Version.
 
Creating a VTP Domain Commands:
1. Go into the Switch's Global Config configure terminal.
2. vtp mode server (Server, Client or Transpaernt) (Server is only needed to create, modify or delete a VLAN, if mode is client or server vlans will still syncronize).
3. vtp domain cisco (vtp domain-name)
4. vtp pruning (model specific)
5. end
6. copy run start
 
Command to Verify VTP Configuration: show vtp configuration
 
Setup an Ethernet port as a Trunk:
On both Switches from Global Config
1. interface fa0/5
2. switchport mode trunk
3. end
4. copy run start
 
Verify Trunk: show interface trunk (or switchport, which shows more details)
 
Note: dot1q a.k.a. 802.1q is the type of encapsulation used for VTP Trunks.
 
Creating a VLAN (must be done under Server VTP mode):
1. conf t
2. vlan 10 (vlan id)
3. name vlan10 (vlan name)
4. end
5. copy run start
 
View VLANs: show vlan
 
Adding ports to a VLAN:
1. conf t
2. int range fa0/6 - 8 (or int fa/06 for a single port)
3. switchport access vlan 10 (id)
4. end
5. copy run start
 
What interface has a particular MAC?
1. show mac-address-table
 
What interfaces are operating as a Trunk?
1. show interface trunk
 
What kind of device is connected?
1. show cdp neighbors (cisco discovery protocol will show the model number under platform).
 
How did a VTP device receive the latest VLAN and VTP information..
1. show vtp status (get the IP address of last configuration updated by)
2. show cdp neighbors detail (identify device name with the ip address).
 
HW: Study www.9tut.com
 
March 02

Talking about CCNA & School Stuff

CCNA: 3/02/09. Switches
 
Problem:
How to rename and put aside the configuration of a Switch?
Answer:
1. Hold the Mode button on the switch and plug it to the electricity to turn it on for about 10-15 seconds.
2. At the terminal console type flash_init (Initializes the flash to allow you to modify the configuration).
3. dir flash:
4. rename flash:config.text flash:config.text.123
5. power off and back on
 
Problem:
Configure hostname, console password, enable password, telnet 2 sessions, exec-timeout 20, encrypt everything, banner motd and set IP 192.168.94.100 to interface vlan1.
Answer:
1. enable
2. config t
3. hostname SwitchQueBola
4. line vty 0 1
5. password 123
6. login
7. exec-timeout 20
8. exit
9. line con 0
10. password 123
11. login
12. exec-timeout 20
13. exit
14. service password-encryption
15. enable secret 123
16. interface vlan1
17. ip address 199.0.94.2
18. no shutdown
19. exit
20. banner motd % 
 
!!!! DO NOT ATTEMPT TO LOGIN !!!!
!!! AUTHORIZZED ACCESS ONLY !!!
 
%
21. copy run start.
 
Enable RIP to communicate between router and switch
1. From Router's Global Config
2. router rip
3. version 2
4. network 199.0.94.0
5. exit
6. copy run start
 
Configure DHCP on Router
1. From Global Config service dhcp
2. ip dhcp pool CiscoPool
3. network 199.0.94.0 /24
4. domain-name cisco.com
5. dns-server 199.0.94.1
6. default-router 199.0.94.1
7. lease 5
8. exit
9. exit
10. copy run start
12. connect a client workstation to the switch and release/renew.
13. ping 199.0.9x.x to verify communication.
February 26

Talking about CCNA & School Stuff

CCNA:
2/26/09
 
Problem:
By-pass NVRAM, overwrite start, change hostname, enable telnet with password 123 at login and 30 minute timeout, console with the same parameters as telnet sessions, secure passwords, set IP 192.168.93.2 on s0/0/1 and 192.168.94.1 on s0/0/0, and configure rip v.2 for both networks.
Answer:
1.Turn on router and hit Ctrl+Break
2. configreg 0x2142
3. reset
4. no (to skip wizard)
5. enable
6. show run (should be blank, if not then show ver to verify OSI is 0x2142, if its 0x2102 start over).
7. copy run start
8. config t
9. config-register 0x2102
10. show ver (confirm that at next boot it will be 0x2102)
11. copy run start
12. reload
13. enable
14. config t
15. hostname Router0
16. line vty 0 4
17. password 123
18. login
19. exec-timeout 30
20. exit
21. line con 0
22. password 123
23. login
24. exec-timeout 30
25. exit
26. service password-encryption
27. enable secret 123
28. interface serial0/0/0
29. ip address 192.168.94.1
30. no shutdown
31. exit
32. interface serial0/0/1
33. ip address 192.168.93.
34. no shutdown
35. exit
36. router rip
37. version 2
38. network 192.168.94.0
39. network 192.168.93.0
40. exit
41. copy run start.
 
Problem:
10.0.0.0: 2000 usable hosts needed for two network range each?
 
                Decimal :     128 |       64 |       32 |     16 |       8 |       4 |       2 | 1
                 Subnet :     128 |     192 |     224 |   240 |   248 |   252 |   254 | 255
                       Bits :         1 |         1 |         1 |       1 |       1 |       1 |       1 | 1
Decimal 2nd octect: 32768 | 16384 |  8192 | 4096 | 2048 | 1024 |    512 | 256
 
 
Answer: x.x.248.0
1st Range: 10.0.0.0 - 10.0.7.255
2nd Range: 10.0.8.0 - 10.0.15.255
 
Problem:
10.0.0.0: 32 usable hosts needed for two network range each?
Answer: x.x.x.192
1st Range: 10.0.0.0 - 10.0.0.63
2nd Range: 10.0.0.64 - 10.0.0.127
 
Problem:
65.74.17.42: 30 usable hosts needed for two network range each?
Answer: x.x.x.224
1st Range: 65.74.17.42 - 65.74.17.73
2nd Range: 65.74.17.74 - 65.74.17.105
 
Problem: How many hosts? Subnet masks? IP Rages?
Answer:
 
Problem: Network 172.16.0.0, 1st network needs 2 usable hosts, 2nd network needs 11 usable hosts, 3rd network needs 18 usable hosts and 4th network needs 37 usable hosts.How many hosts? Subnet masks? IP Rages?
 
Answer: 2/30, 11/28, 18/27, 37/26
1st network range: 172.16.0.0-3
2nd network range: 172.16.0.4-19
3rd network range: 172.16.0.20-51
4th network range: 172.16.0.52-115
 
HW: Practice test and review books. At least 5 hrs a day for this weekend. (Start Cramming).
 
February 25

Talking about CCNA & School Stuff

CCNA 
2/25/09: Volume 2 Page 5-19. Enabling Internet Connection - Page 6-4 Discovering Neighbors on the Network. Enabling. Study www.9tut.com 2 hrs a day and 3 hrs on Fri, Sat & Sun to test on Monday, 3/09/09.
 
NAT (Client - NAT device - Destination) (Multiple Clients - Multiple External IP - Destination)
192.168.1.100 - 171.69.58.80 - 74.125.45.100
192.168.1.102 - 171.69.58.81 - 74.125.45.100
192.168.1.103 - 171.69.58.82 - 74.125.45.100
etc...
 
PAT (Client - NAT device - Destination) (Multiple Clients - One External IP - Destination)
192.168.1.100:1056 - 171.69.58.80:1056 - 74.125.45.100:80
192.168.1.102:1056 - 171.69.58.80:1056 - 74.125.45.100:80
192.168.1.103:1056 - 171.69.58.80:1056 - 74.125.45.100:80
etc...
 
PAT is commonly used today. NAT is more costly because each client (local IP address) might need it's own external address to be translated, incase all clients are connecting to the Internet at the same time. Also, NAT can slower.
 
Static Route Command:
RouterX (config)# ip route  network   [mask]  {address | interface}  [distance]  [permanent]
 
Group1: Network 192.168.91.0 at s0/0/0 has IP 192.168.91.1 which is physically connected to 192.168.91.2 (Router at Group2: s0/0/1 192.168.91.2, s0/0/0 has IP 192.168.93.1)
How would Group1 connect to 192.168.93.1?
On Group2: RouterX (config)# ip route  192.168.92.0 255.255.255.0 192.168.91.2
 
Enabling RIP
Classes of Routing Protocol: Distance Vector, Hybrid Routing, Link-State.
 
Configuring RIP v.2
1. enable
2. config t
3. router rip
4. version 2
5. network 192.168.93.0
6. network 192.168.94.0
7. exit
(192.168.93.2 & 192.168.94.1 are the IPs on the 2 attached interfaces)
 
View Route Table
From Privilaged Mode: show ip route (You can also see the administrative distance and number of hops per network)
RouterX# show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
R    192.168.91.0/24 [120/2] via 192.168.93.1, 00:00:23, Serial0/0/1
C    192.168.93.0/24 is directly connected, Serial0/0/1
R    192.168.92.0/24 [120/1] via 192.168.93.1, 00:00:23, Serial0/0/1
R    192.168.95.0/24 [120/1] via 192.168.94.2, 00:00:15, Serial0/0/0
C    192.168.94.0/24 is directly connected, Serial0/0/0
R    192.168.96.0/24 [120/1] via 192.168.94.2, 00:00:15, Serial0/0/0
RouterX#
 
Note:
RIP v2 multicast every 30 seconds.
RIP v1 broadcast every 30 seconds.
 
Command to show rip multicast/broadcast: debug ip rip
Command to stop debuging: no debug all
 
Cisco Discovery Protocol Common Commands
1. enable
2. show cdp
3. show cdp detail
 
February 24

Talking about CCNA & School Stuff

CCNA 
2/24/09
 
Problem:
By-pass NVRAM, overwrite start, change hostname, enable telnet with password 123 at login and 30 minute timeout, and console with the same parameters as telnet sessions.
Answer:
1.Turn on router and hit Ctrl+Break
2. configreg 0x2142
3. reset
4. no (to skip wizard)
5. enable
6. show run (should be blank, if not then show ver to verify OSI is 0x2142, if its 0x2102 start over).
7. copy run start
8. config t
9. config-register 0x2102
10. show ver (confirm that at next boot it will be 0x2102)
11. copy run start
12. reload
13. enable
14. config t
15. hostname Router0
16. line vty 0 4
17. password 123
18. login
19. exec-timeout 30
20. exit
21. line con 0
22. password 123
23. login
24. exec-timeout 30
25. exit
26. copy run start.
 
Encrypting passwords:
1. enable
2. config t
3. enable secret 123
4. service password-encryption
 
Router's Time Clock:
1. enable
2. clock set 21:00:00 24 Feb 2009 (hh:mm:ss DD Month YYYY)
3. show clock
 
Create a Message of the Day Banner (Should be unwelcoming)
1. enable
2. config t
3. banner motd %
 
!!!! DO NOT ATTEMPT TO LOGIN !!!!
!!! AUTHORIZZED ACCESS ONLY !!!
 
%
4. exit
5. copy run start
 
NOTE: Smart Serial Cable DCE - DTE. The router connected with the DCE end sets the clock rate. For example, when ordering half a T1 the provider will set the clock rate to 768 Kb/s as the clock rate on the DCE device. For a full T1 it would be 1.5 Mb/s.
 
Configuring Serial Interfaces:
1. enable
2. config t
3. interface serial 0/0/0 (0 block #/0 slot #/0 interface #)
4. ip address 192.168.94.1 255.255.255.0
5. no shut
6. interface serial 0/0/1 (0 block #/0 slot #/1 interface #)
7. ip address 192.168.93.2 255.255.255.0
8. no shut
9. exit
10. ping 192.168.93.1 (successfully if interface at 192.168.93.1 is up and configured)
11. ping 192.168.94.2 (successfully if interface at 192.168.93.1 is up and configured)
 
Interface Statuses:
1. enable
2. show ip interface brief
 
Erase Configuration:
1. enable
2. write erase
3. reload
 
Problem:
1. With blank NVRAM set hostname, telnet with password and timeout at 20 minutes, password encryption and secret, banner, clock, serial interfaces ip addresses and save to NVRAM.
Answer:
1. enable
2. config t
3. hostname Router0
4. enable secret 123
5. line vty 0 4
6. password 123
7. login
8. exec-timeout 20
9. exit
10. service password-encryption
11. banner motd %
 
!!!! DO NOT ATTEMPT ATTEMPT TO LOGIN !!!!
!!!! AUTHORIZED ACCESS ONLY !!!!
 
%
12. exit
13. clock set 21:12:00 24 Feb 2009
14. config t
15. interface s0/0/0
16. ip address 192.168.94.1 255.255.255.0
17. no shut
18. interface s0/0/1
19. ip address 192.168.93.2 255.255.255.0
20. no shut
21. exit
22. copy run start
 
View Fast Ethernet transmission mode:
1. enable
2. show interface
 
NOTE: Router automatically detects if the DCE end of the cable is connected to the Serial interface and it will set a default clock rate of 2000.
 
HW: Study www.9tut.com, review notes of commands and practice on Packet Tracer 5.1.
 

The Scroll Marked I

The Ten Ancient Scrolls for Success by Og Mandino. (Google it to see stores that sell the latest edition) 
Hardcover: 108 pages
Publisher: Frederick Fell (October 25, 1997)
Language: English
ISBN-10: 0811908569
ISBN-13: 978-0811908566
 
This is one of my old books that I've recently picked up and started reading again in December of 2008. It was recommended to me sometime between 1998 and 2003 by my great friend, Ozzie and so I'd like to share its knowledge and discuss it here in my blog. I will skip the foreword and introduction for now, so it goes...
 
 
The Scroll Marked I
   Today I begin a new life. Today I shed my old skin which hath too long suffered the bruises of failure and the wounds of mediocrity.
     Today I am born anew and my birthplace is a vineyard where there is fruit for all.
     Today I will pluck grapes of wisdom from the tallest and fullest vines in the vineyard, for these were planted by the wisest of my profession who have come before me, generation upon generation.
     Today I will savor the taste of grapes from these vines and verily I will swallow the seed of success buried in each and new life will sprout within me.
     The career I have chosen is laden with opportunity yet it is fraught with heartbreak and despair and the bodies of those who have failed, were they piled one atop another, would cast its shadow down upon all the pyramids of the earth.
     Yet I will not fail, as the others, for in my hands I now hold the charts which will guide me through perilous waters to shores which only yesterday seemed but a dream.
     Failure no longer will be my payment for struggle. Just as nature made no provision for my body to tolerate pain neither has it made any provision for my life to suffer failure. Failure, like pain, is alien to my life. In the past I accepted it as I accepted pain. Now I reject it and I am prepared for wisdom and principles which will guide me out of the shadows into the sunlight of wealth, position, and happiness far beyond my most extravagant dreams until even the golden apples in the Garden of Hesperides will seem no more than my just reward.
Star            Star            Star 
   Time teaches all things to he who lives forever but I have not the luxury of eternity. Yet, within my allotted time I must practice the art of patience for nature acts never in haste. To create the olive, king of all trees, a hundred years is required. An onion plant is old in nine weeks. I have lived as an onion plant. It has not pleased me. Now I wouldst become the greatest of olive trees and, in truth, the greatest of salesmen.
     And how will this be accomplished? For I have neither the knowledge nor the experience to achieve greatness and already I have stumbled in ignorance and fallen into pools of self-pity. The answer is simple. I will commence my journey unencumbered with either the weight of unnecessary knowledge or the handicap of meaningless experience. Nature already has supplied me with knowledge and instinct far greater than any beast in the forest and the value of experience is overrated, usually by old men who nod wisely and speak stupidly.
     In truth, experience teaches thoroughly yet her course of instruction devours men's years so the value of her lessons diminishes with the time necessary to acquire her special wisdom. The end finds it wasted on dead men. Furthermore, experience is comparable to fashion; an action that proved successful today will be unworkable and impractical tomorrow.
     Only principles endure and these I now possess, for the laws that will lead me to greatness are contained in the words of these scrolls. What they will teach me is more to prevent failure than to gain success, for what is success other than a state of mind? Which two, among a thousand wise men, will define success in the same words; yet failure is always described but one way. Failure is man's inability to reach his goals in life, whatever they may be.
Star            Star            Star 
   In truth, the only difference between those who have failed and those who have succeeded lies in the difference of their habits. Good habits are the key to all success. Bad habits are the unlocked door to failure. Thus, the first law I will obey, which precedeth all others is -- I will form good habits and become their slaves.
     As a child I was slave to my impulses; now I am slave to my habits, as are all grown men. I have surrendered my free will to the years of accumulated habits and the past deeds of my life have already marked out a path which threatens to imprison my future. My actions are ruled by appetite, passion, prejudice, greed, love, fear, environment, habit, and the worst of these tyrants is habit. Therefore, if I must be a slave to habit let me be a slave to good habits. My bad habits must be destroyed and new furrows prepared for good seed.
     I will form good habits and become their slave.
     And how will I accomplish this difficult feat? Through these scrolls, it will be done, for each scroll contains a principle which will drive a bad habit from my life and replace it with one which will bring me closer to success. For it is another of nature's laws that only a habit can subdue another habit. So, in order for these written words to perform their chosen task, I must discipline myself with the first of my new habits which is as follows:
 
I will read each scroll for thirty days in this prescribed manner, before I proceed to the next scroll.
 
     First, I will read the words in silence when I arise. Then, I will read the words in silence after I have partaken of my midday meal. Last, I will read the words again just before I retire at day's end, and most important, on this occasion I will read the words aloud.
     On the next day I will repeat this procedure, and I will continue in like manner for thirty days. Then, I will turn to the next scroll and repeat this procedure for another thirty days. I will continue in this manner until I have lived with each scroll for thirty days and my reading has become habit.
     And what will be accomplished with this habit? Herein lies the hidden secret of all man's accomplishments. As I repeat the words daily they will soon become a part of my active mind, but more important, they will also seep into my other mind, that mysterious source which never sleeps, which creates my dreams, and often makes me act in ways I do not comprehend.
Star            Star            Star 
   As the words of these scrolls are consumed by my mysterious mind I will begin to awake, each morning, which a vitality I have never known before. My vigor will increase, my enthusiasm will rise, my desire to meet the world will overcome every fear I once knew at sunrise, and I will be happier than I ever believed it possible to be in this world of strife and sorrow.
     Eventually I will find myself reacting to all situations which confront me as I was commanded in the scrolls to react, and soon these actions and reactions will become easy to perform, for any act with practice becomes easy.
     Thus a new and good habit is born, for when an act becomes easy through constant repetition it becomes a pleasure to perform and if it is a pleasure to perform it is man's nature to perform it often. When I perform it often it becomes a habit and I become its slave and since it is a good habit this is my will.
 
Today I begin a new life.
 
     And I make a solemn oath to myself that nothing will retard my new life's growth. I will lose not a day from these readings for that day cannot be retrieved nor can I substitute another for it. I must not, I will not, break this habit of daily reading from these scrolls and, in truth, the few moments spent each day on this new habit are but a small price to pay for the happiness and success that will be mine.
Star            Star            Star 
   As I read and re-read the words in the scrolls to follow, never will I allow the brevity of each scroll nor the simplicity of its words to cause me to treat the scroll's message lightly. Thousands of grapes are pressed to fill one jar with wine, and the grapeskin and pulp are tossed to the birds. So it is with these grapes of wisdom from the ages. Much has been filtered and tossed to the wind. Only the pure truth lies distilled in the words to come. I will drink as instructed and spill not a drop. And the seed of success I will swallow.
 
Today my old skin has become dust. I will walk tall among men and they will know me not, for today I am a new man, with a new life.
 
Loading...
Capt Despinge
Xbox Live GamerCard
Rep:
5/5 stars
Score:
3520
Zone:
Pro
Halo 3Prince of PersiaFable IININJA GAIDEN 2FIFA 09

MLG's Top Ten: Halo 3

  Game Up MLG Top 10: February
Loading...
No content has been added yet.

Halo 3 E3 Trailer Audio Track