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

cisco 1841 both subnet to access the internet 10.10.10.x -192.168.1.x 1

Status
Not open for further replies.

baza93

Technical User
Jul 5, 2011
2
CA
Hi,
I am having a Cisco router 1841 with two T1 and two LAN adapters. One it is setup to have 10.10.10.x ip’s and the second one is 192.168.1.x. At this point only the 10.10.10.x is reaching out to the internet.
I need the second subnet 192.168.1.x to be able to access the internet as well. So far I can ping the router on both 10.10.10.x and 192.168.1.x subnet, and I can telnet it too.
What I am missing here and how should my configuration looks like to be able to archive my goal?

If instead of:

access-list 1 permit 10.10.10.0 0.0.0.127
snmp-server community private RO
no cdp run

I would use :

access-list 1 permit any
snmp-server community private RO
no cdp run
will solve my problem ?

I am attaching the sh conf print screen

----------------------------------------------------

Building configuration...

Current configuration : 7559 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime
service password-encryption
no service dhcp
!
hostname uvlines2-3
!
boot-start-marker
boot-end-marker
!
logging buffered 51200 warnings
no logging console
enable secret 5 $1$5NqP$XVAl.fLogcMOBAD4Z01ID/
!
no aaa new-model
!
resource policy
!
no ip source-route
ip cef
!
!
!
!
no ip bootp server
ip name-server 142.77.2.36
ip name-server 142.77.2.85
frame-relay switching
!
crypto pki trustpoint TP-self-signed-255188147
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-255188147
revocation-check none
rsakeypair TP-self-signed-255188147
!
!
crypto pki certificate chain TP-self-signed-255188147
certificate self-signed 01
345A170D 32303031 30313030 30303030 5A303031 2E302C06 03550403 1325494F
532D5365 6C662D53 69676E65 642D4365 72746966 69636174 652D3235 35313838
31343730 819F300D 06092A86 4886F70D 01010105 0003818D 00308189 02818100
02030100 01A36A30 68300F06 03551D13 0101FF04 05300301 01FF3015 0603551D
11040E30 0C820A75 766C696E 6573322D 33301F06 03551D23 04183016 801487AA
C10F7DAB B70BC9AA 2B4D5797 CBE59B51 C56CF574 E37099C9 AD0180B3 2D44BBD5
13E1C2CB 3F43CC83 E22101A3 3C82F69A 42A72D1E 1E0FD263 A9A9CE93 334344CC 79368BF2
quit
username administrator privilege 15 password 7 1511021F0725
!
!
!
interface MFR1
description [uvlines2/uvlines3]
mtu 4470
no ip address
no ip redirects
no ip proxy-arp
no ip mroute-cache
logging event subif-link-status
no arp frame-relay
frame-relay multilink bid [uvlines2/uvlines3]
frame-relay lmi-type ansi
!
interface MFR1.500 point-to-point
ip address 216.94.254.238 255.255.255.252
no ip redirects
no ip proxy-arp
ip nat outside
no cdp enable
no arp frame-relay
frame-relay interface-dlci 500 IETF
!
interface FastEthernet0/0
description $ETH-LAN$
ip address 10.10.10.1 255.255.255.0
no ip redirects
no ip proxy-arp
ip nat inside
no ip route-cache cef
no ip route-cache
no ip mroute-cache
duplex auto
speed auto
no cdp enable
!
interface FastEthernet0/1
description $ETH-LAN$
ip address 192.168.1.1 255.255.255.0
ip nat inside
duplex auto
speed auto
!
interface Serial0/0/0
description [uvlines2] T1 Allstream CID TBD
mtu 4470
bandwidth 1536
no ip address
no ip redirects
no ip proxy-arp
encapsulation frame-relay MFR1
logging event subif-link-status
no arp frame-relay
!
interface Serial0/1/0
description [uvlines3] T1 Allstream CID 10/DHXX/000547/UCN/001
mtu 4470
bandwidth 1536
no ip address
no ip redirects
no ip proxy-arp
encapsulation frame-relay MFR1
logging event subif-link-status
no arp frame-relay
!
ip route 0.0.0.0 0.0.0.0 216.94.254.237
!
!
ip http server
ip http authentication local
ip http secure-server
ip nat pool net-uvl 216.94.13.90 216.94.13.90 netmask 255.255.255.248
ip nat inside source list 1 pool net-uvl overload
ip nat inside source static tcp 10.10.10.3 80 216.94.13.89 80 extendable
!
access-list 1 permit 10.10.10.0 0.0.0.127
snmp-server community private RO
no cdp run
!
!
!
control-plane
!
!
!
line con 0
exec-timeout 5 0
password 7 107B1F185743101B01
login
transport preferred none
flowcontrol hardware
line aux 0
exec-timeout 0 10
login
no exec
line vty 0 4
exec-timeout 5 0
privilege level 15
password 7 01261005095F041F2C
login local
transport input telnet ssh
line vty 5 15
login
!
scheduler allocate 20000 1000
end

Thank's in advance.
 
You need

access-list 1 permit 10.10.10.0 0.0.0.255
access-list 1 permit 192.168.1.0 0.0.0.255
 
Thank you very much brianinms it works perfectly.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top