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...
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...
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...
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
Here is a piece of code, I used to populate Excel sheets.
sub create_excel_sheet()
set xlApp= createobject("excel.application")
xlApp.SheetsInNewWorkbook = 1
Set wkbNew = xlApp.Workbooks.Add
'strBookName = "c:\R2D2_book.xls"
strBookName = Xl_fname...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.