Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. doublea1535

    T1 Internet Line Serial Interface

    The show run for his 1700 show a "WIC T1-DSU
  2. doublea1535

    Trouble parsing data: how to account for various extra characters

    Well, that works perfect if "Problem Description:" is the first line of text in the file. But that is not the case in my instance and I am unable to make it that way. Thanks for the hint, I will keep digging.
  3. doublea1535

    VPN Client Tracking

    Not sure if this helps you but you can see how much data is being crypted/decrypted and sent/received on the client by using the vpnclient CLI tool that comes with the client. Otherwise you would need to setup netflow and store this data and run filters on it based on source address to get...
  4. doublea1535

    why would you bridge an interface

    Basically a VLAN will turn a switch into many virtual switches. A BVI can make it seem that multiple interfaces on different routers are actually part of the same "switch". For example assume you had two routers, A and B. Each one has a serial WAN connection (T1) to each other, and a ethernet...
  5. doublea1535

    Cisco Dialup problems

    One of the issues I spy with this config is that you've set it up to be an authenticiation server (by way of the "ppp authentication chap callin" command) but there are no usernames configured. You will want to configure a local user for each remote hostname that is being sent, in this case...
  6. doublea1535

    Cisco Dialup problems

    One of the things that is wrong is that you are authen'ing the phy and the logical there. Remove the "ppp authentication chap pap callin" from the BRI interface and leave it on the dialer interfaces.
  7. doublea1535

    routers look right but dont work

    Attempt to telnet on port 80 and note the error message you receive (if any). For more verbose output on the state of a port use a port scanner like nmap
  8. doublea1535

    Cannot keep interface up

    Little late to the party on this one but just wanted to state that A) You should'nt have needed to configure PPP as it was already configured with an encapsulation (HDLC by default) and B) If you had to set the clock rate on both ends it means you set it on the first end wrong. The clock rate...
  9. doublea1535

    HELP Required ON NAT

    Load-balancing across multiple links is not a fast and easy thing to do when you do not control both endpoints. Especially if you are load-balancing across ISPs and not using BGP. The best advice is what plshlpme already said. Use Policy Routing. For this you basically need to decided which...
  10. doublea1535

    T1 Internet Line Serial Interface

    Like the guys have already said, there needs to be more configuration information applied. It needs to know which timeslots to use, which framing/coding and where to get timing from (internal or loop). Are you connecting this back-to-back for testing? Or are you putting the 2600 in place of the...
  11. doublea1535

    using cisco 2611 & 2620

    Like the other guys said, make sure you know what COM port you are on and double-check that in the HyperTerm config (or create a new session). Ensure you have a Cisco rollover cable and ensure that if you have an adapater that its straigh-through and not rolling it again. You can use a tool like...
  12. doublea1535

    Trouble parsing data: how to account for various extra characters

    Hello all, I am trying to parse a field of info from a text file. The issue at the moment is that there can be extra characters between the anchor that I am using to search for and the actual value that I need. For example : Problem Description: Network connection timed out. Problem...
  13. doublea1535

    Transparent Bridge

    It sounds like your satellite office (SO) is a stub network. If this is the case then you only need one route, the default route pointing to the NEXT HOP. For example, remove all pre-existing static-routes at your SO and enter only one of the following : ip route 0.0.0.0 0.0.0.0 192.168.0.2...
  14. doublea1535

    Cisco Aironet Access Points - HELP needed

    From reading their FAQ on Aironets ]http://www.cisco.com/en/US/products/hw/wireless/ps430/products_qanda_item09186a008009483e.shtm You should be able to connect it straight to a Ethernet switch. Even running it as a layer 3 device, you should not need a Cisco-specific router on the other end...
  15. doublea1535

    Connecting Routers back to back

    Yes you can connect two CSU DS1 interfaces directly to each other. You will need to cross-over the cables. ---T1 Port Pintout--- 1 RX Tip 2 RX Ring 3 — 4 TX Tip 5 TX Ring 6 — 7 - 8 — --------------------- So from this you can see that you will need to cross 1-4 and 2-5. It's easy to remember...
  16. doublea1535

    OSPF: Connecting One Area to Non-Backbone Area

    I agree with BuckWeet. You should either re-think your routing protocol or re-think your network layout. For example: Put "R3-----R4" both into A2 and remove A3. Cisco doesn't recommend the use of virtual-links except in temporary cases.
  17. doublea1535

    Use the value of a variable for the name of a new variable ? - BASH

    I think I found the answer. Apparently you can use variables as element IDs. This should work for my purposes, but does anyone know if it is possible to do outside of arrays within BASH? root@ensim ~/tst00 : vara=1 root@ensim ~/tst00 : varb=2 root@ensim ~/tst00 : varc=3 root@ensim ~/tst00 ...
  18. doublea1535

    I'm stuck.. how to do this in a loop or otherwise?

    I figured I'd work this one out before checking the other posted solutions. I know BASH better than AWK so i'ts quite a bit longer :). Not sure why you are wanting 'ls -lt' as that lists files as well as directories, plus more columns than just the name. #!/bin/bash dirPath=${1:-~} allDirs=`ls...
  19. doublea1535

    Use the value of a variable for the name of a new variable ? - BASH

    I am trying to use the value of variable "var" as the name for a new variable in BASH. I am not getting it to work. Does anyone know if this can be done somehow? $~ var=one $~ echo $var one $~ ${var}=two bash: one=two: command not found $~ `echo $var`=two bash: one=two: command not found $~...

Part and Inventory Search

Back
Top