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 strongm 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: *

  • Users: vammu
  • Order by date
  1. vammu

    bridge across Point to Point T1

    Split the subnet to two halves. The config might look something like this. Rtr1# int e 0 ip address 192.168.1.1 255.255.255.128 int s 0 ip unnumbered ethernet 0 ! router eigrp 1 network 192.168.1.0 0.0.0.127 Rtr2# int e 0 ip address 192.168.1.129 255.255.255.128 int s 0 ip unnumbered ethernet...
  2. vammu

    Cisco 2501 Load Balance ????

    If you remove ip route-cache on serial interfaces it would switch traffic packet by packet. You need to do this on bot sides of the routers. rtr1# rtr2# int s 0 int s 0 no ip route-cache no ip route-cache int s 1 int s 1 no ip...
  3. vammu

    How do I disable console messages?

    Try, router(config)#no logging console ? <0-7> Logging severity level alerts Immediate action needed (severity=1) critical Critical conditions (severity=2) debugging Debugging messages (severity=7) emergencies...
  4. vammu

    upload configuration

    Here is a sample script, which configures a static route on router 10.2.2.2 ----------------------- # Usage ./rtr-script < seed_file >>output_file ################################################## #!/bin/sh while read RADDR RNAME PW EPW do { #echo $PW echo cisco ! local password sleep 1 echo...
  5. vammu

    Multiple subnets on same segment with Cisco 2600 - performance problem

    You can try ip route-cache same-interface which will maintain a route cache between the subnets. Make sure when you do show ip int e0 ... IP autonomous switching is enabled IP autonomous switching on the same interface is enabled
  6. vammu

    new to routers

    rtr(config)# do show run will show you the config while in config mode, if you are running the latest IOS. (May be 12.2 and above)
  7. vammu

    Write to Excel form

    Here is a piece of code, I used to populate Excel sheets. sub create_excel_sheet() set xlApp= createobject(&quot;excel.application&quot;) xlApp.SheetsInNewWorkbook = 1 Set wkbNew = xlApp.Workbooks.Add 'strBookName = &quot;c:\R2D2_book.xls&quot; strBookName = Xl_fname...

Part and Inventory Search

Back
Top