How can I connect to multiple routers in a homelab?

Hello guys,
I have a little little situation here maybe someone can give me a good ideea how to doit.
I have 7 routers that I use for my homelab, what I want is a way to connect to all of them without having to change all the time the console cable from one to another.
1. I know there is a way with IOLAN, but this is quite expensive
2. I am thinking if there is a posibility to doit some how via telnet, something like this:
Having all the AUX ports to a SW(maybe is necessary a router?!) and also my netcard in another port of the SW, and somehow to do a port forwarding when I telnet to ex. IP 10.0.0.1:4001 to redirect somehow the trafic to router 1 in the AUX.
Is it possible something like this? Can i connect to AUX via a IP port somehow?
What I am trying to do is to avoid using routers ETHs to assign to its IPs and connect like this via telnet, because I need to use that ports(interfaces) for other reasons.
3. I've seen another whay with somekind of accessserver.. this is a special equipment?
4. I can make a connection to one router with the console cable, and from that to make telnet from one to another, router by router, meaning from R1 to have telnet to R2, from R2 to have telnet to R1 and R3 .. and so on. (This is curently my implementation), but if I lose conectivity between 2 of the routers than this implementation is not viable
5. Is there a easier way to do this?
Thank You
Ivian

Hi Ivian
What you are after is a Cisco 2509. They come in two forms. One has 8 RJ45 async serial ports which you can use to connect to the console ports of a router using a RJ45-RJ45 rollover cable. The other has a single AUI port which you can buy an octopus cable with 8 connections off it. It too can be used to connect to the console ports of up to eight devices.
Here is some links which may help.
http://www.cisco.com/en/US/tech/tk801/tk36/technologies_configuration_example09186a008014f8e7.shtml
http://ciscotips.wordpress.com/2006/06/26/configuring-a-cisco-router-as-a-terminal-server/
http://www.petri.co.il/how-to-configure-cisco-router-as-terminal-server.htm
otherwise google "Cisco 2509 configure terminal server"
The first link has the recommended Cisco config for your server.
Cheers
Donald
CCNA

Similar Messages

  • How can I connect to multiple Macs over the internet?

    I have forwarded the ports on my Airport Extreme as follows:
    10.0.1.3 being assigned to my Mac Mini.
    I also have a MacBook Pro at home I would like access to which has the 10.0.1.4 reserved/assigned. I cannot connect to it because the port forwarding points to the Mac Mini, and it doesn't allow me to create another rule since those ports are already being used by that first entry. How do I go about having the option to connect to either one of the two computers at home when I'm at work using Apple Remote Desktop?

    it's not really a confirmed limitation of ARD, ARD is not designed to work outside of a LAN
    it's designed for system admins to manage macs remotely while on the same LAN
    but you want to use it outside of your LAN, you can by using VPN 
    VPN gives you remote secure access to your LAN
    you will appear to be connected to your LAN
    so you can do most things as you would if you were actually on your LAN
    ARD does not facilitate a VPN connection
    you'd connect using a VPN connection to your LAN then start ARD, ARD will behave just as it would if you were on the LAN
    VPN client is built into OSX, system preferences, network, add choose VPN connection
    You'd need a VPN server such as OSX server on your LAN
    and configure any firewalls, routers etc to allow incoming VPN to connect to your server
    You'd also need either a fixed external IP address and external domain name or use dynamic DNS setup
    you could also try logmein

  • How can I connect to multiple WLS instances from a single Apache virtual host

    Configuration : WebLogic 5.1 SP8 & Apache
    I need to be able to have a configuration that looks something like this.
    www.company.com/x -> WL cluster01
    www.company.com/y -> WL cluster02
    In all the examples that I have been able to find they alway defines the the WL
    connection for the entire virtual host, but I need to be able to do it on a location
    basis is that possible?
    Thanks
    Jens Schutt

    httpd.conf:
    <VirtualHost 172.17.9.24:443>
    DocumentRoot "/www/X"
    ServerName qawebivesta.qa.livecapital.com
    ErrorLog /usr/local/apache/logs/qaweb1.error_log
    TransferLog /usr/local/apache/logs/qaweb1.access_log
    SSLEngine on
    SSLCipherSuite
    ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
    SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt
    SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key
    <Files ~ "\.(cgi|shtml|phtml|php3?)$">
    SSLOptions +StdEnvVars
    </Files>
    <Directory "/usr/local/apache/cgi-bin">
    SSLOptions +StdEnvVars
    </Directory>
    SetEnvIf User-Agent ".*MSIE.*" \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0
    Debug ON
    DebugConfigInfo ON
    <Location /ivesta/>
    SetHandler weblogic-handler
    WebLogicHost qawlgc1
    WebLogicPort 7001
    </Location>
    <Location /TMPPhase2>
    SetHandler weblogic-handler
    WebLogicHost qawlgc1
    WebLogicPort 11001
    </Location>
    </VirtualHost>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /TMPPhase2 works fine, but when I try to access /ivesta I get a 404 from WebLogic
    "https://qawebtmp.qa.livecapital.com/ivesta/index.jsp?__WebLogicBridgeConfig
    Weblogic Apache Bridge Configuration parameters:
         WebLogic Cluster List:
              General Server List:
                   Host: 'qawlgc1' Port: 11001
              DefaultFileName: ''
              PathTrim: ''
              PathPrepend: ''
              ConnectTimeoutSecs: '10'
              ConnectRetrySecs: '2'
              HungServerRecoverSecs: '300'
              MaxPostSize: '-1'
              DynamicServerList: ON
              StatPath: false
              CookieName: WebLogicSession
              Idempotent: ON
              FileCaching: ON
              DisableCookie2Server: OFF
              QueryFromRequest: OFF
              Build date/time: Jun 25 2001 15:09:34
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    This should have been connecting to my 7001 instance not the 11001.
    Thanks
    Jens
    "Eric Gross" <[email protected]> wrote:
    What do you mean the wrong port? Post the complete output from
    WebLogicBridgeConfig as well as the URL you used.
    Also, paste the weblogic relative portions from your httpd.conf
    Thanks,
    Eric
    "jens" <[email protected]> wrote in message
    news:[email protected]...
    I also used ?__WebLogicBridgeConfig to verify that it did pick up thewrong port.
    Here is my build date for mod_wl.so in SP10
    Build date/time: Jun 25 2001 15:09:34
    Thanks
    Jens
    "Eric Gross" <[email protected]> wrote:
    Make sure you are using the latest plugin. As well, add parameter:
    DebugConfigInfo=ON and make a request with a query paramater of
    ?__WebLogicBridgeConfig and you should then see the build date/time.
    We can
    then see if you are indeed using the latest plugin.
    It is not a possibility to get the source.
    Regards,
    Eric
    "jens" <[email protected]> wrote in message
    news:[email protected]...
    And the solution where you put the WebLogic parm under location
    the
    last
    location
    over rule the previous.
    I have also tried to upgrade my plug-in from SP8 to SP10 but that
    didn't
    make
    any difference either.
    Is it possible to get the source code for the plug-in, I'm afraid
    that
    it
    don't
    follow put's all it's parm's a the vhost level no matter where in
    the
    conf
    file
    they are placed.
    HELP
    Jens
    "Eric Gross" <[email protected]> wrote:
    Yu is correct.
    Here is another way to do it as well:
    MatchExpression /x
    WebLogicCluster=server1:port,server2:port|PathTrim=/x
    MatchExpression /yWebLogicCluster=server3:port,server4:port|PathTrim=/y
    The general syntax for this would be:
    MatchExpression exp name=value|name=value
    Where exp=Mime type(*.jsp) or exp=/x(path)
    The next argument in the list is a pipe(|) delimited list ofname=value
    pairs (ie: WebLogicHost, WebLogicPort, WebLogicCluster, PathTrim,
    PathPrepend, etc..).
    Hope this helps.
    Regards,
    Eric
    "Yu Tian" <[email protected]> wrote in message
    news:[email protected]...
    Hi Jens,
    I think you can proxy by ppath.
    <Location /x>
    SetHandler weblogic-handler
    WebLogicCluster cluster1
    </Location>
    <Location /y>
    SetHandler weblogic-handler
    WebLogicCluster cluster2
    </Location>
    thanks
    Yu
    "Jens" <[email protected]> wrote in message
    news:[email protected]...
    Configuration : WebLogic 5.1 SP8 & Apache
    I need to be able to have a configuration that looks something
    like
    this.
    www.company.com/x -> WL cluster01
    www.company.com/y -> WL cluster02
    In all the examples that I have been able to find they alway
    defines
    the
    the WL
    connection for the entire virtual host, but I need to be able
    to
    do it
    on
    a location
    basis is that possible?
    Thanks
    Jens Schutt

  • How can I connect to more than one computer from external ip

    Hi
    I have been using remote desktop for some time and have a port forward set so I can connect to our mail server from anywhere else externally from my macbook pro, but how can I connect to other macs in the office when there only seems to be the two ports available for use 5900 and 3283. I can only port forward to one computer? How can I connect to multiple computers when not within the same network? are there other ports available?
    Cheers
    Tony

    If your workstations get their addresses from an NAT device rather than being "real", the ports also need to be forwarded in the router to the workstation's internal IP address.  ARD uses port 3283 for the reporting and updating function, so if your Macs are getting their IP addresses through NAT, since you can only forward a port to a single workstation, you can only get reports, push package/files to etc. for a single workstation.
    ARD uses the VNC protocol for observation and control, though, and there are a range of IP addresses for that protocol, starting with 5900. ARD uses 5900 by default, so that port would be forwarded to the first workstation. You would, I believe,  need to install third-party VNC software on the systems (since the ARD client cannot listen on any port other than 5900 while other VNC systems can be set for other ports such as 5901, 5902, etc. You would then  forward 5901 to the second workstation (and on to 5902, 5903, etc.). You can then use the following information:
    http://docs.info.apple.com/article.html?path=RemoteDesktop/3.0/en/ARDC715.html  to connect.
    The only other options are: 1) to run the ARD administrator on a workstation on the network, and then take control of that system from outside, either via VNC or another copy of ARD, or 2) set up a virtual private network (VPN) so that when you connect from outside, your admin system is officially part of the local network.
    Hope this helps.

  • How can i connect between WS−G5484 1000BASE−SX and GLC-LH-SMD ?

    Dear experts,
    My customer has 6509 A-side and B-side core switches and need to migrate only 6509 B-side to Nexus.
    I have some question below.
    1. Customer's 6509A-side has multiple WS−G5484 1000BASE−SX and WS−G5486 1000BASE−LX links and it is connected to 6509B-side.
    But customer bought only GLC-LH-SMD for Nexus migration of 6509B-side.
    I understood BLC-LH-SMD doesn't support SX type, so I am worndering how i can connect between 2 different module ?
    Or should i have GLC-SX-MMD for WS−G5484 1000BASE−SX links ?
    2. Current Rack has LC type patch pannel from B-side to Rack A side.
    But new Nexus A-side rack is located at different row and between these rack, there is only sc-type patch pannel.
    So If i want to connect from LC-type to Sc-type patch pannel, how can i connect ? do i have to use SC-LC converter ?
    3. Old 6509 links use many MMF cable, and new Nexus use SMF.
    Between same LX/LH links, if a side use MMF and another side use SMF, how can i connect each other ?
    Again new Nexus A-side rack is located at different row and between these rack, there is only sc-type patch pannel.
    Please let me know in detail, Thanks in advance, I really appreciate for your help.
    Jason.

    Hi Leo,
    Thanks of your reply.
    Dear Experts,
    I seek your expert's advice for another question urgently.
    Please make you time and share your experiecce.
    Thanks.
    Jason

  • I installed an airport card in my powermac g4, how do I connect to my router (not an airport base.) How can I connect to my router?

    I have a powermac g4 quicksilver in which I have installed a normal airport wireless card in the dedicated slot. How can I connect to my router? It is not an apple airbase station but does it need to be? How can I connect to my router?

    What encryption is the Rouer using? If WPA2 you likely can't.
    Go to System Preferences
    Click Network
    Highlight AirPort and click Configure...
    What shows for Routers there? Or is Join Other Network availabe in 10.3.x?

  • How can I connect my 3gen apple tv with HDMI to my bush LCD32TV022HD which does not have an HDMI port but does have 1)S-Video I/P, 2)Video I/P, 3) L

    How can I connect my 3gen apple tv with HDMI to my BUSH LCD32TV022HD
    This does not have an HDMI port but does have:-
    1) S-Video I/P,
    2) Video I/P,
    3) Audio Input (Left & Right)
    4) Audio In jack (for VGA and DVI source)
    5) DVI input
    6) VGA input

    Welcome to the Apple community.
    The Apple TV doesn't officially support a DVI connection, however you may be able to get it to work. You will first need to check that your TV supports either 720p or 1080p as well as HDCP. If you are able to get the video working over the DVI connection, you may also require a DAC in order to connect with Apple TV's optical audio output to the TVs audio imput.
    You may well wish to make sure that the DVI connection works before spending any money on a DAC..

  • How can i connect to SQL Server 7.0 on Windons Using JDBC

    How can i connect to Microsoft SQL Server 7.0 on a windows enviroment ?
    in sql server 2000 some jar files are required that is
    What you need to do is actually add all three jar files to your class path individually. There are three jar files that come with this driver the msbase.jar, msutil.jar, and mssqlserver.jar. for sqlQ server 2000.
    now the problem is that i cant find these files on my system. firstly where these files will be located. secondly are they will be used to connect to SQL Server 7.0. thirdly if not what is the procedure.
    My next Problem is that I have Websphere Studio Application Developer. in which their is this facility of Database Webpages its like a wizard which makes automatically beans servlets and JSP but before that you need a Driver Name and and Class Name for to Connect to the Database.
    Can you tell what is the specific Driver Path for the Microsoft SQL Server 7.0 . secondly is this the class which is used to connect to SQL server 7.0 "com.microsoft.jdbc.sqlserver.SQLServerDriver" where can i find this one. for SQL server 7.0.
    please provide some guidance in this regard.

    You can search for the JDBC drivers at, http://industry.java.sun.com/products/jdbc/drivers
    All the three jars that you specified are part of MsSQL Server jdbc driver. You need them (in the classpath) to get connected to the database.
    "com.microsoft.jdbc.sqlserver.SQLServerDriver" is the class in mssqlserver.jar. This is the driver class which will be used to get connected to the database.
    You can search in this forum for writting jdbc code (for Sql Server). If you don't find these jars, give me your e-mail id.
    Sudha

  • How can I connect to SQL Server CE?

    Hi!
    How can I connect to SQL Server CE ?
    Any idea?
    I found jdbc driver for SQL Server 6.5,7.0,2000.
    But no driver for SQL CE.
    Thanks for any suggestion....

    I am also searching for same answer.
    I wanna choose Access as a db. but I can't find that so I have a no choice to select SQL2000CE though.
    I am stuck in driver problem. I can't find that.
    Should I use Oracle Lite or PointBase?
    I am under a lot of stress... like you've been...
    I wish you find and post that....

  • How can I connect my iMac to a TV for playback of videos? My TV does not have HDMI.

    How can I connect my iMac to a TV for playback of videos? My TV does not have HDMI.

    You need to find out what video out you have on your iMac, and what kind of video inputs there are on your TV.
    It will help to know exactly what model iMac and exactly what make/model TV you have.
    Depending on the exact model iMac you have, it may have miniVGA, miniDVI, miniDisplayPort or Thunderbolt output.  Your TV may have composite, S-video, component, DVI, VGA or HDMI inputs.  Once you confirm what kind of ports your iMac and TV have, then we can probably suggest the correct cable or adapter so you can connect them to each other.

  • How can I connect my Powerbook or iPad Retina via HDMI cable to 4K digital video camera to be a "control monitor"

    How can I connect my Powerbook or iPad Retina via HDMI cable to 4K digital video camera to be a "control monitor"

    That won't work with the iPad, unless maybe there's a "control monitor" app somewhere.

  • How can I connect my TV sony bravia to Imac for display !

    How can I connect my TV sony bravia to Imac for display ! I did it before but a week ago crash my sistem and been to apple store london to fix it and wend I come home I can not reconnect the tv to imac ! please help !!!!!!!!!!!

    I BUY A CABLE FROM AMAZON.CO.UK AND MY iMAC WAS WORKING WITH THIS CABLE BUT AFTER THEY (APPLE STORE REGENT STREET ) REPARIT NOW IS NOT RECONICE THE DISPLAY !!!!!

  • How can i connect my Imac late 2012 to my Samsung TV??

    How can i connect my Imac late 2012 to my Samsung TV??I have a hdmi cable stuck in my Tv and the other end a adapter from hdmi to mini display port. but it won't work I don't get no picture or sound on my tv

    I have an Apple tv and with this it works of course. But I wanted it to use with Windows 7 so I need to connect my imac to my tv...
    how can i turn it on in the settings? it won't work or recognize my tv

  • I do not have a home wifi setup. How can I connect my iMac to apple TV?

    I do not have a home wifi setup. How can I connect my iMac to apple TV?

    you need a wifi connection, it says on this manual
    http://manuals.info.apple.com/MANUALS/1000/MA1607/en_US/apple_tv_3rd_gen_setup.p df

  • Imac 21" mid 2011 how can i connect my imac to hdmi on my tv?

    imac 21" mid 2011 how can i connect my imac to hdmi on my tv?

    You need to buy this adapter http://store.apple.com/us/product/H1824ZM/A/Moshi_Mini_DisplayPort_to_HDMI_Adapt er?fnode=MTY1NDA3Ng&mco=MTgwOTAzMjI
    http://macs.about.com/od/diyguidesprojects/qt/hdtvconnection.htm

Maybe you are looking for

  • I have a mac and cannot do my class in my math labe adobe not helpful

    I cannot get assistance from my math lab or adobe

  • General Preferences Not Saving

    Hello all, Does anyone know or have any tips as to why my general settings are not saving. Every time I open a project from the desktop I have to go into preferences and reset "use system shortcuts". My system: Mac PPC 10.4.11 , AE 8.0.2.27 Thanks -W

  • Password Reset Tab Missing from Identity Store properties

    I am trying to implement Password self-service as per the document "SAP NewWeaver Idenitty Management Identity Center Self-service password reset Implementation Guide" Version 7.1 Rev 2. In this guide, references are made to the Password Reset Tab in

  • Creating email attachment with 255 char per record

    Hi, We want to generate an email with excel attachment through ABAP program. To do the same, we are trying to use FM 'SO_DOCUMENT_SEND_API1'. It looks like it only allows 255 characters per record however we want include upto 700 chracters per record

  • %ROWCOUNT problem

    Dear SQL Experts, I have below PL/SQL procedure to update a table, here I see %ROWCOUNT returning 0 rows in all cases and not displaying actual number of rows updated. When I run the update statement directly, it updates correct number of rows? Is th