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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Routing table

Status
Not open for further replies.

vedo

MIS
Mar 20, 2002
30
US
Here is my current configuration:

Using 1492 out of 32762 bytes
!
! Last configuration change at 12:07:26 pst Mon May 13 2002
! NVRAM config last updated at 12:07:29 pst Mon May 13 2002
!
version 11.3
service timestamps debug uptime
service timestamps log uptime
service password-encryption
service udp-small-servers
service tcp-small-servers
!
ip subnet-zero
ip nat inside source list 1 interface Serial0 overload
ip nat inside source static 10.13.1.62 208.50.31.67
ip nat inside source static 10.13.1.131 208.50.31.66
ip nat inside source static 10.13.1.64 208.50.31.68
no ip domain-lookup
clock timezone pst -8
!
!
interface Ethernet0
ip address 10.13.1.130 255.255.255.0
no ip directed-broadcast
ip nat inside
no ip route-cache
no ip mroute-cache
!
interface Serial0
ip address 208.50.31.65 255.255.255.224
no ip directed-broadcast
ip nat outside
no ip route-cache
no ip mroute-cache
bandwidth 1536
!
interface Serial1
no ip address
no ip directed-broadcast
shutdown
!
router rip
version 2
redistribute connected
network 208.0.0.0
no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0
ip route 208.50.31.64 255.255.255.224 Serial0
!
no logging console
no logging monitor
access-list 1 permit 10.13.1.0 0.0.0.255
!
What I want to do is also allow 192 subnet to be routed out.
Any Ideas.
 
This is two different networks in the same location.

192 Subnet
DSL--Linux NAT--SWITCH--Local Director--SWITCH--SUN Server

10 subnet
T1 Router NAT--Switch--Servers

Want to eliminate the DSL and route through the 10 subnet

 
Hi Vedo,

Here's an idea that may work:

connect the subnets together via a cross-over cable between switches of each subnet and then create a secondary ip address on the e0 interface(or create a subinterface)and assign it an address in the 192 subnet. Then add the 192 subnet into the access-list to be converted.

Ex.
192 Subnet
SWITCH--Local Director--SWITCH--SUN Server
|
10 subnet |
T1 Router NAT--Switch--Servers

int e0
ip address 192.x.x.x 255.x.x.x secondary

access-list 1 permit 192.x.x.x 0.x.x.x



 
Will try it, I think this should work.

Thank you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top