Post Your Lab (PICS)

1151618202148

Comments

  • tierstentiersten Member Posts: 4,505
    I'm more concerned about the state of your hearing with that lot buzzing away behind you :)
  • JollycorkJollycork Member Posts: 149
    while having my lab up almost 24/7, the wife complained the electric bill went up $25USD to $30USD per month....and I don't have half of what you have...

    Maybe a diesel generator?

    Awsome lab!
  • CyberNBDCyberNBD Member Posts: 8 ■□□□□□□□□□
    phoeneous wrote: »
    What's that grey panel on the wall? AC outlet?
    Indeed Belgian style :)
    Jollycork wrote: »
    while having my lab up almost 24/7, the wife complained the electric bill went up $25USD to $30USD per month....and I don't have half of what you have...

    Maybe a diesel generator?

    Awsome lab!

    Thanks!
    Luckily for my electricity bill I don't have the lab running 24/7. Only the two left-side racks excluding the VMware server in the second rack are running 24/7 since those devices are part of my home network. The rest I only switch on when I need it. I'm using the IP 7970 phone on my desk, which can control the APC PDU's, for that icon_cool.gif

    5187112285_59b1c85395_z.jpg
    5187112187_1e61300452_z.jpg
  • zerglingszerglings Member Posts: 295 ■■■□□□□□□□
    simply wrote: »
    Noticed you have CCDA, CCNP, but you don't list CCNA... You had to get CCNA before getting CCNP or CCDA correct?
    chmorin wrote: »
    The CCNA is a pre-req for the CCNP, but it is not for the CCDA. Alot of people don't list previous certifications in the path because they are implied.

    What he said...
    bertieb wrote: »
    Nice lab zerglings btw

    Thanks.
    mgeorge wrote: »
    I just updated my lab folks ^_^ Figured i 'd post a picture. Added three 2811's

    Nice! Wish I had more money to spare so I could've gotten 2811s instead of 2801s. Though, 2801s will serve my needs.
    :study: Life+
  • chmorinchmorin Member Posts: 1,446 ■■■■■□□□□□
    My company does not even invest in 7970's XD I DREAM of being able to get them in my lab. Very nice, sir.
    Currently Pursuing
    WGU (BS in IT Network Administration) - 52%| CCIE:Voice Written - 0% (0/200 Hours)
    mikej412 wrote:
    Cisco Networking isn't just a job, it's a Lifestyle.
  • pitviperpitviper Member Posts: 1,376 ■■■■■■■□□□
    CyberNBD wrote: »
    I'm using the IP 7970 phone on my desk, which can control the APC PDU's, for that icon_cool.gif

    Please expound on this - You've got my attention :)
    CCNP:Collaboration, CCNP:R&S, CCNA:S, CCNA:V, CCNA, CCENT
  • CyberNBDCyberNBD Member Posts: 8 ■□□□□□□□□□
    pitviper wrote: »
    Please expound on this - You've got my attention :)

    It's quite simple.

    Each menu item points to a PHP script.
    These scripts execute snmpset command(s) followed by an snmpget command. The snmpset is used to switch te port, the snmpget is used to display the new state of the switched port(s) for verification.

    There is also one script called status. This includes snmpget commands for all ports that can be switched through the IP phone. That's what's displayed on the second picture.
  • jason_lundejason_lunde Member Posts: 567
    CyberNBD wrote: »
    It's quite simple.

    Each menu item points to a PHP script.
    These scripts execute snmpset command(s) followed by an snmpget command. The snmpset is used to switch te port, the snmpget is used to display the new state of the switched port(s) for verification.

    There is also one script called status. This includes snmpget commands for all ports that can be switched through the IP phone. That's what's displayed on the second picture.

    That is one of the coolest things I have seen to date. How do you integrate the phone with the php script, or how is integration done (if its not to much info)? BTW, badass lab man, simply badass.
  • pitviperpitviper Member Posts: 1,376 ■■■■■■■□□□
    CyberNBD wrote: »
    It's quite simple.

    Each menu item points to a PHP script.
    These scripts execute snmpset command(s) followed by an snmpget command. The snmpset is used to switch te port, the snmpget is used to display the new state of the switched port(s) for verification.

    There is also one script called status. This includes snmpget commands for all ports that can be switched through the IP phone. That's what's displayed on the second picture.

    AMAZING! I wonder if it would work with a couple of APC 7901s :)

    Love the lab btw!
    CCNP:Collaboration, CCNP:R&S, CCNA:S, CCNA:V, CCNA, CCENT
  • CyberNBDCyberNBD Member Posts: 8 ■□□□□□□□□□
    That is one of the coolest things I have seen to date. How do you integrate the phone with the php script, or how is integration done (if its not to much info)? BTW, badass lab man, simply badass.

    This can be done through the services button of the phone. You can point the services URL to a web server and make the menu's by creating XML files.

    Snippet of the PDU control menu XML file:
    <CiscoIPPhoneMenu>
    <Title>PDU Control</Title>
    <Prompt>Select Object</Prompt>
    
    <MenuItem>
    <Name>3 LAB On</Name>
    <URL>http://10.0.0.201/APC/labon.php</URL>
    </MenuItem>
    
    <MenuItem>
    <Name>4 LAB Off</Name>
    <URL>http://10.0.0.201/APC/laboff.php</URL>
    </MenuItem>
    
    <MenuItem>
    <Name>5 VMWare On</Name>
    <URL>http://10.0.0.201/APC/vmon.php</URL>
    </MenuItem>
    
    <MenuItem>
    <Name>6 VMWare Off</Name>
    <URL>http://10.0.0.201/APC/vmoff.php</URL>
    </MenuItem>
    
    <MenuItem>
    <Name>Status</Name>
    <URL>http://10.0.0.201/APC/status.php</URL>
    </MenuItem>
    </CiscoIPPhoneMenu>
    
    I'm in the process of creating a blog (maybeye with some (free) lab rack rentals, although I'm struggling with the frontend part of the scheduling at the moment). When it 's finished I will make a blog post concerning the set-up of this APC control functionality.
    pitviper wrote: »
    AMAZING! I wonder if it would work with a couple of APC 7901s icon_smile.gif

    Love the lab btw!

    Thanks icon_smile.gif

    APC 7901 should be no problem. It's the same as the 7921 only 120V instead of 230V. Basically you can control anything that accepts SNMP SET commands.
  • HypntickHypntick Member Posts: 1,451 ■■■■■■□□□□
    SUBnet192 wrote: »
    Here's my sort of current lab...

    2 VMware ESXi servers

    What are the specs on those ESXi servers? Been looking into building something like that for myself and not sure if I want to do pre-built or not. Thanks.
    WGU BS:IT Completed June 30th 2012.
    WGU MS:ISA Completed October 30th 2013.
  • snoopgstsnoopgst Member Posts: 8 ■□□□□□□□□□
    That's my lab for now. Working on snmpv3 and NCM.
    lab.jpg 50.3K
  • lwwarnerlwwarner Member Posts: 147 ■■■□□□□□□□
    My current batch of toys:
    (click pic for hi-res image)

    skeletek16-1.jpg
  • pitviperpitviper Member Posts: 1,376 ■■■■■■■□□□
    CyberNBD wrote: »
    I'm in the process of creating a blog (maybeye with some (free) lab rack rentals, although I'm struggling with the frontend part of the scheduling at the moment). When it 's finished I will make a blog post concerning the set-up of this APC control functionality.

    Sweet - I'm going to play around with SNMP on the APC AP7901s a little bit. I've had them sitting here for months, just been too busy to track down a console cable to factory reset them. Took care of that last week; One of these days I'll get the power re-cabled in the rack. Feel free to PM me a link to the blog once it's up!!
    CCNP:Collaboration, CCNP:R&S, CCNA:S, CCNA:V, CCNA, CCENT
  • -DeXteR--DeXteR- Member Posts: 130
    You guys must be freaking Rich to buy all those stuff to rack up . I'm seriously w8ing to get my hands on those icon_sad.gif , hopefully everything will fall in place after i get a decent job . :)
    P.s - 5 years down the line i wanna post pics lik those here :D
  • R-LegendR-Legend Member Posts: 8 ■□□□□□□□□□
    Not rich just added piece by piece. Just finished my LAB (top to bottom)
    1760 (Home router; Wic-1ADSL ; Wic-4ESW)
    NAS (white box)
    1760 (Spare home router; Wic-1DSU56k; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2651 (128d/32f ; NM-4a/s) (Frame Relay)
    2610 (64d/16f ; NM-4a/s) (Soon to be a terminal server)
    (2) 2950t Switches

    Around $850.00 so far and a lot of ebay time catching the right deals!
    0304151826.jpg
  • Excellent1Excellent1 Member Posts: 462 ■■■■■■■□□□
    R-Legend wrote: »
    Not rich just added piece by piece. Just finished my LAB (top to bottom)
    1760 (Home router; Wic-1ADSL ; Wic-4ESW)
    NAS (white box)
    1760 (Spare home router; Wic-1DSU56k; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2651 (128d/32f ; NM-4a/s) (Frame Relay)
    2610 (64d/16f ; NM-4a/s) (Soon to be a terminal server)
    (2) 2950t Switches

    Around $850.00 so far and a lot of ebay time catching the right deals!

    Nice looking lab. Had to post because the best part about that pic is the baby bottle laying on the floor! icon_lol.gif

    Glad I'm not the only one building a lab with little ones around. Seriously, though, thanks for sharing your setup.
  • veritas_libertasveritas_libertas Member Posts: 5,746 ■■■■■■■■■■
    Excellent1 wrote: »
    Nice looking lab. Had to post because the best part about that pic is the baby bottle laying on the floor! icon_lol.gif

    Glad I'm not the only one building a lab with little ones around. Seriously, though, thanks for sharing your setup.

    LOL, in another year I'm going to have protect my equipment from my daughter and vice-versa :D
  • BroadcastStormBroadcastStorm Member Posts: 496
    @ CyberNBD that's a sweet lab you got in there bud, I maxed out my 24U rack, I will take a pix one of this days, I am planning getting a full 48U rack, I think I will eventually max it out, are those 4500 or 6500?

    Don't you have to space those switches apart? the 3 3550 I have has a fan underneath it.
  • BroadcastStormBroadcastStorm Member Posts: 496
    Is there anyone in here running a Server Blade system? The HP P-class are affordable as a home lab.
  • geek4godgeek4god Member Posts: 187
    R-Legend wrote: »
    Not rich just added piece by piece. Just finished my LAB (top to bottom)
    1760 (Home router; Wic-1ADSL ; Wic-4ESW)
    NAS (white box)
    1760 (Spare home router; Wic-1DSU56k; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2610xm (160d/48f ; Wic-2a/s)
    2651 (128d/32f ; NM-4a/s) (Frame Relay)
    2610 (64d/16f ; NM-4a/s) (Soon to be a terminal server)
    (2) 2950t Switches

    What are you using the Wic-4ESW for?
  • R-LegendR-Legend Member Posts: 8 ■□□□□□□□□□
    geek4god wrote: »
    What are you using the Wic-4ESW for?

    The Wic-4ESW is a 4 port switch, that I have my Server, Nas, and two laptops connected to.
  • spiderjerichospiderjericho Registered Users, Member Posts: 901 ■■■■■□□□□□
    I have a Skeletek rack also with 11 routers, six switches and a 4U rackmount server. What UPS or rack-mount power strips do you recommend?
  • ZeroHunterZeroHunter Member Posts: 148
    I have a Skeletek rack also with 11 routers, six switches and a 4U rackmount server. What UPS or rack-mount power strips do you recommend?

    I personally have gotten all my UPS's from CraigsList or eBay, CL is of course better as no shipping, cause those things are HEAVY. I have never paid more then 100.oo for one, and I have 4 now!

    APC is the most standardized, and therefore the most common.

    I personally like CyberPower, you don't see many of those on CL but they are all over eBay and you can get a deal on them. I would say get something with a minimum of 1500 Watts (2k being better if you are going to run everything at the same time).

    As to power Strip, I personally have an APC Rack Basics unit (well 2 one in each rack) but its not really going to matter get whatever you can find a deal on. Only thing to consider is do you want a power switch on it or not. I chose the 'not' model cheaper and the UPS has a power switch.

    I will post some updated photos, soon, I have a CyberPower 1U UPS running the Webserver, A trippLite 2U running the rest of the servers in the Server Rack, a ONEAC 2U unit in the Cisco Lab Rack, & an APC XS1500 running the workstations.

    I would not recommend the ONEAC unit, but all the others are great.
    Z3r0

    Skool: Herzing Univ for CCNA
    c0op3r.com
  • CyberNBDCyberNBD Member Posts: 8 ■□□□□□□□□□
    @ CyberNBD that's a sweet lab you got in there bud, I maxed out my 24U rack, I will take a pix one of this days, I am planning getting a full 48U rack, I think I will eventually max it out, are those 4500 or 6500?

    Don't you have to space those switches apart? the 3 3550 I have has a fan underneath it.

    Thanks :)

    The big ones are 4006 chassis with 4500 SUP and GB blades (most 4500 modules are compatible with the 4006, but not with the 4003).
    I have a third one sitting at storage. Currently wondering if I should use it as the core switch for my home network (and throw the HP 2824 out since it only supports basic routing which is quite hard when connecting some networks together through VPN).

    3550 Switches don't have fans underneath? 2600 series routers have, but they have a raised bottom plate where the fan's reside so air can travel through even when they are on top of each other.

    Seem to recognize the maxing-out racks issue. Just closed a deal on some Dell PE2950's + MD1000 disk array for a new VMWare setup icon_redface.gif. This wil eventually replace the current LAB- and some "production" servers.
  • CyberNBDCyberNBD Member Posts: 8 ■□□□□□□□□□
    I have a Skeletek rack also with 11 routers, six switches and a 4U rackmount server. What UPS or rack-mount power strips do you recommend?

    Agree with ZeroHunter.
    APC will always be fine, but check the battery status or replace them if you buy off ebay or something. I usually buy quite recent chassis (the black ones) with worn-out or non working battery's and replace those with new ones. There are some vendors on ebay which sell good quality replacements for reasonable prices.

    Regarding the strips if you want to switch you can combine the APC 8-port 1Unit switches with the regular cheap rackmount powerstrips so you can switch groups of devices.
  • spiderjerichospiderjericho Registered Users, Member Posts: 901 ■■■■■□□□□□
    Yeah, I looked on Big River/Amazon and yowza on the brand-new UPS. I think I might just get the powerstrips for right now.
  • millworxmillworx Member Posts: 290
    So here is a pic of my lab at work (this is just in my building) It's probably about 150 rows long. Total square feet is probably about 20,000 sq ft. of racks. All for engineers to test equipment, this is not a production environment. I've also included shots of my rack that I use in the datacenter to playing around.

    0305111535.jpg

    0302110929.jpg

    0224111024.jpg
    Currently Reading:
    CCIE: Network Security Principals and Practices
    CCIE: Routing and Switching Exam Certification Guide
  • ITdudeITdude Member Posts: 1,181 ■■■□□□□□□□
    Pretty cool! I hope the out of focus quality on the pix was your camera and not my eyes going from too much reading! icon_smile.gif
    I usually hang out on 224.0.0.10 (FF02::A) and 224.0.0.5 (FF02::5) when I'm in a non-proprietary mood.

    __________________________________________
    Simplicity is the ultimate sophistication.
    (Leonardo da Vinci)
  • MonkerzMonkerz Member Posts: 842
    Found this, thought I would share. I would be ashamed to work here.

    racks-mess-andrew-mac.jpg
Sign In or Register to comment.